/v1/puell
Puell Multiple (miner revenue / 365-day average)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/bitcoinvaluation-api/v1/puell" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitcoinvaluation-api/v1/puell", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitcoinvaluation-api/v1/puell");
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/puell",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The Puell Multiple = today's USD miner revenue / its 365-day average — a miner-side cycle gauge. Below ~0.5 marks miner capitulation and historical bottoms; above ~4 marks tops. Computed from the blockchain.com miners-revenue series. Updates daily, cached ~10m.",
"zone": "value",
"source": "blockchain.com charts (miners-revenue), keyless",
"indicator": "Puell Multiple",
"ma_365d_usd": 43737803,
"puell_multiple": 0.629,
"daily_miner_revenue_usd": 27490584
},
"meta": {
"timestamp": "2026-06-12T19:35:44.436Z",
"request_id": "fa353d57-8ed3-451f-8442-8d3cb922ca0a"
},
"status": "ok",
"message": "Puell Multiple retrieved successfully",
"success": true
}