Skip to main content
GET
/
v1
/
custody
/
address_history
/
request(
  "GET",
  "/v1/custody/address_history/",
  {
    "coin": "ETH",
    "page_index": 0,
    "page_length": 20,
  },
  api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/address_history/',
        {
          "coin": "ETH",
          "page_index": 0,
          "page_length": 20,
        },
        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/address_history/", map[string]string{
    "coin": "ETH",
    "page_index": 0,
    "page_length": 20,
})
{
  "success": true,
  "result": [
    {
      "coin": "ETH",
      "address": "0x544094588811118b7701cf4a9dea056e775b4b4e"
    },
    {
      "coin": "ETH",
      "address": "0x644094588811118b7701cf4a9dea056e775b4b4e"
    },
    {
      "coin": "ETH",
      "address": "0x574094588811118b7701cf4a9dea056e775b4b4e"
    }
  ]
}

Request

coin
String
required
The coin symbol.
page_index
Int
The page index, starting from 0.
page_length
Int
The number of items per page.
sort_flag
Int
The sort flag, 0 for ascending and 1 for descending.

Response

success
bool
request successful or failed
result
object[]
request(
  "GET",
  "/v1/custody/address_history/",
  {
    "coin": "ETH",
    "page_index": 0,
    "page_length": 20,
  },
  api_key, api_secret, host
)
coboFetch('GET', '/v1/custody/address_history/',
        {
          "coin": "ETH",
          "page_index": 0,
          "page_length": 20,
        },
        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/address_history/", map[string]string{
    "coin": "ETH",
    "page_index": 0,
    "page_length": 20,
})
{
  "success": true,
  "result": [
    {
      "coin": "ETH",
      "address": "0x544094588811118b7701cf4a9dea056e775b4b4e"
    },
    {
      "coin": "ETH",
      "address": "0x644094588811118b7701cf4a9dea056e775b4b4e"
    },
    {
      "coin": "ETH",
      "address": "0x574094588811118b7701cf4a9dea056e775b4b4e"
    }
  ]
}