Wallet
List deposits
Returns deposit history for the authenticated account using cursor-based pagination.
Requires the deposit permission on the API key.
get/wallet/deposits
Query parameters
currencystring
Filter by currency code.
limitinteger
Number of records to return.
cursorstring
Opaque pagination cursor returned in a previous response meta.next_cursor.
Response
Deposit history returned successfully.
Example response
{
"data": [
{
"id": "dp-001",
"currency": "BTC",
"amount": "0.01",
"fee_amount": "0.00000000",
"amount_after_fees": "0.01",
"status": "deposit_status_completed",
"channel_type": "crypto",
"network_code": "BTC",
"address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"tx_hash": "a1b2c3d4e5f6...",
"detected_at": 1712000000,
"completed_at": 1712000060,
"created_at": 1712000000
}
],
"meta": {
"next_cursor": "eyJpZCI6IjEyMyJ9",
"has_more": true,
"total": 142
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.