/v1/companies
Public companies ranked by holdings
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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,
…