Request
Body Params application/json
{
"data": {
"merchantId": "string",
"timestamp": "string",
"nonce": "string",
"orders": [
{
"coinId": "string",
"amount": 0,
"address": "string",
"remark": "string"
}
]
},
"signature": "string"
}
Request Code Samples
curl --location --request POST 'https://api.pelagotech.com/openapi/crypto/withdraw' \
--header 'X-App-Key: {{merchant-app-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"merchantId": "string",
"timestamp": "string",
"nonce": "string",
"orders": [
{
"coinId": "string",
"amount": 0,
"address": "string",
"remark": "string"
}
]
},
"signature": "string"
}'
Responses
{
"code": "string",
"data": {
"withdrawOrderIds": [
"string"
]
},
"msg": "string"
}
Modified at 2025-06-13 07:27:50