Skip to main content
GET
/
v1
/
recipients
/
{id}
Get a recipient by ID
curl --request GET \
  --url https://api.railsfromthecrypt.com/v1/recipients/{id} \
  --header 'x-api-key: <x-api-key>'
{
  "success": true,
  "message": "Recipient retrieved successfully",
  "data": {
    "id": "rec_01J8V9ZP3A7",
    "type": "crypto",
    "name": "Vendor Payment",
    "active": true,
    "details": {
      "network": "Polygon",
      "wallet_address": "0x3fA91D6b84bE2c0BFD7647a92E5B1A2Ec6F8C91e",
      "symbol": "USDT"
    },
    "created_at": "2025-10-10T09:15:21Z"
  }
}
Retrieve a specific recipient by its unique ID. Returns detailed information about the recipient including type, details, and status.

Headers

x-api-key
string
required

API key for authentication

Path Parameters

id
string
required

Recipient ID

Example:

"rec_01J8V9ZP3A7"

Response

Recipient retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Recipient retrieved successfully"

data
object