Adding a trusted address
Adding an address to the trusted list to be able to withdraw using the payment widget
Header parameters
x-api-public-keystringOptional
Public API-key
x-api-signaturestringOptional
Signing the request body with a private API-key
Content-typestringOptionalExample: 
Request content type
application/jsonBody
clientIdstringOptionalExample: 
User ID in the merchant system
user12345currencystringOptionalExample: 
Address currency
USDTnetworkstringOptionalExample: 
Address network
ethereumaddressstringOptionalExample: 
The address in the blockchain
0xe68C1e0C4BA59e17fAF970cB7EC69c3dABf25f02tagstringOptional
Address tag (memo) (relevant only for networks that support the tag, such as Ripple)
aliasstringOptionalExample: 
Address alias
My main addressResponses
200Success
application/json
post
/api-gateway/personal-addresses/add-trusted-addressPOST /api-gateway/personal-addresses/add-trusted-address HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 155
{
  "clientId": "user12345",
  "currency": "USDT",
  "network": "ethereum",
  "address": "0xe68C1e0C4BA59e17fAF970cB7EC69c3dABf25f02",
  "tag": null,
  "alias": "My main address"
}200Success
{
  "success": true,
  "response": {
    "id": "4362ac57-ef45-45e8-ad26-c48e7e784aea",
    "clientId": "user12345",
    "currency": "USDT",
    "network": "ethereum",
    "address": "0xe68C1e0C4BA59e17fAF970cB7EC69c3dABf25f02",
    "tag": null,
    "alias": "My main address",
    "createdAt": "2025-06-09T13:18:29.439Z"
  }
}Last updated