Skip to content
GET /v1/tickers

Top symbols by 24h volume

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "count": 25,
        "market": "spot",
        "source": "Bitget",
        "tickers": [
            {
                "ask": 870.68,
                "bid": 870.5,
                "last": 870.59,
                "time": "2026-06-10T22:56:55.542Z",
                "market": "spot",
                "symbol": "RMUUSDT",
                "low_24h": 870.23,
                "high_24h": 913.97,
                "change_24h_pct": -4.976,
                "base_volume_24h": 55286403.27411,
                "quote_volume_24h": 50266491843.7
            },
            {
                "ask": 689.65,
                "bid": 689.52,
                "last": 689.68,
                "time": "2026-06-10T22:56:56.148Z",
                "market": "spot",
                "symbol": "RQQQUSDT",
                "low_24h": 689.67,
                "high_24h": 702.61,
                "change_24h_pct": -2.256,
                "base_volume_24h": 64751224.9245,
                "quote_volume_24h": 45334404608.77
            },
            {
                "ask": 722.92,
                "bid": 722.73,
                "last": 722.88,
                "time": "2026-06-10T22:56:55.543Z",
                "market": "spot",
                "symbol": "RSPYUSDT",
                "low_24h": 722.78,
                "high_24h": 732.51,
                "change_24h_pct": -1.63,
                "base_volume_24h": 60022160.3169,
                "quote_volume_24h": 43833631475.55
            },
            {
                "ask": 199.6,
                "bid": 199.5,
                "last": 199.53,
                "time": "2026-06-10T22:56:55.536Z",
                "market": "spot",
                "symbol": "RNVDAUSDT",
                "low_24h": 199.47,
                "high_24h": 203.94,
                "change_24h_pct": -3.287,
                "base_volume_24h": 161109156.019,
                "quote_volume_24h": 32698955969.34
            },
            {
                "ask": 379.5,
                "bid": 379.3,
                "last": 379.63,
                "time": "2026-06-10T22:56:56.145Z",
                "market": "spot",
                "symbol": "RTSLAUSDT",
                "low_24h": 379.63,
                "high_24h": 386.72,
                "change_24h_pct": -4.046,
                "base_volume_24h": 49508019.0115,
                "quote_volume_24h": 19111337989.7
            },
            {
                "ask": 173.4,
                "bid": 173.14,
                "last": 172.91,
                "time": "2026-06-10T22:56:55.574Z",
                "market": "spot",
                "symbol": "RSOXLUSDT",
                "low_24h": 172.91,
                "high_24h": 191.01,
                "change_24h_pct": -12.192,
                "base_volume_24h": 93776869.659,
                "quote_volume_24h": 17885884173.9
            },
            {
                "ask": 1604.8,
                "bid": 1602,
                "last": 1602.75,
                "time"
…