Coins/Coin holders
holders-count
holders-count
Header Parameters
x-api-key
stringResponse Body
holders-count
TypeScript Definitions
Use the response body type in TypeScript.
count
numbercurl -X GET "https://api-ex.insidex.trade/coin-holders/0x87dfe1248a1dc4ce473bd9cb2937d66cdc6c30fee63f3fe0dbb55c7a09d35dec::up::UP/holders-count" \
-H "x-api-key: insidex_api.hGhJarqGjnUDkw36WUXETXyR"
fetch("https://api-ex.insidex.trade/coin-holders/0x87dfe1248a1dc4ce473bd9cb2937d66cdc6c30fee63f3fe0dbb55c7a09d35dec::up::UP/holders-count", {
headers: {
"x-api-key": "insidex_api.hGhJarqGjnUDkw36WUXETXyR"
}
})
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api-ex.insidex.trade/coin-holders/0x87dfe1248a1dc4ce473bd9cb2937d66cdc6c30fee63f3fe0dbb55c7a09d35dec::up::UP/holders-count"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "insidex_api.hGhJarqGjnUDkw36WUXETXyR")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import requests
url = "https://api-ex.insidex.trade/coin-holders/0x87dfe1248a1dc4ce473bd9cb2937d66cdc6c30fee63f3fe0dbb55c7a09d35dec::up::UP/holders-count"
response = requests.request("GET", url, headers = {
"x-api-key": "insidex_api.hGhJarqGjnUDkw36WUXETXyR"
})
print(response.text)
{
"count": 461
}