v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
Deposits

List crypto deposits

Retrieves a paginated list of blockchain deposits. Filter by deposit IDs, account IDs, transaction hashes, assets, states, and timestamps.

get/deposits/crypto

Query parameters

string
OR
string[]

Filter by one or more deposit IDs

string
OR
string[]

Filter by one or more account IDs

string
OR
string[]

Filter by one or more transaction hashes

string
OR
string[]

Filter by one or more asset codes (e.g. BTC, ETH)

string
OR
string[]

Filter by one or more deposit states

string
OR
string[]

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.

travel_rule_status'pending'

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).

from_timestampstring

Filter deposits from this timestamp (inclusive)

to_timestampstring

Filter deposits up to this timestamp (inclusive)

limitstring

Maximum number of results to return (1-999)

cursorstring

Pagination cursor for the next page of results

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

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