v1
latestOpenAPI 3.1.02026-07-241653251.3 MBList crypto deposits
Retrieves a paginated list of blockchain deposits. Filter by deposit IDs, account IDs, transaction hashes, assets, states, and timestamps.
Query parameters
Filter by one or more deposit IDs
Filter by one or more account IDs
Filter by one or more transaction hashes
Filter by one or more asset codes (e.g. BTC, ETH)
Filter by one or more deposit states
Filter by one or more state reasons (e.g. required_travel_rule_info). Use with states=PENDING_COMPLIANCE_REVIEW to list deposits held for Travel Rule review.
Convenience filter for Travel Rule status. pending returns all deposits currently held awaiting Travel Rule verification (equivalent to states=PENDING_COMPLIANCE_REVIEW&state_reasons=required_travel_rule_info).
Filter deposits from this timestamp (inclusive)
Filter deposits up to this timestamp (inclusive)
Maximum number of results to return (1-999)
Pagination cursor for the next page of results
Headers
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Response
Successful response
Example response
{
"message": [
{
"deposit_id": "dep_abc123",
"account_id": "80289ce5-072b-4739-929d-dcc5ccc542f3",
"participant_code": "ABC123",
"transaction_hash": "0x408482348dcb0e0331a9148d50f8c76db08138f63fb1586fcfc45200a91ccc5f",
"asset": "BTC",
"amount": "1.5",
"source_address": "0x73dFE6E1696FB1cf4648B954aB608a593a382B8G",
"received_address": "0xB38CeBE03b2b6705744795F36921DE27c70A7C62",
"state": "confirmed",
"timestamp": "2024-01-01T00:00:00Z",
"state_reason": "required_travel_rule_info",
"travel_rule_collection_deadline": "2026-06-11T09:26:42Z",
"notional": {
"value": "46000.00",
"rate": "92000.00",
"quotedAsset": "EUR"
},
"history": [
{
"from_state": "pending_settlement",
"to_state": "confirmed",
"timestamp": "2024-01-01T00:00:00Z"
}
]
}
],
"pagination": {
"limit": 50,
"next_cursor": "base64cursor..."
}
}