Skip to content
GET /v1/tickers

All spot markets for a quote by 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/xt-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/xt-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/xt-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/xt-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/xt-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": 50,
        "quote": "USDT",
        "source": "XT",
        "tickers": [
            {
                "base": "BTC",
                "last": 62714.01,
                "quote": "USDT",
                "market": "BTC_USDT",
                "low_24h": 60783.36,
                "high_24h": 62995.99,
                "open_24h": 61712.88,
                "timestamp": 1781164147214,
                "change_24h": 1001.13,
                "change_24h_pct": 1.62,
                "base_volume_24h": 8445.24928,
                "quote_volume_24h": 523088345.01
            },
            {
                "base": "ETH",
                "last": 1653.91,
                "quote": "USDT",
                "market": "ETH_USDT",
                "low_24h": 1604.39,
                "high_24h": 1667.49,
                "open_24h": 1639.35,
                "timestamp": 1781164148174,
                "change_24h": 14.56,
                "change_24h_pct": 0.88,
                "base_volume_24h": 147507.4581,
                "quote_volume_24h": 241326495.75
            },
            {
                "base": "USDC",
                "last": 1.0009,
                "quote": "USDT",
                "market": "USDC_USDT",
                "low_24h": 1.0004,
                "high_24h": 1.0012,
                "open_24h": 1.0005,
                "timestamp": 1781164147884,
                "change_24h": 0.0004,
                "change_24h_pct": 0.03,
                "base_volume_24h": 86250057,
                "quote_volume_24h": 86308447.89
            },
            {
                "base": "SOL",
                "last": 64.97,
                "quote": "USDT",
                "market": "SOL_USDT",
                "low_24h": 62.36,
                "high_24h": 65.76,
                "open_24h": 64.58,
                "timestamp": 1781164146840,
                "change_24h": 0.39,
                "change_24h_pct": 0.6,
                "base_volume_24h": 834658.406,
                "quote_volume_24h": 53605196.95
            },
            {
                "base": "NAS100",
                "last": 28828.56,
                "quote": "USDT",
                "market": "NAS100_USDT",
                "low_24h": 28249.76,
                "high_24h": 29219.89,
                "open_24h": 28933.31,
                "timestamp": 1781164148174,
                "change_24h": -104.75,
                "change_24h_pct": -0.36,
                "base_volume_24h": 1304.44749,
                "quote_volume_24h": 37397761.71
            },
            {
                "base": "AUD",
                "last": 0.7007,
                "quote": "USDT",
                "market": "AUD_USDT",
                "low_24h": 0.69858,
                "high_24h": 0.7038,
                "open_24h": 0.70225,
                "timestamp": 1781164148391,
                "change_24h": -0.00155,
                "change_24h_pct": -0.22,
                "base_volume_24h": 49567824.64,
    
…