Μετάβαση στο περιεχόμενο
GET /v1/pairs

All tradable markets with precision & limits

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/bitopro-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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,
                "
…