Get payment address for advanced balance top-up

Get payment address for deposit to your advanced balance

Get payment address for advanced balance top-up

post

/api-gateway/advanced-balance-deposit-address

Header parameters
x-api-public-keystring

Public API-key

x-api-signaturestring

Signing the request body with a private API-key

Content-typestring

Request content type

Example: application/json
Body
advancedBalanceIdstringrequired

Advance balance identifier

Example: 1503cf18-597f-447f-b172-112dfe377e1b
currencystring

The coin in which you want to replenish the advance balance

Example: USDT
networkstring

The network of the coin in which you want to top up the advance balance'

Example: ethereum
Responses
curl -L \
  --request POST \
  --url 'https://ocp.onchainpay.io/api-gateway/advanced-balance-deposit-address' \
  --header 'Content-Type: application/json' \
  --data '{"advancedBalanceId":"1503cf18-597f-447f-b172-112dfe377e1b","currency":"USDT","network":"ethereum"}'
{
  "success": true,
  "response": {
    "currency": "USDT",
    "network": "ethereum",
    "address": "0x00000005707Bf50EfA35a2db020eDe9Ac0780b9f",
    "tag": "ethereum",
    "until": "2024-12-26T08:21:33.204Z"
  }
}

Last updated