/v1/overview
Bitcoin vs Ethereum corporate treasuries side by side
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/cryptotreasury-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptotreasury-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptotreasury-api/v1/overview");
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/cryptotreasury-api/v1/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "CoinGecko",
"bitcoin": {
"coin": "bitcoin",
"top_holder": {
"name": "Strategy",
"symbol": "MSTR.US",
"holdings": 840447
},
"total_holdings": 1282506.9317682658,
"companies_count": 179,
"total_value_usd": 82907029794.61,
"market_cap_dominance": 6.11
},
"ethereum": {
"coin": "ethereum",
"top_holder": {
"name": "BitMine Immersion",
"symbol": "BMNR.US",
"holdings": 5815164
},
"total_holdings": 7828518.229976,
"companies_count": 33,
"total_value_usd": 14984007897.22,
"market_cap_dominance": 6.49
}
},
"meta": {
"timestamp": "2026-08-18T23:10:40.162Z",
"request_id": "0549e342-d46d-44d0-8bfd-d760f00cac68"
},
"status": "ok",
"message": "Overview retrieved successfully",
"success": true
}