/v1/summary
All four cycle indicators + aggregate cycle read
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}