List Beneficiaries

Retrieve payout beneficiaries for your business.

-H "x-api-key: your_secret_key"
GET {{host}}/v1/transfer/beneficiaries

Query Parameters

FieldData TypeRequiredDescription
pageintegerNoPage to retrieve. Defaults to 1.
limitintegerNoRecords per page. Maximum is 100.
orderstringNoASC or DESC. Defaults to DESC.
sortstringNoField to sort by. Defaults to createdAt.
querystringNoSearch by account name.
accountNumberstringNoSearch by account number.
startDatestringNoISO date/time start filter.
endDatestringNoISO date/time end filter.
integrationIdstringNoFilter by integration ID.
{
  "status": true,
  "message": "Success",
  "code": 200,
  "data": {
    "page": 1,
    "limit": 100,
    "total": 1,
    "pageCount": 1,
    "hasPreviousPage": false,
    "hasNextPage": false,
    "data": [
      {
        "id": "8495ec4e-ce21-405f-b0cf-982702881f4d",
        "accountName": "FEMI ZACK",
        "accountNumber": "0123456789",
        "bankName": "Access Bank",
        "bankCode": "000014",
        "bvn": "",
        "description": "Supplier payout",
        "isActive": true,
        "mode": "live",
        "createdAt": "2026-05-20T10:15:00.000Z"
      }
    ]
  }
}