Ir al contenido
GET /v1/markets

Tradable pairs with base/quote

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/bitbank-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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