Skip to content
GET /v1/markets

Markets/exchanges a coin trades on

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "count": 25,
        "coin_id": "80",
        "markets": [
            {
                "base": "ETH",
                "time": 1781521567,
                "price": 1735.73,
                "quote": "USDT",
                "volume": 672472.304,
                "exchange": "Bitunix",
                "price_usd": 1735.73,
                "volume_usd": 1167230352.2219
            },
            {
                "base": "ETH",
                "time": 1781521567,
                "price": 1744.3,
                "quote": "USDT",
                "volume": 279347.499,
                "exchange": "AscendEX (BitMax)",
                "price_usd": 1744.3,
                "volume_usd": 487265842.5057
            },
            {
                "base": "ETH",
                "time": 1781521569,
                "price": 1734.29,
                "quote": "USDT",
                "volume": 270437.7654,
                "exchange": "Binance",
                "price_usd": 1734.29,
                "volume_usd": 469017512.15557
            },
            {
                "base": "ETH",
                "time": 1781521505,
                "price": 1737.21,
                "quote": "USDT",
                "volume": 245525.4968,
                "exchange": "Tapbit",
                "price_usd": 1737.21,
                "volume_usd": 426529348.29593
            },
            {
                "base": "ETH",
                "time": 1781521502,
                "price": 1737.21,
                "quote": "USDT",
                "volume": 225856.77238,
                "exchange": "Pionex",
                "price_usd": 1737.21,
                "volume_usd": 392360643.54626
            },
            {
                "base": "ETH",
                "time": 1781521568,
                "price": 1738.77,
                "quote": "USDT",
                "volume": 185577.4559,
                "exchange": "Gate",
                "price_usd": 1738.77,
                "volume_usd": 322676512.99524
            },
            {
                "base": "ETH",
                "time": 1781521567,
                "price": 1736.21,
                "quote": "USDT",
                "volume": 183513.01101,
                "exchange": "MEXC Global",
                "price_usd": 1736.21,
                "volume_usd": 318617124.84567
            },
            {
                "base": "ETH",
                "time": 1781521563,
                "price": 1736.619,
                "quote": "USDT",
                "volume": 145610.98298,
                "exchange": "OrangeX",
                "price_usd": 1736.619,
                "volume_usd": 252870799.65174
            },
            {
                "base": "ETH",
                "time": 1781521564,
                "price": 1737.21,
                "quote": "USDT",
                "volume": 132343.04756,
                "exchange": "Whitebit",
                "price_usd": 1737.21,
                "volume_usd": 229907665.65
…