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/dash-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/dash-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dash-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dash-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/dash-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": {
        "blocks": 2486316,
        "source": "Dash Insight explorer API (insight.dash.org, live)",
        "service": "dash-api",
        "consensus": "X11 PoW + masternode tier",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "A block by height or hash (height=2486000 or hash=64 hex).",
            "GET /v1/address": "An address's DASH balance, received, sent and tx count (address=X...).",
            "GET /v1/network": "Chain state — block height, difficulty, connections, protocol version, relay fee.",
            "GET /v1/transaction": "A transaction's value, fee, counts and InstantSend lock (txid=64 hex)."
        },
        "description": "Live on-chain data from the Dash (DASH) blockchain, a payments-focused cryptocurrency, via the public Dash Insight explorer API. Dash uses X11 proof-of-work plus a second tier of collateralised masternodes that power InstantSend (near-instant locked payments) and ChainLocks, and an on-chain treasury. The network endpoint returns the chain state (block height, difficulty, connections, protocol version, relay fee); the block endpoint returns a block by height or hash; the address endpoint returns an address's DASH balance, total received and sent and transaction count; the transaction endpoint returns a transaction's block, value, fee, input/output counts and its InstantSend lock status. Live, no key, nothing stored. Distinct from the Bitcoin, Decred, Ergo, Nervos and other on-chain APIs and from price feeds — this is Dash's own X11, masternode-tier and InstantSend ledger.",
        "native_token": "DASH",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:20.708Z",
        "request_id": "dc93a417-b4af-4ec1-98e3-81047f174eef"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}