Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/ravencoin-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/ravencoin-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ravencoin-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ravencoin-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/ravencoin-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": {
        "model": "UTXO (asset chain)",
        "source": "Trezor Blockbook for Ravencoin (blockbook.ravencoin.org, live)",
        "service": "ravencoin-api",
        "consensus": "KAW-POW (ASIC-resistant PoW)",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "A block by height or hash (height=4404000 or hash=64 hex).",
            "GET /v1/address": "An address's RVN balance, received, sent and tx count (address=R...).",
            "GET /v1/network": "Chain state — best block, difficulty, sync status, node version.",
            "GET /v1/transaction": "A transaction's value, fee, counts and confirmations (txid=64 hex)."
        },
        "best_block": 4405363,
        "description": "Live on-chain data from the Ravencoin (RVN) blockchain, a UTXO chain purpose-built for issuing and transferring digital assets/tokens, secured by the ASIC-resistant KAW-POW proof-of-work, via the public Trezor Blockbook explorer. The network endpoint returns the chain state (best block height, difficulty, sync status, node version); the block endpoint returns a block by height or hash; the address endpoint returns an address's RVN balance, total received and sent and transaction count; the transaction endpoint returns a transaction's block, value, fee and confirmations. Live, no key, nothing stored. Distinct from the Bitcoin, Dash, Decred, Nervos and other on-chain APIs and from price feeds — this is Ravencoin's own KAW-POW asset-chain UTXO ledger.",
        "native_token": "RVN",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:18.728Z",
        "request_id": "d280da29-d1b1-4795-8d61-95ae3e67f6ad"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}