/v1/treasuries
Public-company BTC/ETH holdings
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/treasuries" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomarket-api/v1/treasuries", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomarket-api/v1/treasuries");
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/treasuries",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"coin": "bitcoin",
"companies": [
{
"name": "Strategy",
"symbol": "MSTR.US",
"country": "US",
"holdings": 845256,
"current_value_usd": 52404453122,
"pct_of_total_supply": 4.025
},
{
"name": "XXI",
"symbol": "XXI.US",
"country": "US",
"holdings": 43514,
"current_value_usd": 2697794956,
"pct_of_total_supply": 0.207
},
{
"name": "Metaplanet",
"symbol": "3350.T",
"country": "JP",
"holdings": 40177,
"current_value_usd": 2490906557,
"pct_of_total_supply": 0.191
},
{
"name": "MARA Holdings",
"symbol": "MARA.US",
"country": "US",
"holdings": 35303,
"current_value_usd": 2188726739,
"pct_of_total_supply": 0.168
},
{
"name": "Bitcoin Standard Treasury Company",
"symbol": "CEPO.US",
"country": "US",
"holdings": 30021,
"current_value_usd": 1861251606,
"pct_of_total_supply": 0.143
},
{
"name": "Galaxy Digital Holdings Ltd",
"symbol": "GLXY.US",
"country": "US",
"holdings": 25723,
"current_value_usd": 1594782820,
"pct_of_total_supply": 0.122
},
{
"name": "Bullish",
"symbol": "BLSH.US",
"country": "US",
"holdings": 23300,
"current_value_usd": 1444560888,
"pct_of_total_supply": 0.111
},
{
"name": "Strive",
"symbol": "ASST.US",
"country": "US",
"holdings": 19000,
"current_value_usd": 1177968106,
"pct_of_total_supply": 0.09
},
{
"name": "SpaceX",
"symbol": null,
"country": "US",
"holdings": 18712,
"current_value_usd": 1160112589,
"pct_of_total_supply": 0.089
},
{
"name": "Riot Platforms",
"symbol": "RIOT.US",
"country": "US",
"holdings": 15680,
"current_value_usd": 972133679,
"pct_of_total_supply": 0.075
},
{
"name": "Coinbase Global",
"symbol": "COIN.US",
"country": "US",
"holdings": 15389,
"current_value_usd": 954092167,
"pct_of_total_supply": 0.073
…