Skip to main content
GET
/
v1
/
recipients
/
{id}
Get recipient
curl --request GET \
  --url https://api.daya.co/v1/recipients/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "id": "750e8400-e29b-41d4-a716-446655440000",
  "type": "BANK_ACCOUNT",
  "first_name": "John",
  "last_name": "Doe",
  "bank_account": {
    "account_number": "1234567890",
    "account_name": "John Doe",
    "bank_code": "044",
    "bank_name": "Access Bank"
  },
  "crypto_address": null,
  "created_at": "2026-01-05T15:04:05Z"
}

Overview

Retrieve details for a specific payout recipient belonging to the authenticated merchant.

Authentication

X-Api-Key
string
required
Your merchant API key

Path Parameters

id
string
required
Recipient ID (UUID)Example: 750e8400-e29b-41d4-a716-446655440000

Request Example

curl --request GET \
  --url https://api.daya.co/v1/recipients/750e8400-e29b-41d4-a716-446655440000 \
  --header 'X-Api-Key: YOUR_API_KEY'

Response

id
string
required
Unique recipient identifier (UUID)
type
string
required
Recipient type (BANK_ACCOUNT or CRYPTO_ADDRESS)
first_name
string
Recipient first name (resolved from account details)
last_name
string
Recipient last name (resolved from account details)
bank_account
object
Bank account details. Present when type is BANK_ACCOUNT, null otherwise.
crypto_address
object
Crypto address details. Present when type is CRYPTO_ADDRESS, null otherwise.
created_at
string
required
When the recipient was created (ISO 8601 timestamp)

Success Response

{
  "id": "750e8400-e29b-41d4-a716-446655440000",
  "type": "BANK_ACCOUNT",
  "first_name": "John",
  "last_name": "Doe",
  "bank_account": {
    "account_number": "1234567890",
    "account_name": "John Doe",
    "bank_code": "044",
    "bank_name": "Access Bank"
  },
  "crypto_address": null,
  "created_at": "2026-01-05T15:04:05Z"
}

Error Responses

{
  "error": {
    "code": "validation_failed",
    "message": "Invalid UUID format"
  }
}

Next Steps

List recipients

Retrieve all saved payout recipients

Delete recipient

Remove a payout recipient