Skip to main content
GET
/
api
/
recipients
List Recipients
curl --request GET \
  --url https://api.example.com/api/recipients \
  --header 'Authorization: <authorization>' \
  --header 'X-User-ID: <x-user-id>'
[
  {
    "id": "rec_abc123",
    "businessName": "Acme Malaysia",
    "country": "MY",
    "currency": "MYR",
    "transferType": "fiat_to_fiat",
    "bankName": "Maybank",
    "bankAccount": "1234567890",
    "status": "active"
  }
]
Authorization
string
required
Bearer token from Auth0
X-User-ID
string
required
Internal user ID
[
  {
    "id": "rec_abc123",
    "businessName": "Acme Malaysia",
    "country": "MY",
    "currency": "MYR",
    "transferType": "fiat_to_fiat",
    "bankName": "Maybank",
    "bankAccount": "1234567890",
    "status": "active"
  }
]