v2

latestOpenAPI 3.0.3Apache 2.02026-07-3149289180.2 KB

Get Deposits

Get deposit history for the authenticated account. If no end time is provided, the current time will be used. Maximum of 100 entries returned per request.

get/v1/account/deposits

Query parameters

deposit_status'pending' | 'confirmed' | 'removed'

Deposit status

hashstring

On-chain transaction hash, "0x" if not yet mined

Example:0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
start_timestampinteger

Start timestamp in milliseconds

Example:1767225600000
end_timestampinteger

End timestamp in milliseconds

Example:1767229200000

Response

Deposit history response.

moreboolean required

More data available

Example response

{
  "data": [
    {
      "hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
      "asset": "USDC",
      "amount": "100000000",
      "from": "0x1234567890abcdef1234567890abcdef12345678",
      "to": "0x1234567890abcdef1234567890abcdef12345678",
      "confirmations": 12,
      "required_confirmations": 12,
      "created_timestamp": 1767225600000,
      "confirmed_timestamp": 1767225600000
    }
  ]
}