/v1/summary
All four cycle indicators + aggregate cycle read
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}