Zum Inhalt springen
GET /v1/companies

Public companies ranked by holdings

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

Beispiel-Response

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

{
    "data": {
        "coin": "bitcoin",
        "count": 50,
        "total": 175,
        "source": "CoinGecko",
        "companies": [
            {
                "name": "Strategy",
                "rank": 1,
                "symbol": "MSTR.US",
                "country": "US",
                "holdings": 845256,
                "pct_of_supply": 4.025,
                "entry_value_usd": 63968974080,
                "current_value_usd": 51892936934.81,
                "avg_entry_price_usd": 75680
            },
            {
                "name": "XXI",
                "rank": 2,
                "symbol": "XXI.US",
                "country": "US",
                "holdings": 43514,
                "pct_of_supply": 0.207,
                "entry_value_usd": 0,
                "current_value_usd": 2671461968.66,
                "avg_entry_price_usd": 0
            },
            {
                "name": "Metaplanet",
                "rank": 3,
                "symbol": "3350.T",
                "country": "JP",
                "holdings": 40177,
                "pct_of_supply": 0.191,
                "entry_value_usd": 3588937607.45,
                "current_value_usd": 2466592993.4,
                "avg_entry_price_usd": 89328.16
            },
            {
                "name": "MARA Holdings",
                "rank": 4,
                "symbol": "MARA.US",
                "country": "US",
                "holdings": 35303,
                "pct_of_supply": 0.168,
                "entry_value_usd": 0,
                "current_value_usd": 2167362731.07,
                "avg_entry_price_usd": 0
            },
            {
                "name": "Bitcoin Standard Treasury Company",
                "rank": 5,
                "symbol": "CEPO.US",
                "country": "US",
                "holdings": 30021,
                "pct_of_supply": 0.143,
                "entry_value_usd": 0,
                "current_value_usd": 1843084059.41,
                "avg_entry_price_usd": 0
            },
            {
                "name": "Galaxy Digital Holdings Ltd",
                "rank": 6,
                "symbol": "GLXY.US",
                "country": "US",
                "holdings": 25723,
                "pct_of_supply": 0.122,
                "entry_value_usd": 2282988000,
                "current_value_usd": 1579216257.29,
                "avg_entry_price_usd": 88752.79
            },
            {
                "name": "Bullish",
                "rank": 7,
                "symbol": "BLSH.US",
                "country": "US",
                "holdings": 23300,
                "pct_of_supply": 0.111,
                "entry_value_usd": 0,
                "current_value_usd": 1430460630.37,
                "avg_entry_price_usd": 0
            },
            {
                "name": "Strive",
                "rank": 8,
                "symbol": "ASST.US",
                "country": "US",
                "holdings": 19000,
           
…