v3

latestOpenAPI 3.0.02026-07-311784111.3 MB
Wallet
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

Try in API console

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

jsonrpc'2.0' required

The JSON-RPC version (2.0)

idinteger

The id that was sent in the request

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
  }
}