/v1/categories
Ranked crypto sectors
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/cryptocategories-api/v1/categories" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptocategories-api/v1/categories", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptocategories-api/v1/categories");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/cryptocategories-api/v1/categories",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"sort": "market_cap",
"count": 50,
"categories": [
{
"id": "smart-contract-platform",
"name": "Smart Contract Platform",
"top_coins": [
"bitcoin",
"ethereum",
"binancecoin"
],
"market_cap": 1791934975772,
"updated_at": "2026-06-09T11:37:18.336Z",
"volume_24h": 63741127505,
"market_cap_change_24h_pct": -1
},
{
"id": "layer-1",
"name": "Layer 1 (L1)",
"top_coins": [
"bitcoin",
"ethereum",
"binancecoin"
],
"market_cap": 1769053142410,
"updated_at": "2026-06-09T11:36:52.875Z",
"volume_24h": 61748726048,
"market_cap_change_24h_pct": -0.97
},
{
"id": "proof-of-work-pow",
"name": "Proof of Work (PoW)",
"top_coins": [
"bitcoin",
"dogecoin",
"zcash"
],
"market_cap": 1293484074076,
"updated_at": "2026-06-09T11:36:56.148Z",
"volume_24h": 36511709163,
"market_cap_change_24h_pct": -0.99
},
{
"id": "world-liberty-financial-portfolio",
"name": "World Liberty Financial Portfolio",
"top_coins": [
"ethereum",
"tether",
"usd-coin"
],
"market_cap": 513881407439,
"updated_at": "2026-06-09T11:32:40.475Z",
"volume_24h": 89313846386,
"market_cap_change_24h_pct": -0.47
},
{
"id": "proof-of-stake-pos",
"name": "Proof of Stake (PoS)",
"top_coins": [
"ethereum",
"binancecoin",
"solana"
],
"market_cap": 393857783019,
"updated_at": "2026-06-09T11:36:49.579Z",
"volume_24h": 23002307338,
"market_cap_change_24h_pct": -0.83
},
{
"id": "stablecoins",
"name": "Stablecoins",
"top_coins": [
"tether",
"usd-coin",
"usds"
],
"market_cap": 312291346660,
"updated_at": "2026-06-09T11:32:49.512Z",
"volume_24h": 73526491662,
"market_cap_change_24h_pct": 0.15
},
{
"id": "usd-stablecoin",
"name": "USD Stablecoin",
"top_coins": [
…