/v1/mempool
A chain mempool congestion
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/chainstats-api/v1/mempool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chainstats-api/v1/mempool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chainstats-api/v1/mempool");
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/chainstats-api/v1/mempool",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": null,
"chain": "bitcoin",
"source": "Blockchair",
"mempool_tps": 5.55,
"mempool_size_bytes": 74973996,
"mempool_transactions": 75488,
"mempool_total_fee_usd": 5700.0542,
"suggested_fee_per_byte_sat": 2,
"average_transaction_fee_usd_24h": 0.31120228183034293
},
"meta": {
"timestamp": "2026-06-10T22:56:11.914Z",
"request_id": "efc4df7d-0fbe-44a8-bfaf-a0eb261f751c"
},
"status": "ok",
"message": "Mempool retrieved successfully",
"success": true
}