/v1/global
Whole-market snapshot
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/cryptomarket-api/v1/global" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomarket-api/v1/global", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomarket-api/v1/global");
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/cryptomarket-api/v1/global",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"markets": 1482,
"dominance": [
{
"coin": "BTC",
"dominance_pct": 55.93
},
{
"coin": "ETH",
"dominance_pct": 9
},
{
"coin": "USDT",
"dominance_pct": 8.39
},
{
"coin": "BNB",
"dominance_pct": 3.62
},
{
"coin": "USDC",
"dominance_pct": 3.37
},
{
"coin": "XRP",
"dominance_pct": 3.18
},
{
"coin": "SOL",
"dominance_pct": 1.71
},
{
"coin": "TRX",
"dominance_pct": 1.38
},
{
"coin": "FIGR_HELOC",
"dominance_pct": 0.87
},
{
"coin": "STETH",
"dominance_pct": 0.66
}
],
"updated_at": 1781036348,
"btc_dominance_pct": 55.93,
"eth_dominance_pct": 9,
"total_market_cap_usd": 2225866078571,
"total_volume_24h_usd": 95151978892,
"active_cryptocurrencies": 17348,
"market_cap_change_24h_pct": -1.81
},
"meta": {
"timestamp": "2026-06-09T20:26:45.938Z",
"request_id": "96e780c8-e96f-4d29-832e-7ef5d11b6070"
},
"status": "ok",
"message": "Global market retrieved successfully",
"success": true
}