v2

latestOpenAPI 3.0.02026-07-311824171.4 MB
Wallet
Private

Retrieve the latest user deposits. Returns a list of deposit transactions with their status, amounts, addresses, confirmations, and other relevant details.

📖 Related Article: Managing Deposits

Scope: wallet:read

Try in API console

get/private/get_deposits

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,
        "transaction_id": "1b1fb5568515e2b79503501e3d3680b2d0838d5dfc2d15a04eb8cd9fbbe0b572",
        "source_address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
        "received_timestamp": 1536569522277,
        "updated_timestamp": 1536569522277,
        "refund_transaction_id": "1b1fb5568515e2b79503501e3d3680b2d0838d5dfc2d15a04eb8cd9fbbe0b572"
      }
    ],
    "count": 101
  }
}