Zum Inhalt springen
GET /v1/instruments

Tradable spot pairs with tick sizes

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cryptocom-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 430,
        "quote": "USD",
        "source": "Crypto.com",
        "instruments": [
            {
                "base": "1INCH",
                "quote": "USD",
                "market": "1INCH_USD",
                "tradable": true,
                "qty_tick_size": 0.1,
                "quote_decimals": 5,
                "price_tick_size": 1.0e-5,
                "quantity_decimals": 1
            },
            {
                "base": "2Z",
                "quote": "USD",
                "market": "2Z_USD",
                "tradable": true,
                "qty_tick_size": 1,
                "quote_decimals": 5,
                "price_tick_size": 1.0e-5,
                "quantity_decimals": 0
            },
            {
                "base": "A2Z",
                "quote": "USD",
                "market": "A2Z_USD",
                "tradable": true,
                "qty_tick_size": 10,
                "quote_decimals": 7,
                "price_tick_size": 1.0e-7,
                "quantity_decimals": 0
            },
            {
                "base": "AAVE",
                "quote": "USD",
                "market": "AAVE_USD",
                "tradable": true,
                "qty_tick_size": 0.001,
                "quote_decimals": 3,
                "price_tick_size": 0.001,
                "quantity_decimals": 3
            },
            {
                "base": "ACH",
                "quote": "USD",
                "market": "ACH_USD",
                "tradable": true,
                "qty_tick_size": 10,
                "quote_decimals": 6,
                "price_tick_size": 1.0e-6,
                "quantity_decimals": 0
            },
            {
                "base": "ACS",
                "quote": "USD",
                "market": "ACS_USD",
                "tradable": true,
                "qty_tick_size": 100,
                "quote_decimals": 7,
                "price_tick_size": 1.0e-7,
                "quantity_decimals": 0
            },
            {
                "base": "ACT",
                "quote": "USD",
                "market": "ACT_USD",
                "tradable": true,
                "qty_tick_size": 1,
                "quote_decimals": 5,
                "price_tick_size": 1.0e-5,
                "quantity_decimals": 0
            },
            {
                "base": "ADA",
                "quote": "USD",
                "market": "ADA_USD",
                "tradable": true,
                "qty_tick_size": 0.1,
                "quote_decimals": 5,
                "price_tick_size": 1.0e-5,
                "quantity_decimals": 1
            },
            {
                "base": "ADI",
                "quote": "USD",
                "market": "ADI_USD",
                "tradable": true,
                "qty_tick_size": 0.1,
                "quote_decimals": 5,
                "price_tick_size": 1.0e-5,
                "quantity_decimals": 1
            },
  
…