Get Withdrawal
HTTP Method: GET
Endpoint URL: /withdrawal/:id
Description: Fetches a specific withdrawal request by its unique ID.
Security: Requires the API-KEY
header.
Path Parameter
:id
— the UUID of the withdrawal to retrieve (e.g.285d8dce-7663-4580-ba7f-8afb2f2d3292
).
Example cURL
curl https://api.alppay.io/v2/withdrawal/285d8dce-7663-4580-ba7f-8afb2f2d3292 \
-H "API-KEY: ak_live_1234567890abcdef"
Successful Response (200 OK)
{
"id": "285d8dce-7663-4580-ba7f-8afb2f2d3292",
"txnId": "0xe7238caa68382485141be0443d6ba7efd0bd9f6bac5a624bd059acc53af1bf1d19",
"amount": "1000.12345678",
"receivedAmount": "1000.12345678",
"asset": {
"short": "USDT",
"name": "Tether",
"logoUrl": "https://cryptologos.cc/logos/tether-usdt-logo.png",
"network": "tron"
},
"addressTo": "0x5D8D9C7f68A46634BCEaD2a6FF166A0BdFb08540",
"addressFrom": "0x5D8D9C7f68A46634BCEaD2a6FF166A0BdFb08540",
"destTag": "optional_tag",
"status": "OPEN",
"customer": {
"id": 12312312,
"name": "John",
"email": "[email protected]"
},
"merchant": {
"id": "285d8dce-7663-4580-ba7f-8afb2f2d3292",
"name": "Your Company",
"siteUrl": "https://your-shop.com",
"logoUrl": "https://your-shop.com/logo.svg",
"email": "[email protected]"
},
"invoice": "INV-001",
"createdAt": "2025-05-20T12:34:56Z",
"updatedAt": "2025-05-20T12:34:56Z"
}