Skip to content
GET /v1/ticker

Contract ticker incl. OI and funding

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

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

Get an API key

Code snippets

curl "https://api.oanor.com/bybit-api/v1/ticker" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bybit-api/v1/ticker", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bybit-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/bybit-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": 61984.1,
        "bid": 61984,
        "source": "Bybit",
        "symbol": "BTCUSDT",
        "low_24h": 60705,
        "category": "linear",
        "high_24h": 63840.7,
        "last_price": 61984,
        "mark_price": 61984,
        "volume_24h": 102335.639,
        "index_price": 62012.65,
        "funding_rate": 5.494e-5,
        "turnover_24h": 6367343183.8335,
        "open_interest": 55189.169,
        "change_24h_pct": -1.9987,
        "prev_price_24h": 63248.2,
        "funding_rate_pct": 0.005494,
        "next_funding_time": "2026-06-10T00:00:00.000Z",
        "open_interest_value": 3420845451.3
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:31.546Z",
        "request_id": "2fb972ac-7831-4ce3-8c50-08df417584af"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}