/v1/markets
List spot and FX products
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}