/v1/company
Find a holder by name, ticker or country
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/cryptotreasury-api/v1/company" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptotreasury-api/v1/company", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptotreasury-api/v1/company");
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/company",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"coin": "bitcoin",
"count": 3,
"query": "strategy",
"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": "AsiaStrategy",
"rank": 128,
"symbol": "SORA.US",
"country": "HK",
"holdings": 30,
"pct_of_supply": 0,
"entry_value_usd": 0,
"current_value_usd": 1841794.8,
"avg_entry_price_usd": 0
},
{
"name": "Hamak Strategy",
"rank": 137,
"symbol": "HAMA.L",
"country": "VG",
"holdings": 20,
"pct_of_supply": 0,
"entry_value_usd": 2355935.4,
"current_value_usd": 1227863.2,
"avg_entry_price_usd": 117796.77
}
]
},
"meta": {
"timestamp": "2026-06-10T22:56:14.217Z",
"request_id": "f44636c8-4f87-4146-8371-eb5baa1e89bf"
},
"status": "ok",
"message": "Company retrieved successfully",
"success": true
}