request(
"GET",
"/v1/custody/internal_address_info/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/internal_address_info/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
},
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/", map[string]string{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
})
{
"success": true,
"result": {
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": true,
"internal_org": "CoboWalletProduction",
"internal_wallet": "CoboWalletProduction"
}
}
Loop Alliance
Get Internal Address Info
This content applies to WaaS 1.0 only. We highly recommend that you upgrade to WaaS 2.0.
coin, address, and memo (optional). If the address contains a | character, the address is split into two parts: the address itself and the memo. Otherwise, the memo parameter is used. The endpoint requires authentication.GET
/
v1
/
custody
/
internal_address_info
/
request(
"GET",
"/v1/custody/internal_address_info/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/internal_address_info/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
},
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/", map[string]string{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
})
{
"success": true,
"result": {
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": true,
"internal_org": "CoboWalletProduction",
"internal_wallet": "CoboWalletProduction"
}
}
To check if the address available for Loop transaction.
More info about Loop: https://loop.top/
Request
String
required
The coin type of the address.
String
required
The address to check.
String
The memo associated with the address (if any).
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/",
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
},
api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/internal_address_info/',
{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
},
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/", map[string]string{
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
})
{
"success": true,
"result": {
"coin": "ETH",
"address": "0x544094588811118b7701cf4a9dea056e775b4b4e",
"is_internal_address": true,
"internal_org": "CoboWalletProduction",
"internal_wallet": "CoboWalletProduction"
}
}
