/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bitcoinvaluation-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitcoinvaluation-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitcoinvaluation-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "All endpoints take no parameters. Ratios are unitless; prices in USD. Indicators update daily; a ~10-minute cache fronts the upstreams. The S2F model price is a controversial, historically over-optimistic model included for reference only — not a forecast.",
"source": "Yahoo Finance (BTC-USD daily) + blockchain.com charts, keyless, live",
"service": "bitcoinvaluation-api",
"endpoints": {
"GET /v1/nvt": "NVT ratio (market cap / 90-day on-chain transaction value).",
"GET /v1/s2f": "Stock-to-Flow scarcity ratio (+ debated model price).",
"GET /v1/meta": "This document.",
"GET /v1/mayer": "Mayer Multiple (price / 200-day moving average).",
"GET /v1/puell": "Puell Multiple (miner revenue / 365-day average).",
"GET /v1/summary": "All four indicators + an aggregate cycle read."
},
"description": "Bitcoin cycle-timing valuation models, live and keyless — the derived indicators that tell you whether BTC is historically cheap or expensive right now, from price (Yahoo Finance) and on-chain data (blockchain.com). The mayer endpoint gives the Mayer Multiple (price / 200-day MA); puell the Puell Multiple (miner revenue / 365-day MA); nvt the NVT ratio (market cap / 90-day on-chain transaction value); s2f the Stock-to-Flow scarcity ratio (with the debated S2F model price clearly flagged); summary puts all four together with an aggregate cycle read. The valuation-model / cycle-indicator cut — distinct from the raw on-chain time-series feeds, the network-security feed (difficulty/hashrate/halving), the block-explorer feed and the crypto-macro correlation feed.",
"sample_mayer": {
"mayer_multiple": 0.817
},
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T19:35:53.647Z",
"request_id": "edb952a7-a3b9-48d4-9c69-2b5b5baf46e7"
},
"status": "ok",
"message": "Meta",
"success": true
}