/v1/markets
Markets/exchanges a coin trades on
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/coinlore-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinlore-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinlore-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/coinlore-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": 25,
"coin_id": "80",
"markets": [
{
"base": "ETH",
"time": 1781521567,
"price": 1735.73,
"quote": "USDT",
"volume": 672472.304,
"exchange": "Bitunix",
"price_usd": 1735.73,
"volume_usd": 1167230352.2219
},
{
"base": "ETH",
"time": 1781521567,
"price": 1744.3,
"quote": "USDT",
"volume": 279347.499,
"exchange": "AscendEX (BitMax)",
"price_usd": 1744.3,
"volume_usd": 487265842.5057
},
{
"base": "ETH",
"time": 1781521569,
"price": 1734.29,
"quote": "USDT",
"volume": 270437.7654,
"exchange": "Binance",
"price_usd": 1734.29,
"volume_usd": 469017512.15557
},
{
"base": "ETH",
"time": 1781521505,
"price": 1737.21,
"quote": "USDT",
"volume": 245525.4968,
"exchange": "Tapbit",
"price_usd": 1737.21,
"volume_usd": 426529348.29593
},
{
"base": "ETH",
"time": 1781521502,
"price": 1737.21,
"quote": "USDT",
"volume": 225856.77238,
"exchange": "Pionex",
"price_usd": 1737.21,
"volume_usd": 392360643.54626
},
{
"base": "ETH",
"time": 1781521568,
"price": 1738.77,
"quote": "USDT",
"volume": 185577.4559,
"exchange": "Gate",
"price_usd": 1738.77,
"volume_usd": 322676512.99524
},
{
"base": "ETH",
"time": 1781521567,
"price": 1736.21,
"quote": "USDT",
"volume": 183513.01101,
"exchange": "MEXC Global",
"price_usd": 1736.21,
"volume_usd": 318617124.84567
},
{
"base": "ETH",
"time": 1781521563,
"price": 1736.619,
"quote": "USDT",
"volume": 145610.98298,
"exchange": "OrangeX",
"price_usd": 1736.619,
"volume_usd": 252870799.65174
},
{
"base": "ETH",
"time": 1781521564,
"price": 1737.21,
"quote": "USDT",
"volume": 132343.04756,
"exchange": "Whitebit",
"price_usd": 1737.21,
"volume_usd": 229907665.65
…