Currency Profile
curl --request GET \
--url https://api.cryptorank.io/v3/currencies/{id} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/currencies/{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/currencies/{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/currencies/{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/currencies/{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/currencies/{id}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/currencies/{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": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"rank": 1,
"type": "coin",
"lifecycle": "traded",
"category": {
"id": 7,
"slug": "smart-contracts",
"name": "Smart Contracts"
},
"tags": [
{
"id": 12,
"slug": "defi",
"name": "DeFi"
}
],
"imageUrl": "https://images.cryptorank.io/coins/150x150.bitcoin1524754012028.png",
"description": "<string>",
"listingDate": "2009-01-03T00:00:00.000Z",
"links": [
{
"type": "web",
"url": "https://bitcoin.org"
}
],
"price": "65000.5",
"pricePercentChange": {
"h24": 1.23,
"d7": -4.56,
"d30": 12.34,
"m3": 8.9,
"ytd": 50.12
},
"volume24h": "32000000000",
"marketCap": "1280000000000",
"volMcapRatio": 0.025,
"volatility": 3.5,
"high24hUsd": "65500",
"low24hUsd": "64000",
"fullyDilutedValuation": "1300000000000",
"circulatingPercent": 92.5,
"circulatingSupply": "19700000",
"totalSupply": "21000000",
"maxSupply": "21000000"
},
"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
}
}Currencies
Currency Profile
Returns a coin’s profile: identity, current price snapshot.
Available from: Sandbox
Cost: 1 credit per request
GET
/
v3
/
currencies
/
{id}
Currency Profile
curl --request GET \
--url https://api.cryptorank.io/v3/currencies/{id} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/currencies/{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/currencies/{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/currencies/{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/currencies/{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/currencies/{id}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/currencies/{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": "bitcoin",
"symbol": "BTC",
"name": "Bitcoin",
"rank": 1,
"type": "coin",
"lifecycle": "traded",
"category": {
"id": 7,
"slug": "smart-contracts",
"name": "Smart Contracts"
},
"tags": [
{
"id": 12,
"slug": "defi",
"name": "DeFi"
}
],
"imageUrl": "https://images.cryptorank.io/coins/150x150.bitcoin1524754012028.png",
"description": "<string>",
"listingDate": "2009-01-03T00:00:00.000Z",
"links": [
{
"type": "web",
"url": "https://bitcoin.org"
}
],
"price": "65000.5",
"pricePercentChange": {
"h24": 1.23,
"d7": -4.56,
"d30": 12.34,
"m3": 8.9,
"ytd": 50.12
},
"volume24h": "32000000000",
"marketCap": "1280000000000",
"volMcapRatio": 0.025,
"volatility": 3.5,
"high24hUsd": "65500",
"low24hUsd": "64000",
"fullyDilutedValuation": "1300000000000",
"circulatingPercent": 92.5,
"circulatingSupply": "19700000",
"totalSupply": "21000000",
"maxSupply": "21000000"
},
"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
}
}Asset classification:
- coin — native asset of its own blockchain (BTC, ETH, SOL)
- token — asset issued via smart contract on an existing chain (ERC-20, SPL)
- etf — exchange-listed fund tracking underlying asset(s); no chain, no on-chain contract; excluded from ranked coin lists
- leveraged-token — tokenized leveraged product (e.g. BTC3L/BTC3S); has on-chain contract address; issued by exchanges
- fiat — government-issued currency (USD, EUR); price/quote reference only, not tradable crypto
- no-token — tracked project without a launched token yet; no symbol/price
- derivative — primarily a futures instrument; markets page defaults to Futures tab (legacy, rarely used)
Authorizations
Path Parameters
Numeric coin id.
Example:
1
Query Parameters
Fiat currency for price/market-cap conversion (default USD).
Available options:
EUR, USD ⌘I