Ecosystem Profile
curl --request GET \
--url https://api.cryptorank.io/v3/ecosystems/{id} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/ecosystems/{id}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cryptorank.io/v3/ecosystems/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cryptorank.io/v3/ecosystems/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cryptorank.io/v3/ecosystems/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cryptorank.io/v3/ecosystems/{id}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/ecosystems/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": 1,
"slug": "ethereum",
"name": "Ethereum",
"imageUrl": "https://images.cryptorank.io/coins/150x150.ethereum1765201517428.png",
"shortDescription": "Smart-contract platform launched in 2015.",
"projectsCount": 1432,
"newProjectsCount": 27,
"marketCap": "420000000000",
"marketCapChangePercent24h": 1.23,
"totalValueLocked": "85000000000",
"totalValueLockedChangePercent24h": -0.42,
"tags": [
{
"id": 1,
"slug": "layer-1",
"name": "Layer 1",
"projectsCount": 42
}
],
"links": [
{
"type": "twitter",
"value": "<string>"
}
],
"funds": [
{
"id": 42,
"slug": "a16z",
"name": "Andreessen Horowitz",
"imageUrl": "https://images.cryptorank.io/funds/150x150.a16z1524754012028.png"
}
]
},
"status": {
"usedCredits": 1,
"timestamp": 1780000000000
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"status": 400
}
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"status": 404
}
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded",
"status": 429
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal server error",
"status": 500
}
}Ecosystems
Ecosystem Profile
Full metrics for a single ecosystem.
Available from: Advanced
Cost: 1 credit per request
GET
/
v3
/
ecosystems
/
{id}
Ecosystem Profile
curl --request GET \
--url https://api.cryptorank.io/v3/ecosystems/{id} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/ecosystems/{id}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cryptorank.io/v3/ecosystems/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cryptorank.io/v3/ecosystems/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cryptorank.io/v3/ecosystems/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cryptorank.io/v3/ecosystems/{id}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/ecosystems/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": 1,
"slug": "ethereum",
"name": "Ethereum",
"imageUrl": "https://images.cryptorank.io/coins/150x150.ethereum1765201517428.png",
"shortDescription": "Smart-contract platform launched in 2015.",
"projectsCount": 1432,
"newProjectsCount": 27,
"marketCap": "420000000000",
"marketCapChangePercent24h": 1.23,
"totalValueLocked": "85000000000",
"totalValueLockedChangePercent24h": -0.42,
"tags": [
{
"id": 1,
"slug": "layer-1",
"name": "Layer 1",
"projectsCount": 42
}
],
"links": [
{
"type": "twitter",
"value": "<string>"
}
],
"funds": [
{
"id": 42,
"slug": "a16z",
"name": "Andreessen Horowitz",
"imageUrl": "https://images.cryptorank.io/funds/150x150.a16z1524754012028.png"
}
]
},
"status": {
"usedCredits": 1,
"timestamp": 1780000000000
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"status": 400
}
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"status": 404
}
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded",
"status": 429
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal server error",
"status": 500
}
}List this ecosystem’s projects via /currencies/list with the
ecosystemId filter.⌘I