Skip to content
GET /v1/tickers

All markets for a quote ranked by 24h turnover

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

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

Get an API key

Code snippets

curl "https://api.oanor.com/btcmarkets-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btcmarkets-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btcmarkets-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/btcmarkets-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": 42,
        "quote": "AUD",
        "source": "BTC Markets",
        "tickers": [
            {
                "ask": 89515.86,
                "bid": 89429.47,
                "base": "BTC",
                "last": 89478.81,
                "quote": "AUD",
                "market": "BTC-AUD",
                "spread": 86.39,
                "low_24h": 86400,
                "high_24h": 89822.99,
                "open_24h": 87752.84,
                "change_24h": 1725.97,
                "change_24h_pct": 1.97,
                "base_volume_24h": 30.40152336,
                "quote_volume_24h": 2675589.36
            },
            {
                "ask": 1.591,
                "bid": 1.5891,
                "base": "XRP",
                "last": 1.5883,
                "quote": "AUD",
                "market": "XRP-AUD",
                "spread": 0.0019,
                "low_24h": 1.5552,
                "high_24h": 1.6126,
                "open_24h": 1.5919,
                "change_24h": -0.0036,
                "change_24h_pct": -0.23,
                "base_volume_24h": 1194606.73370214,
                "quote_volume_24h": 1889774.21
            },
            {
                "ask": 2361,
                "bid": 2358.7,
                "base": "ETH",
                "last": 2358.21,
                "quote": "AUD",
                "market": "ETH-AUD",
                "spread": 2.3,
                "low_24h": 2292.45,
                "high_24h": 2370,
                "open_24h": 2335.62,
                "change_24h": 22.59,
                "change_24h_pct": 0.97,
                "base_volume_24h": 180.89270126,
                "quote_volume_24h": 421425.3
            },
            {
                "ask": 1.4267,
                "bid": 1.4255,
                "base": "USDT",
                "last": 1.4266,
                "quote": "AUD",
                "market": "USDT-AUD",
                "spread": 0.0012,
                "low_24h": 1.4209,
                "high_24h": 1.4298,
                "open_24h": 1.4248,
                "change_24h": 0.0018,
                "change_24h_pct": 0.13,
                "base_volume_24h": 189075.37367441,
                "quote_volume_24h": 269587.7
            },
            {
                "ask": 1.4279,
                "bid": 1.4263,
                "base": "USDC",
                "last": 1.4263,
                "quote": "AUD",
                "market": "USDC-AUD",
                "spread": 0.0016,
                "low_24h": 1.4234,
                "high_24h": 1.52,
                "open_24h": 1.4242,
                "change_24h": 0.0021,
                "change_24h_pct": 0.15,
                "base_volume_24h": 160892.21297747,
                "quote_volume_24h": 231320.04
            },
            {
                "ask": 92.77,
                "bid": 92.62,
                "base": "SOL",
                "last": 92.61,
                "quote": "AUD",
                
…