Zum Inhalt springen
GET /v1/markets

Tradable pairs with base/quote

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 47,
        "quote": "JPY",
        "source": "bitbank",
        "markets": [
            {
                "base": "ADA",
                "quote": "JPY",
                "market": "ADA_JPY"
            },
            {
                "base": "APE",
                "quote": "JPY",
                "market": "APE_JPY"
            },
            {
                "base": "ARB",
                "quote": "JPY",
                "market": "ARB_JPY"
            },
            {
                "base": "ASTR",
                "quote": "JPY",
                "market": "ASTR_JPY"
            },
            {
                "base": "ATOM",
                "quote": "JPY",
                "market": "ATOM_JPY"
            },
            {
                "base": "AVAX",
                "quote": "JPY",
                "market": "AVAX_JPY"
            },
            {
                "base": "AXS",
                "quote": "JPY",
                "market": "AXS_JPY"
            },
            {
                "base": "BAT",
                "quote": "JPY",
                "market": "BAT_JPY"
            },
            {
                "base": "BCC",
                "quote": "JPY",
                "market": "BCC_JPY"
            },
            {
                "base": "BNB",
                "quote": "JPY",
                "market": "BNB_JPY"
            },
            {
                "base": "BOBA",
                "quote": "JPY",
                "market": "BOBA_JPY"
            },
            {
                "base": "BTC",
                "quote": "JPY",
                "market": "BTC_JPY"
            },
            {
                "base": "CHZ",
                "quote": "JPY",
                "market": "CHZ_JPY"
            },
            {
                "base": "CYBER",
                "quote": "JPY",
                "market": "CYBER_JPY"
            },
            {
                "base": "DAI",
                "quote": "JPY",
                "market": "DAI_JPY"
            },
            {
                "base": "DOGE",
                "quote": "JPY",
                "market": "DOGE_JPY"
            },
            {
                "base": "DOT",
                "quote": "JPY",
                "market": "DOT_JPY"
            },
            {
                "base": "ENJ",
                "quote": "JPY",
                "market": "ENJ_JPY"
            },
            {
                "base": "ETH",
                "quote": "JPY",
                "market": "ETH_JPY"
            },
            {
                "base": "FLR",
                "quote": "JPY",
                "market": "FLR_JPY"
            },
            {
                "base": "GALA",
                "quote": "JPY",
                "market": "GALA_JPY"
            },
            {
                "base": "GRT",
                "quote": "JPY",
                "market": "GRT_JPY"
            },
            {
                "base": "IMX",
            
…