/v1/meta
Service description & endpoints
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/mempool-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mempool-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mempool-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/mempool-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "mempool-api",
"endpoints": {
"GET /v1/tx": "Transaction detail (txid=).",
"GET /v1/fees": "Recommended fees (sat/vB).",
"GET /v1/meta": "This document.",
"GET /v1/block": "Block detail by height= or hash=.",
"GET /v1/price": "Current BTC price.",
"GET /v1/blocks": "The most recent blocks.",
"GET /v1/mining": "Mining-pool share (period=24h|1w|1m|…).",
"GET /v1/address": "Address stats (address=).",
"GET /v1/mempool": "Current mempool state & fee histogram.",
"GET /v1/hashrate": "Network hashrate (period=).",
"GET /v1/difficulty": "Difficulty-adjustment status."
},
"description": "Live Bitcoin blockchain & mempool data via mempool.space: recommended fees, mempool state, recent blocks and block detail, address and transaction lookup, the difficulty adjustment, mining-pool share, network hashrate and the BTC price. Real on-chain data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:19:56.239Z",
"request_id": "09dea5db-fce1-482b-bb4e-e0fea56982df"
},
"status": "ok",
"message": "Meta",
"success": true
}