/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/htx-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/htx-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/htx-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/htx-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "HTX API (api.huobi.pro, live)",
"service": "htx-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "A symbol's 24h ticker (symbol=btcusdt or btc).",
"GET /v1/symbols": "Search spot trading pairs (q=btc, limit=50).",
"GET /v1/tickers": "Top symbols by 24h quote volume (quote=usdt, limit=25)."
},
"description": "Live spot market data from HTX (formerly Huobi), one of the longest-running centralised crypto exchanges and a leading venue in Asian markets. The ticker endpoint returns a symbol's 24h last price, open, high, low, best bid/ask, base and quote volume, trade count and change; the tickers endpoint returns the top symbols by 24h quote volume; the symbols endpoint searches HTX's spot trading pairs. Live, no key, nothing stored. Distinct centralised-exchange venue, separate from other exchange feeds and from DEX, lending and oracle APIs — this is HTX's own spot ticker and market layer.",
"symbol_count": 629,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:38.192Z",
"request_id": "91875d36-24a5-49a7-aafd-02bdb3699d86"
},
"status": "ok",
"message": "Meta",
"success": true
}