Get a list of addresses
Last updated
Last updated
Getting a list of addresses
Public API-key
Signing the request body with a private API-key
Request content type
application/json
Offset (for pagination)
Limit (for pagination)
List of networks to search for addresses in
ethereum
POST /api-gateway/address-book/get HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 44
{
"page": 1,
"limit": 1,
"networks": [
"ethereum"
]
}
{
"success": true,
"response": {
"addresses": [
{
"id": "aab38ce3-3a0c-40ce-b6ef-27f731992b86",
"networks": [
"ethereum"
],
"address": "0xe2d3A739EFFCd3A99387d015E260eEFAc72EBea2",
"alias": "",
"comment": ""
}
],
"count": 1,
"countPages": 1,
"limit": 1,
"page": 1
}
}