Skip to main content
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

coin
String
required
The coin symbol.
address
String
required
A comma-separated list of addresses.

Response

success
bool
request successful or failed
result
object[]
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
    }
  ]
}