Ir al contenido
GET /v1/treasuries

Public-company BTC/ETH holdings

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/cryptomarket-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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