Skip to main content
POST
/
v1
/
addresses
/
{addressId}
/
gateway
/
deposit
/
{walletId}
Child Address Deposit
curl --request POST \
  --url https://api.blockradar.co/v1/addresses/{addressId}/gateway/deposit/{walletId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": "AMOUNT_TO_DEPOSIT",
  "code": "OPTIONAL_2FA_CODE",
  "metadata": "OPTIONAL_META_DATA",
  "note": "OPTIONAL_NOTE",
  "reference": "OPTIONAL_REFERENCE_CODE"
}
'
{
  "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,
      "isNative": false,
      "name": "USD Coin",
      "network": "testnet",
      "standard": null,
      "symbol": "USDC",
      "updatedAt": "2025-06-13T22:38:16.058Z"
    },
    "assetSwept": null,
    "assetSweptAmount": null,
    "assetSweptAt": null,
    "assetSweptGasFee": null,
    "assetSweptHash": null,
    "assetSweptRecipientAddress": null,
    "assetSweptSenderAddress": null,
    "blockHash": null,
    "blockNumber": null,
    "blockchain": {
      "createdAt": "2025-06-13T22:30:37.053Z",
      "derivationPath": "m/44'/60'/0'/0",
      "id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
      "isActive": true,
      "isEvmCompatible": true,
      "isL2": false,
      "name": "avalanche",
      "slug": "avalanche",
      "symbol": "avax",
      "tokenStandard": null,
      "updatedAt": "2025-06-13T22:30:37.053Z"
    },
    "chainId": 43113,
    "confirmations": null,
    "confirmed": false,
    "createdAt": "2025-08-17T02:45:32.188Z",
    "currency": "USD",
    "fee": null,
    "feeHash": null,
    "gasFee": null,
    "gasPrice": null,
    "gasUsed": null,
    "hash": null,
    "id": "6f3836f2-3d00-40aa-a85b-e34e989b4c82",
    "metadata": null,
    "network": "testnet",
    "note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
    "rate": null,
    "rateUSD": "1",
    "reason": "Balance Before: 8.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false",
    "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
    "reference": "IsrFHR26J",
    "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
    "signedTransaction": null,
    "status": "PENDING",
    "toAmount": null,
    "toCurrency": null,
    "tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65",
    "type": "GATEWAY_DEPOSIT",
    "updatedAt": "2025-08-17T02:45:32.188Z",
    "wallet": {
      "address": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
      "configurations": {
        "autoSweeping": {
          "isActive": true,
          "threshold": 0
        },
        "withdrawal": {
          "gasless": {
            "isActive": false,
            "operator": "gt",
            "threshold": 0
          }
        }
      },
      "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
}

Authorizations

x-api-key
string
header
required

Path Parameters

addressId
string
required
Example:

"YOUR_ADDRESS_ID"

walletId
string
required
Example:

"YOUR_WALLET_ID"

Body

application/json
amount
string
Example:

"AMOUNT_TO_DEPOSIT"

code
string
Example:

"OPTIONAL_2FA_CODE"

metadata
string
Example:

"OPTIONAL_META_DATA"

note
string
Example:

"OPTIONAL_NOTE"

reference
string
Example:

"OPTIONAL_REFERENCE_CODE"

Response

200

data
object
message
string
Example:

"Deposit initiated successfully"

statusCode
number
Example:

200