Get a bulk transfer

Get the status of a bulk transfer on your account

Get a single transfer

Our API allows you to filter through your list of transfers and return only the details of a specific transfer using the unique transfer id. Example:

https:api.flutterwave.com/v3/transfers/:id

This will return a response like this

{
    "status": "success",
    "message": "Transfer fetched",
    "data": {
        "id": 129830,
        "account_number": "0690000031",
        "bank_code": "GH190100",
        "full_name": "Mohammed Adams",
        "created_at": "2020-07-10T14:58:43.000Z",
        "currency": "GHS",
        "debit_currency": "GHS",
        "amount": 50,
        "fee": 20,
        "status": "SUCCESSFUL",
        "reference": "GHS_PMCKDU_1",
        "meta": null,
        "narration": "TEST PAYOUT AGAIN",
        "approver": null,
        "complete_message": "Successful",
        "requires_approval": 0,
        "is_approved": 1,
        "bank_name": "STANBIC BANK"
    }
}
Language
Click Try It! to start a request and see the response here!