Ir al contenido
GET /v1/markets

List spot and FX products

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/bitflyer-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/bitflyer-api/v1/markets" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitflyer-api/v1/markets", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitflyer-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/bitflyer-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": 8,
        "source": "bitFlyer",
        "markets": [
            {
                "base": "BTC",
                "quote": "JPY",
                "product": "BTC_JPY",
                "market_type": "Spot"
            },
            {
                "base": "XRP",
                "quote": "JPY",
                "product": "XRP_JPY",
                "market_type": "Spot"
            },
            {
                "base": "ETH",
                "quote": "JPY",
                "product": "ETH_JPY",
                "market_type": "Spot"
            },
            {
                "base": "XLM",
                "quote": "JPY",
                "product": "XLM_JPY",
                "market_type": "Spot"
            },
            {
                "base": "MONA",
                "quote": "JPY",
                "product": "MONA_JPY",
                "market_type": "Spot"
            },
            {
                "base": "ELF",
                "quote": "JPY",
                "product": "ELF_JPY",
                "market_type": "Spot"
            },
            {
                "base": "ETH",
                "quote": "BTC",
                "product": "ETH_BTC",
                "market_type": "Spot"
            },
            {
                "base": "BCH",
                "quote": "BTC",
                "product": "BCH_BTC",
                "market_type": "Spot"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:08.313Z",
        "request_id": "5ba852e7-069a-4c0f-8dfd-a68d6e68b9cb"
    },
    "status": "ok",
    "message": "Markets retrieved successfully",
    "success": true
}