Skip to content
GET /v1/ticker

Ticker for one market

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/poloniex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "ask": 62765,
        "bid": 62747.74,
        "base": "BTC",
        "last": 62744.2,
        "quote": "USDT",
        "market": "BTC_USDT",
        "source": "Poloniex",
        "spread": 17.26,
        "low_24h": 60750.41,
        "high_24h": 63016.91,
        "open_24h": 61690.89,
        "timestamp": 1781164140118,
        "mark_price": 62728.22,
        "trade_count": 239876,
        "change_24h_pct": 1.71,
        "base_volume_24h": 4724.30371,
        "quote_volume_24h": 292733593.08
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:19.118Z",
        "request_id": "d09ec5f7-db28-48b2-a4b1-6087b112e1ba"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}