Zum Inhalt springen
GET /v1/meta

Service metadata and endpoint list

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

Beispiel-Response

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

{
    "data": {
        "source": "CoinGecko public-treasury API (api.coingecko.com, live)",
        "service": "cryptotreasury-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/company": "Find a holder by name, ticker or country (coin=bitcoin, q=strategy).",
            "GET /v1/summary": "Aggregate corporate holdings, value & dominance (coin=bitcoin|ethereum).",
            "GET /v1/overview": "Bitcoin vs Ethereum corporate treasuries side by side.",
            "GET /v1/companies": "Public companies ranked by holdings (coin=bitcoin|ethereum, limit=50)."
        },
        "description": "Live data on the public companies that hold Bitcoin and Ethereum on their balance sheets, from the public CoinGecko feed. The companies endpoint ranks every public company by how much of the coin it holds, with current and entry value, average entry price, country and share of total supply; the summary endpoint returns aggregate corporate holdings, USD value and market-cap dominance; the company endpoint finds a holder by name, ticker or country; the overview endpoint compares Bitcoin and Ethereum corporate treasuries side by side. Live, no key, nothing stored. The corporate crypto-treasury layer, distinct from price and exchange feeds — it answers who holds how much, and what they paid.",
        "upstream_status": "ok",
        "bitcoin_companies": 175
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:14.309Z",
        "request_id": "2171818e-fb32-4e73-ab31-d121e4000879"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}