v1

latestOpenAPI 3.1.02026-07-24590534.0 KB

Fetch deposits

This endpoint fetches all deposits tethered to an authenticated account.

get/users/{user_or_user_id}/deposits?currency={currency}&state={state}

Path parameters

user_or_user_idstring required

The User ID. Use 'me' if fetching wallets of main authenticated user, use the user_id if fetching for Sub-account linked to the authenticated user.

currency'btc' | 'usdt' | 'eth' | 'xaut' | 'usat' | 'xrp' | 'dash' | 'ltc' | 'trx' | 'doge' | 'bnb' | 'pol' | 'usdc' | 'aave' | 'shib' | 'link' | 'cake' | 'xlm' | 'ada' | 'bch' | 'floki' | 'sol' | 'cfx' | 'ton' | 'sui' | 'zk' | 'lsk' | 'axcnh' | 'qdx' | 'cngn' required

Allowed Currencies values: usd, btc, ltc, eth, xrp, usdt, dash, trx, doge, xrp, bnb, matic, shib, axs, safemoon, cake, xlm, aave, link.

state'submitting' | 'canceled' | 'submitted' | 'rejected' | 'failed' | 'accepted' | 'pending_review.' required

Allowed State values: submitting, canceled, submitted, rejected, failed, accepted, pending_review.

Query parameters

order_by'asc' | 'desc'

Sort in either descending or ascending order, defaults to 'DESC'. options are asc or desc

Response

200

statusstring
messagestring

Example response

{
  "status": "success",
  "message": "Successful",
  "data": [
    {
      "id": "a46bb02a55e54b0da91a69c3cd6b3309",
      "type": "coin_address",
      "currency": "USDT",
      "amount": "1.0000000000000000",
      "fee": "0.0000000000000000",
      "txid": "0x009f3ae59ef9b1efcca3d5724051fcfdb4543ba81c70b9ad397f3eafe44c7042",
      "status": "accepted",
      "wallet": {
        "id": "206735f39627480d820912cbf8c50a95",
        "name": "USDT",
        "currency": "usdt",
        "balance": "4.726900",
        "locked": "0.0000000000",
        "staked": "0.0000000000",
        "user": {
          "id": "24rhpmow",
          "sn": "Qw1os7uj7",
          "email": "test@gmail.com",
          "first_name": "test",
          "last_name": "tester",
          "display_name": "Adigun Efon Exchange",
          "created_at": "2026-02-09T13:22:14.000Z",
          "updated_at": "2026-02-13T10:45:42.000Z"
        },
        "converted_balance": "6590.669401",
        "reference_currency": "NGN",
        "is_crypto": true,
        "created_at": "2026-02-10T11:48:38.000Z",
        "updated_at": "2026-02-13T09:55:03.000Z",
        "blockchain_enabled": true,
        "default_network": "bep20",
        "networks": [
          {
            "id": "bep20",
            "name": "Binance Smart Chain",
            "deposits_enabled": true,
            "withdraws_enabled": true
          }
        ],
        "deposit_address": "bc1qel75acv9tdwqdx86tla6yyxagp2fvq2tntxntp"
      },
      "user": {
        "id": "24rhpmow",
        "sn": "Qw1os7uj7",
        "email": "test@gmail.com",
        "first_name": "test",
        "last_name": "tester",
        "display_name": "Adigun Efon Exchange",
        "created_at": "2026-02-09T13:22:14.000Z",
        "updated_at": "2026-02-13T10:45:42.000Z"
      },
      "created_at": "2026-02-10T11:48:57Z",
      "payment_transaction": {
        "status": "confirmed",
        "confirmations": 1,
        "required_confirmations": 1
      },
      "payment_address": {
        "id": "5aa8fa21383743a1b9a0bdb3b00ad8cd",
        "currency": "USDT",
        "address": "0xf145464EB467582b4dE10B20edAff9F164F42d06",
        "total_payments": "4.0000000010000000",
        "created_at": "2026-02-10T11:35:12.000Z",
        "updated_at": "2026-02-10T11:35:12.000Z"
      }
    }
  ]
}