Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/hiveengine-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/hiveengine-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hiveengine-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hiveengine-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/hiveengine-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "symbol is a Hive-Engine token symbol (LEO, BEE, SWAP.HIVE, SPS). Prices and market volume are denominated in HIVE, the base-chain coin. Quantities are on-chain decimals.",
        "source": "Public Hive-Engine RPC (api.hive-engine.com/rpc, live JSON-RPC over the tokens & market contracts)",
        "service": "hiveengine-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/token": "Token registry record — issuer, precision, supply, staking (symbol=LEO).",
            "GET /v1/market": "Live DEX market metrics — last price in HIVE, bid/ask, 24h volume, day change (symbol=LEO).",
            "GET /v1/trades": "Most recent fills on the token's HIVE market (symbol=LEO, limit=20, max 100).",
            "GET /v1/richlist": "Largest holders of a token with balance, stake and delegations (symbol=LEO, limit=20, max 100)."
        },
        "description": "Live data from the Hive-Engine smart-contract sidechain (a Layer-2 token registry and decentralized exchange on the Hive blockchain). The token endpoint returns a token's on-chain registry record (issuer, supply, staking); the market endpoint returns its live DEX market metrics (last price in HIVE, bid/ask, 24h volume, day change); the richlist endpoint returns the largest holders with balance, stake and delegations; the trades endpoint returns the most recent fills (buyer, seller, quantity, price, time). Live, no key, nothing stored. The token-sidechain / on-chain-DEX view — per-token supply, holders and internal market — distinct from the single-venue exchange tickers, cross-exchange coin-markets and base-chain on-chain APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:59.782Z",
        "request_id": "98ed715c-7224-4ff0-bf26-1ae22899507e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}