Account
Get Addresses Info
This endpoint returns information about a list of addresses for a specific coin. The endpoint accepts GET and POST requests with parameters 'coin' and 'address'. The 'coin' parameter specifies the coin type, and the 'address' parameter is a comma-separated list of addresses. The response contains the coin type and a comma-separated list of addresses that belong to the custody wallet of the authenticated user.
GET
/v1/custody/addresses_info/
API-SECRET*
Request
coinrequired
String
The coin type.
addressrequired
String
A comma-separated list of addresses.
Response
success
bool
request successful or failed
result
object
request(
"GET",
"/v1/custody/addresses_info/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x33bb80427711adc881b56a209a374b00388f8a99,0x70099565fe19464b544ccb6ad8080891863eb080,0xafe68A8F8B339D7bbb30A9e486c0c06c3964Cd7B",
},
api_key, api_secret, host
)
And here is an example response from the API endpoint:
{
"success": true,
"result": {
"coin": "ETH",
"addresses": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x33bb80427711adc881b56a209a374b00388f8a99,0x70099565fe19464b544ccb6ad8080891863eb080"
}
}
request(
"GET",
"/v1/custody/addresses_info/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x33bb80427711adc881b56a209a374b00388f8a99,0x70099565fe19464b544ccb6ad8080891863eb080,0xafe68A8F8B339D7bbb30A9e486c0c06c3964Cd7B",
},
api_key, api_secret, host
)
{
"success": true,
"result": {
"coin": "ETH",
"addresses": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x33bb80427711adc881b56a209a374b00388f8a99,0x70099565fe19464b544ccb6ad8080891863eb080"
}
}