/v1/summary
All four cycle indicators + aggregate cycle read
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}