/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/liquid-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/liquid-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/liquid-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/liquid-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": {
"sample": {
"mempool_tx": 1,
"tip_height": 3929588
},
"source": "public Blockstream esplora API (blockstream.info/liquid/api), keyless",
"service": "liquid-api",
"endpoints": {
"GET /v1/fees": "Live fee estimates in sat/vB by confirmation target.",
"GET /v1/info": "Live network status: tip height and the current mempool (count, vsize, fees).",
"GET /v1/meta": "This document.",
"GET /v1/block": "A block by height: hash, timestamp, tx count, size, weight (height; omit for tip)."
},
"description": "Read the Liquid Network (Bitcoin's confidential sidechain) live from the public Blockstream esplora API: the live network status (tip height, mempool count/vsize/fees), any block by height (or the tip) with its hash, timestamp, transaction count, size and weight, and the live fee estimates by confirmation target. The on-chain layer for Liquid wallets, asset issuers and explorers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:31.041Z",
"request_id": "9e31624f-3473-407c-b6d1-106745401068"
},
"status": "ok",
"message": "Meta",
"success": true
}