> 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/list-transfers.md).

# List Transfers

## Create a new user

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

**Headers**

| Name                                            | Type   | 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"
        }
    },
    {
        "id": "be502a67-59ac-4b30-9420-ab3d5e2414c1",
        "transaction_id": "1200012584736230019316105326802",
        "reference": "testtransfer03912",
        "status": "PENDING",
        "narration": "Test API Transfer",
        "amount": 2450000,
        "fee": 2688,
        "currency": "NGN",
        "created_at": "2024-12-08T20:58:44.000000Z",
        "updated_at": "2024-12-08T20:58:44.000000Z",
        "counterparty": {
            "account_name": "CLEMENT ADEGBOLA RAHEEM",
            "account_number": "81039283922",
            "nibss_code": "100015"
        }
    }
    ],
    "message": "Data retrieved successfully"
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
