/v1/dominance
Each leading coin share of total market cap
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/globalmarket-api/v1/dominance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/globalmarket-api/v1/dominance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/globalmarket-api/v1/dominance");
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/globalmarket-api/v1/dominance",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Each coin's share of total crypto market cap. 'others_pct' is everything outside the listed coins.",
"count": 10,
"source": "CoinGecko",
"dominance": [
{
"coin": "BTC",
"dominance_pct": 56.279
},
{
"coin": "ETH",
"dominance_pct": 8.889
},
{
"coin": "USDT",
"dominance_pct": 8.368
},
{
"coin": "BNB",
"dominance_pct": 3.618
},
{
"coin": "USDC",
"dominance_pct": 3.356
},
{
"coin": "XRP",
"dominance_pct": 3.086
},
{
"coin": "SOL",
"dominance_pct": 1.702
},
{
"coin": "TRX",
"dominance_pct": 1.346
},
{
"coin": "FIGR_HELOC",
"dominance_pct": 0.867
},
{
"coin": "STETH",
"dominance_pct": 0.657
}
],
"others_pct": 11.832
},
"meta": {
"timestamp": "2026-06-11T16:46:50.467Z",
"request_id": "4471c320-42cf-4a42-977b-4762cc083bc7"
},
"status": "ok",
"message": "Dominance retrieved successfully",
"success": true
}