v2
OpenAPI 3.0.02026-07-311824171.4 MBWallet
Private
Retrieve the latest user withdrawals. Returns a list of withdrawal requests with their status, amounts, addresses, and other relevant details.
📖 Related Article: Managing Withdrawals
Scope: wallet:read
get/private/get_withdrawals
Query parameters
currency'BTC' | 'ETH' | 'USDC' | 'USDT' | 'EURR' required
Currency, i.e "BTC", "ETH", "USDC"
The currency symbol
countinteger
Number of requested items, default - 10, maximum - 1000
offsetinteger
Example:10
The offset for pagination, default - 0
Response
Success response
Example response
{
"result": {
"data": [
{
"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
"amount": 1,
"confirmed_timestamp": 1536569522277,
"created_timestamp": 1536569522277,
"fee": 0.000023,
"id": 1,
"priority": 1,
"transaction_id": "1b1fb5568515e2b79503501e3d3680b2d0838d5dfc2d15a04eb8cd9fbbe0b572",
"updated_timestamp": 1536569522277
}
],
"count": 101
}
}