Ir al contenido
GET /v1/summary

All four cycle indicators + aggregate cycle read

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/bitcoinvaluation-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/bitcoinvaluation-api/v1/summary" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitcoinvaluation-api/v1/summary", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitcoinvaluation-api/v1/summary");
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/bitcoinvaluation-api/v1/summary",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

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

{
    "data": {
        "note": "All four Bitcoin cycle-valuation indicators in one call — Mayer Multiple, Puell Multiple, NVT ratio and Stock-to-Flow — with an aggregate cycle_read derived from the two cleanest mean-reverting gauges (Mayer + Puell). A quick 'where are we in the cycle' snapshot. See each indicator's own endpoint for detail and thresholds. Updates daily, cached ~10m.",
        "source": "Yahoo Finance + blockchain.com charts, keyless",
        "indicator": "Bitcoin valuation dashboard",
        "nvt_ratio": 211.8,
        "price_usd": 63604.69,
        "cycle_read": "below fair value",
        "stock_to_flow": 122.3,
        "mayer_multiple": 0.817,
        "puell_multiple": 0.629
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:44.237Z",
        "request_id": "14f7e2ac-9879-4596-be32-286fa8c239ca"
    },
    "status": "ok",
    "message": "Summary retrieved successfully",
    "success": true
}