Naar de inhoud
GET /v1/pairs

All tradable markets with precision & limits

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bitopro-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 19,
        "pairs": [
            {
                "base": "shib",
                "pair": "shib_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 5500000000,
                "min_base_amount": 100000,
                "quote_precision": 6,
                "min_market_buy_quote": 70
            },
            {
                "base": "bnb",
                "pair": "bnb_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 100000000,
                "min_base_amount": 0.01,
                "quote_precision": 1,
                "min_market_buy_quote": 155
            },
            {
                "base": "xaut",
                "pair": "xaut_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 10,
                "min_base_amount": 0.001,
                "quote_precision": 0,
                "min_market_buy_quote": 100
            },
            {
                "base": "ape",
                "pair": "ape_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 10000000,
                "min_base_amount": 1,
                "quote_precision": 2,
                "min_market_buy_quote": 130
            },
            {
                "base": "usdc",
                "pair": "usdc_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 100000000,
                "min_base_amount": 0.01,
                "quote_precision": 3,
                "min_market_buy_quote": 1
            },
            {
                "base": "kaia",
                "pair": "kaia_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 200000,
                "min_base_amount": 1,
                "quote_precision": 4,
                "min_market_buy_quote": 100
            },
            {
                "base": "eth",
                "pair": "eth_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 100000000,
                "min_base_amount": 0.0001,
                "quote_precision": 0,
                "min_market_buy_quote": 15
            },
            {
                "base": "ltc",
                "pair": "ltc_twd",
                "quote": "twd",
                "base_precision": 8,
                "in_maintenance": false,
                "max_base_amount": 100000000,
                "min_base_amount": 0.001,
                "quote_precision": 1,
                "
…