Zum Inhalt springen
GET /v1/summary

Aggregate corporate holdings, value and dominance

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cryptotreasury-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/cryptotreasury-api/v1/summary" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptotreasury-api/v1/summary", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptotreasury-api/v1/summary");
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/summary",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "coin": "bitcoin",
        "source": "CoinGecko",
        "top_holder": {
            "name": "Strategy",
            "symbol": "MSTR.US",
            "holdings": 845256
        },
        "total_holdings": 1277540.3313804658,
        "companies_count": 175,
        "total_value_usd": 78432238100.66,
        "market_cap_dominance": 6.08
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:17.666Z",
        "request_id": "507ac174-5d57-48c8-9f10-0ad0677eb71b"
    },
    "status": "ok",
    "message": "Summary retrieved successfully",
    "success": true
}