> For the complete documentation index, see [llms.txt](https://developer.browpay.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.browpay.com/payouts/transfers/fetch-transfer.md).

# Fetch Transfer

{% hint style="info" %}
You are required to verify your transfer status to retrieve the session id and to confirm delivery status.
{% endhint %}

<mark style="color:blue;">`GET`</mark> `{{base_url}}/transfers/{{unique_reference}}`

{% hint style="info" %}
Fields with <mark style="color:red;">\*</mark> are required
{% endhint %}

Retrieve information about the transfer.

#### Path Parameters

| Name                                                | Type   | Description                                                                                           |
| --------------------------------------------------- | ------ | ----------------------------------------------------------------------------------------------------- |
| unique\_reference<mark style="color:red;">\*</mark> | String | Your unique reference sent from the [create transfer](/payouts/transfers/create-transfer.md) endpoint |

**Headers**

| Name                                            |        | Value                        |
| ----------------------------------------------- | ------ | ---------------------------- |
| Content-Type                                    | String | application/json             |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer {{your\_secret\_key}} |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "success": true,
    "data": {
        "id": "ac23a67-59ba-4b30-9420-ad30035e24ca1",
        "transaction_id": "1200012584736230019316105326802",
        "reference": "testtransfer03912",
        "status": "SUCCESS",
        "narration": "Test API Transfer",
        "amount": 500000,
        "fee": 1075,
        "currency": "NGN",
        "created_at": "2024-12-08T20:58:44.000000Z",
        "updated_at": "2024-12-08T20:58:44.000000Z",
        "counterparty": {
            "account_name": "OLAJIDE AMBROSE HASSAN",
            "account_number": "81039283922",
            "nibss_code": "100015"
        }
    },
    "message": "Data retrieved successfully"
}
```

{% endtab %}

{% tab title="500" %}

```json
{
  "error": "Server Error"
}
```

{% endtab %}
{% endtabs %}
