v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Gateway

Child Address Deposit

Deposit Funds to Gateway Address

This endpoint allows you to deposit a specified amount of funds into a gateway address associated with a particular wallet. It is typically used to move assets into the Blockradar system for further operations or transfers.


Request Body Parameters

ParameterTypeRequiredDescription
amountstringYesThe amount to deposit.
referencestringNoOptional reference code for tracking or reconciliation.
notestringNoOptional note or message to associate with this deposit.
metadataobjectNoOptional metadata as key-value pairs for additional transaction details.

Path Variables

VariableDescription
addressIdThe unique identifier of the gateway address to deposit to.
walletIdThe unique identifier of the wallet associated with the deposit.
post/v1/addresses/{addressId}/gateway/deposit/{walletId}

Request body

amountstring
codestring
metadatastring
notestring
referencestring

Example request

{
  "amount": "AMOUNT_TO_DEPOSIT",
  "code": "OPTIONAL_2FA_CODE",
  "metadata": "OPTIONAL_META_DATA",
  "note": "OPTIONAL_NOTE",
  "reference": "OPTIONAL_REFERENCE_CODE"
}

Response

200

messagestring
statusCodenumber

Example response

{
  "data": {
    "amlScreening": {
      "message": "Address is not sanctioned",
      "provider": "ofac, fbi, tether, circle",
      "status": "success"
    },
    "amount": "5",
    "amountPaid": "5",
    "amountUSD": "5",
    "asset": {
      "address": "0x5425890298aed601595a70AB815c96711a31Bc65",
      "createdAt": "2025-06-13T22:38:16.058Z",
      "currency": "USD",
      "decimals": 6,
      "id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
      "isActive": true,
      "name": "USD Coin",
      "network": "testnet",
      "symbol": "USDC",
      "updatedAt": "2025-06-13T22:38:16.058Z"
    },
    "blockchain": {
      "createdAt": "2025-06-13T22:30:37.053Z",
      "derivationPath": "m/44'/60'/0'/0",
      "id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
      "isActive": true,
      "isEvmCompatible": true,
      "name": "avalanche",
      "slug": "avalanche",
      "symbol": "avax",
      "updatedAt": "2025-06-13T22:30:37.053Z"
    },
    "chainId": 43113,
    "createdAt": "2025-08-17T02:45:32.188Z",
    "currency": "USD",
    "id": "6f3836f2-3d00-40aa-a85b-e34e989b4c82",
    "network": "testnet",
    "note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
    "rateUSD": "1",
    "reason": "Balance Before: 8.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false",
    "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
    "reference": "IsrFHR26J",
    "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
    "status": "PENDING",
    "tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65",
    "type": "GATEWAY_DEPOSIT",
    "updatedAt": "2025-08-17T02:45:32.188Z",
    "wallet": {
      "address": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
      "configurations": {
        "autoSweeping": {
          "isActive": true
        },
        "withdrawal": {
          "gasless": {
            "operator": "gt"
          }
        }
      },
      "createdAt": "2025-06-13T22:41:28.977Z",
      "derivationPath": "m/44'/60'/0'/0/0",
      "description": "Avalanche Master wallet",
      "id": "79c7a18a-07be-4c1f-a046-94bf4964f392",
      "isActive": true,
      "name": "Avalanche",
      "network": "testnet",
      "status": "ACTIVE",
      "updatedAt": "2025-06-13T22:41:28.977Z"
    }
  },
  "message": "Deposit initiated successfully",
  "statusCode": 200
}