request(
"GET",
"/v1/custody/internal_address_info_batch/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/internal_address_info_batch/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
).then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/internal_address_info_batch/", map[string]string{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
})
{
"success": true,
"result": [
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": true
},
{
"coin": "ETH",
"address": "0x777094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": false
}
]
}
Loop Alliance
Get Internal Addresses Info
This content applies to WaaS 1.0 only. We highly recommend that you upgrade to WaaS 2.0.
GET
/
v1
/
custody
/
internal_address_info_batch
/
request(
"GET",
"/v1/custody/internal_address_info_batch/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/internal_address_info_batch/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
).then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/internal_address_info_batch/", map[string]string{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
})
{
"success": true,
"result": [
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": true
},
{
"coin": "ETH",
"address": "0x777094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": false
}
]
}
To check if the address available for Loop transaction.
More info about Loop: https://loop.top/
Request
String
required
The coin symbol.
String
required
A comma-separated list of addresses.
Response
bool
request successful or failed
object[]
Show object
Show object
String
The coin type of the address.
String
The address being checked.
Bool
Whether the address is an internal address or not.
String
The name of the organization associated with the address (if it is an internal address).
String
The name of the wallet associated with the address (if it is an internal address).
request(
"GET",
"/v1/custody/internal_address_info_batch/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/internal_address_info_batch/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
).then(res => {
res.json().then((data)=>{
console.log(JSON.stringify(data, null, 4));
})
}).catch(err => {
console.log(err)
});
Request("GET", "/v1/custody/internal_address_info_batch/", map[string]string{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e,0x777094588811118b7701cf4a9dea056e775b4b4e",
})
{
"success": true,
"result": [
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": true
},
{
"coin": "ETH",
"address": "0x777094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": false
}
]
}
