/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}