Ir al contenido
GET /v1/meta

Service description & endpoints

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/mempool-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}