Skip to content
GET /v1/ticker

A pair ticker

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/gateio-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/gateio-api/v1/ticker" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gateio-api/v1/ticker", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gateio-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/gateio-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": 62011.4,
        "bid": 62011.3,
        "last": 62011.3,
        "pair": "BTC_USDT",
        "source": "Gate.io",
        "spread": 0.1,
        "low_24h": 60773.7,
        "high_24h": 63844.9,
        "base_volume": 27510.5769287432,
        "quote_volume": 1706107957.5514176,
        "change_24h_pct": -1.98
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:44.798Z",
        "request_id": "955a4dec-f6fd-4ed4-942b-dcbdbed6f58f"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}