Request
Body Params application/json
{
"data": {
"merchantId": "string",
"coinId": "string",
"payoutAmount": 0,
"payoutAddress": "string",
"remark": "string",
"timestamp": "string",
"nonce": "string"
},
"signature": "string"
}
Request Code Samples
curl --location --request POST 'https://api.pelagotech.com/openapi/crypto/payout' \
--header 'X-App-Key: {{merchant-app-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"merchantId": "string",
"coinId": "string",
"payoutAmount": 0,
"payoutAddress": "string",
"remark": "string",
"timestamp": "string",
"nonce": "string"
},
"signature": "string"
}'
Responses
{
"code": "string",
"data": {
"pelagoPayoutId": "string",
"merchantId": "string",
"merchantBrandName": "string",
"coinId": "string",
"payoutAmount": "string",
"payoutFee": "string",
"gasFee": "string",
"totalAmount": "string",
"payoutAddress": "string",
"payoutStatus": "string",
"remark": "string"
},
"msg": "string"
}
Modified at 2025-07-16 00:34:58