Getting a list of trusted addresses
Last updated
Last updated
Getting a list of trusted user addresses to which payments can be made using the payment widget
Public API-key
Signing the request body with a private API-key
Request content type
application/json
User ID in the merchant system
user12345
An array of coins to search for
USDT
Array of networks to search for
ethereum
POST /api-gateway/personal-addresses/get-trusted-addresses HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 67
{
"clientId": "user12345",
"currency": [
"USDT"
],
"network": [
"ethereum"
]
}
{
"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"
}
]
}