Coins/Coin holders
holders-count
holders-count
curl -X GET "/api/proxy/external-api/insidex/search/coin/pugwif" \
-H "x-api-key: insidex_api.hGhJarqGjnUDkw36WUXETXyR"
fetch("/api/proxy/external-api/insidex/search/coin/pugwif", {
headers: {
"x-api-key": "insidex_api.hGhJarqGjnUDkw36WUXETXyR"
}
})
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "/api/proxy/external-api/insidex/search/coin/pugwif"
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 = "/api/proxy/external-api/insidex/search/coin/pugwif"
response = requests.request("GET", url, headers = {
"x-api-key": "insidex_api.hGhJarqGjnUDkw36WUXETXyR"
})
print(response.text)
Empty