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

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

Get an API key

Code snippets

curl "https://api.oanor.com/digifinex-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/digifinex-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/digifinex-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/digifinex-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": "DigiFinex",
        "tickers": [
            {
                "ask": 62714,
                "bid": 62713.99,
                "base": "BTC",
                "last": 62714,
                "quote": "USDT",
                "market": "BTC_USDT",
                "spread": 0.01,
                "low_24h": 60780,
                "high_24h": 62999.69,
                "change_24h_pct": 1.61,
                "base_volume_24h": 8150.7953695,
                "quote_volume_24h": 504747150.19
            },
            {
                "ask": 1653.77,
                "bid": 1653.76,
                "base": "ETH",
                "last": 1653.76,
                "quote": "USDT",
                "market": "ETH_USDT",
                "spread": 0.01,
                "low_24h": 1604.77,
                "high_24h": 1667.22,
                "change_24h_pct": 0.83,
                "base_volume_24h": 141252.7519,
                "quote_volume_24h": 231181371.08
            },
            {
                "ask": 0.9999,
                "bid": 0.9995,
                "base": "USD1",
                "last": 0.9998,
                "quote": "USDT",
                "market": "USD1_USDT",
                "spread": 0.0004,
                "low_24h": 0.9989,
                "high_24h": 1.0004,
                "change_24h_pct": 0.01,
                "base_volume_24h": 79388012.9,
                "quote_volume_24h": 79359522.67
            },
            {
                "ask": 1.001,
                "bid": 1.0009,
                "base": "USDC",
                "last": 1.001,
                "quote": "USDT",
                "market": "USDC_USDT",
                "spread": 0.0001,
                "low_24h": 1.0004,
                "high_24h": 1.0012,
                "change_24h_pct": 0.04,
                "base_volume_24h": 74416803,
                "quote_volume_24h": 74465938.6
            },
            {
                "ask": 55.857,
                "bid": 55.844,
                "base": "HYPE",
                "last": 55.857,
                "quote": "USDT",
                "market": "HYPE_USDT",
                "spread": 0.013,
                "low_24h": 52.643,
                "high_24h": 58.326,
                "change_24h_pct": -0.14,
                "base_volume_24h": 342126.1256,
                "quote_volume_24h": 19014125.61
            },
            {
                "ask": 5.2145,
                "bid": 4.9395,
                "base": "INJ",
                "last": 5.1094,
                "quote": "USDT",
                "market": "INJ_USDT",
                "spread": 0.275,
                "low_24h": 4.7891,
                "high_24h": 5.3167,
                "change_24h_pct": -2.49,
                "base_volume_24h": 3408201.1,
                "quote_volume_24h": 17235730.73
            },
            {
                "ask": 0.00559,
                "bid": 0.00533,
          
…