Skip to main content
GET
/
v1
/
transfers
/
search
Search transfers
curl --request GET \
  --url https://api.adullam.dev/v1/transfers/search \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "txf_abc123",
      "status": "processing",
      "amount": 10000,
      "currency": "XOF",
      "recipient_phone": "+22507123456",
      "recipient_name": "DIALLO IBRAHIM",
      "channel": "mtnCI",
      "description": "Salary payment",
      "reference": "PAY_001",
      "ussd_reference": "MP240115.1032.T98765",
      "fees": 50,
      "metadata": {
        "employee_id": "EMP_123"
      },
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z",
      "completed_at": null,
      "failure_reason": null
    }
  ],
  "total_count": 10,
  "has_more": false
}

Search Transfers

Searching transfers using filters (date, status, recipient) allows you to find specific transactions in your Adullam account. Use the Search Transfers API to apply various criteria and retrieve matching transfer records.

Authorizations

Authorization
string
header
required

Use the access token obtained from /v1/auth/token

Query Parameters

recipient_phone
string
reference
string
amount_min
integer
amount_max
integer

Response

Search results

data
object[]
total_count
integer
Example:

10

has_more
boolean
Example:

false