cURL
curl --request GET \ --url https://api.daya.co/v1/transfers \ --header 'X-Api-Key: <x-api-key>'
{ "data": [ { "id": "850e8400-e29b-41d4-a716-446655440000", "reference": "txn_ngn_001", "status": "PROCESSING", "currency": "NGN", "amount": "50000.00", "debit_currency": "USD", "debit_amount": "32.26", "fee": "0.81", "rate": { "side": "SELL", "value": "1550.00", "captured_at": "2026-01-05T15:04:05Z" }, "recipient": { "id": "750e8400-e29b-41d4-a716-446655440000", "type": "BANK_ACCOUNT", "bank_account": { "account_name": "John Doe", "account_number_last4": "7890", "bank_code": "044", "bank_name": "Access Bank" } }, "on_behalf_of": null, "created_at": "2026-01-05T15:04:05Z", "settled_at": null } ], "page": 1, "limit": 20, "total": 1, "total_pages": 1 }
List merchant-initiated transfers
PROCESSING
SETTLED
FAILED
NGN
USD
curl --request GET \ --url 'https://api.daya.co/v1/transfers?limit=20&page=1&status=PROCESSING' \ --header 'X-Api-Key: YOUR_API_KEY'