/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/poloniex-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poloniex-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poloniex-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/poloniex-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Markets are BASE_QUOTE (e.g. BTC_USDT). change_24h_pct is the 24h change; quote_volume_24h is in the quote currency. Book limit snaps to 5/10/20/50/100/150.",
"source": "Poloniex API (api.poloniex.com, live)",
"service": "poloniex-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USDT, limit=10).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one market (market=BTC_USDT or symbol=BTC"e=USDT).",
"GET /v1/trades": "Recent public trades with price, size and taker side (market=BTC_USDT, limit=25).",
"GET /v1/markets": "Tradable pairs with scales and minimum order size (quote=USDT optional).",
"GET /v1/tickers": "All markets for a quote ranked by 24h quote volume (quote=USDT, limit=50)."
},
"description": "Live spot market data from Poloniex, one of the longest-running global crypto exchanges. The ticker endpoint returns a market's last price, open, 24h high/low, best bid/ask, 24h change, base/quote volume, trade count and mark price; the tickers endpoint ranks every market for a quote currency by 24h quote volume; the markets endpoint lists tradable pairs with scales and minimum order size; the book endpoint returns live order-book depth; the trades endpoint returns recent public trades with price, size and taker side. Live, no key, nothing stored. A distinct venue, separate from other exchange feeds.",
"market_count": 907,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:21.313Z",
"request_id": "000107fd-1a12-4546-b4c5-78716b0e5f78"
},
"status": "ok",
"message": "Meta",
"success": true
}