Skip to main content
GET
/
payouts
Fetch payouts
curl --request GET \
  --url https://gateway.useyala.com/api/public/payouts \
  --header 'x-api-key: <api-key>'
{
  "statusCode": 200,
  "message": "success",
  "data": [
    {
      "id": "ff412724-cd9b-4bd5-91c9-8ba7c1662e5c",
      "payoutRef": "88WWRnkRWu",
      "baseAmount": "1000.00",
      "baseCurrency": "USD",
      "amountToBeSent": "0.65",
      "currencyToBeSent": "NGN",
      "status": "PENDING_APPROVAL",
      "businessId": "b9130e5b-8804-451b-9ecf-65660e3a36b7",
      "supportingDocument": "https://sample.com/doc",
      "transactionDate": null,
      "method": "NIP",
      "channel": null,
      "transactionFees": "0.07",
      "methodFees": "0.00",
      "VAT": "0.00",
      "meta": {
        "statusChange": [
          {
            "updatedBy": "API ",
            "email": "API",
            "status": "PENDING_APPROVAL",
            "date": "2025-01-16T12:57:49.996Z"
          }
        ],
        "exchangeRate": {
          "from": "NGN",
          "to": "USD",
          "id": "a836fb63-a11b-4952-896d-7ef7e01fea14",
          "sellRate": 1677.808472,
          "sellSpread": 0.75,
          "buyRate": 1648.54248,
          "buySpread": -0.75,
          "marketRate": 1661,
          "code": "USD/NGN"
        },
        "fee": {
          "amount": 0.06646100000000388,
          "currency": "USD",
          "feeBearer": "TENANT"
        }
      },
      "narration": "Andromeda Galaxy",
      "riskLevel": "LOW",
      "source": "WEB_APP",
      "createdAt": "2025-10-20T19:38:51.230Z",
      "updatedAt": "2025-11-30T13:49:21.769Z",
      "deletedAt": null,
      "beneficiary": {
        "countryCode": "NGA",
        "bankCountryCode": "NGA",
        "accountNumber": "8068487823",
        "accountName": "Will Wonker",
        "bankName": "OPay",
        "accountCurrency": "NGN",
        "payoutMethod": "SWIFT",
        "isIndividual": true,
        "address": "2, 4th Avenue, Off Prince Ademola Eletu way, Jakande, Lekki",
        "city": "Lekki",
        "postCode": "SG1 5LH",
        "swiftNumber": "34323232",
        "routingNumber": "",
        "sortCode": "111111",
        "phoneNumber": "",
        "email": "",
        "bankBranchCode": "",
        "bankAddress": "",
        "bankCode": "34323232",
        "bicNumber": "34323232",
        "riskLevel": "LOW",
        "verificationStatus": "PENDING",
        "id": "2b838df3-47bf-4961-a9fc-dd94c5fa9e47",
        "isWatchListed": false,
        "country": {
          "id": "0d75ba90-1392-4442-81b6-5fc76c32d19b",
          "name": "Nigeria",
          "code": "NGA",
          "currencyCode": "NGN",
          "score": 0,
          "payoutCurrencies": [
            {
              "code": "USD",
              "name": "Dollars"
            }
          ],
          "tradingStartTime": "00:00:00",
          "tradingEndTime": "23:00:00",
          "timeZone": 1,
          "cpi": 0,
          "gdpPerCapitaInUsd": 0,
          "globalRating": "B-",
          "isProhibited": false,
          "henleyPassportIndex": 45,
          "createdAt": "2024-05-12T16:42:58.176Z",
          "updatedAt": "2025-05-21T15:26:56.000Z",
          "deletedAt": null
        },
        "bankCountry": {
          "id": "0d75ba90-1392-4442-81b6-5fc76c32d19b",
          "name": "Nigeria",
          "code": "NGA",
          "currencyCode": "NGN",
          "score": 0,
          "payoutCurrencies": [
            {
              "code": "USD",
              "name": "Dollars"
            }
          ],
          "tradingStartTime": "00:00:00",
          "tradingEndTime": "23:00:00",
          "timeZone": 1,
          "cpi": 0,
          "gdpPerCapitaInUsd": 0,
          "globalRating": "B-",
          "isProhibited": false,
          "henleyPassportIndex": 45,
          "createdAt": "2024-05-12T16:42:58.176Z",
          "updatedAt": "2025-05-21T15:26:56.000Z",
          "deletedAt": null
        }
      }
    }
  ],
  "meta": {
    "total": 199,
    "page": 1,
    "limit": 10,
    "size": 5
  }
}

Overview

Fetch a paginated list of payouts for your business. Use query parameters to filter by payout reference, status, or other criteria.

Query Parameters

ParameterTypeRequiredDescription
filter[payoutRef]stringNoFilter by payout reference (e.g., 88WWRnkRW)

Usage Notes

  • Returns paginated results with metadata including total count, current page, and limit.
  • Use the payoutRef filter to find a specific payout by its unique reference.
  • Each payout includes beneficiary details, status, fees, and transaction metadata.
  • The meta.statusChange array provides a timeline of status updates for each payout.
Store payoutRef values when creating payouts so you can easily query them later for status updates or reconciliation.

Authorizations

x-api-key
string
header
required

Query Parameters

filter[payoutRef]
string

Filter payouts by payout reference

Example:

"88WWRnkRW"

Response

A successful response

statusCode
integer
Example:

200

message
string
Example:

"success"

data
object[]
meta
object