/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}