Aller au contenu
GET /v1/company

Find a holder by name, ticker or country

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/cryptotreasury-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}