/v1/markets
Tradable pairs with base/quote
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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",
…