Create a Crypto recipient
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"walletId": "WA137899922201",
"chain": "Ethereum",
"token": "USDT",
"address": "0x1eB76d8559DFF5403b32d0a54C8eaD37a03d20CF"
}
Request samples
curl --location --request POST '/recipient/crypto' \
--header 'Content-Type: application/json' \
--data-raw '{
"walletId": "WA137899922201",
"chain": "Ethereum",
"token": "USDT",
"address": "0x1eB76d8559DFF5403b32d0a54C8eaD37a03d20CF"
}'
Responses
application/json {
"recipientId": "BE1356660089001"
}
Modified at 2025-06-17 07:18:24