/v1/markets
Tradable pairs with base/quote
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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",
…