/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.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/btse-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btse-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btse-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/btse-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": 290,
"quote": "USD",
"source": "BTSE",
"markets": [
{
"base": "1CAT",
"quote": "USD",
"active": true,
"market": "1CAT-USD"
},
{
"base": "1INCH",
"quote": "USD",
"active": true,
"market": "1INCH-USD"
},
{
"base": "AAVE",
"quote": "USD",
"active": true,
"market": "AAVE-USD"
},
{
"base": "AB",
"quote": "USD",
"active": true,
"market": "AB-USD"
},
{
"base": "ACH",
"quote": "USD",
"active": true,
"market": "ACH-USD"
},
{
"base": "ACT",
"quote": "USD",
"active": true,
"market": "ACT-USD"
},
{
"base": "ADA",
"quote": "USD",
"active": true,
"market": "ADA-USD"
},
{
"base": "AEVO",
"quote": "USD",
"active": true,
"market": "AEVO-USD"
},
{
"base": "AGLD",
"quote": "USD",
"active": true,
"market": "AGLD-USD"
},
{
"base": "AGRI",
"quote": "USD",
"active": true,
"market": "AGRI-USD"
},
{
"base": "AIAT",
"quote": "USD",
"active": true,
"market": "AIAT-USD"
},
{
"base": "AIN",
"quote": "USD",
"active": true,
"market": "AIN-USD"
},
{
"base": "AIXBT",
"quote": "USD",
"active": true,
"market": "AIXBT-USD"
},
{
"base": "ALGO",
"quote": "USD",
"active": true,
"market": "ALGO-USD"
},
{
"base": "ALICE",
"quote": "USD",
"active": true,
"market": "ALICE-USD"
},
{
"base": "ANIME",
"quote": "USD",
"active": true,
"market": "ANIME-USD"
},
{
"base": "ANKR",
"quote": "USD",
"active": true,
"market": "ANKR-USD"
},
{
"base": "APE",
"quote": "USD",
"active": true,
"market": "APE-U
…