Skip to content
GET /v1/markets

Supported coins and fiat quote currencies

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "coins": [
            "aave",
            "ada",
            "audm",
            "ausd",
            "avax",
            "bat",
            "bch",
            "bonk",
            "btc",
            "comp",
            "dai",
            "doge",
            "dot",
            "etc",
            "eth",
            "grt",
            "hype",
            "link",
            "ltc",
            "mana",
            "matic",
            "mkr",
            "pengu",
            "pepe",
            "render",
            "rlusd",
            "sand",
            "shib",
            "snx",
            "sol",
            "trump",
            "trx",
            "uni",
            "usdc",
            "usdt",
            "wif",
            "xaut",
            "xlm",
            "xrp",
            "yfi",
            "zrx"
        ],
        "fiats": [
            "aud",
            "nzd",
            "sgd",
            "usd"
        ],
        "venue": "Independent Reserve",
        "source": "Independent Reserve",
        "fiat_count": 4,
        "pairs_total": 164,
        "primary_count": 41
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:49.106Z",
        "request_id": "4f62c5ae-9cf0-44d4-a14d-09ef56e4a73f"
    },
    "status": "ok",
    "message": "Markets retrieved successfully",
    "success": true
}