/v1/markets
An exchange trading pairs by 24h volume
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/cryptoexchanges-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoexchanges-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoexchanges-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/cryptoexchanges-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": 50,
"source": "CoinPaprika",
"markets": [
{
"base": "USDC",
"pair": "USDC/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 0.99993801,
"volume_24h_usd": 1658213544.34
},
{
"base": "Bitcoin",
"pair": "BTC/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 61399.21130589,
"volume_24h_usd": 983513382.26
},
{
"base": "Bitcoin",
"pair": "BTC/USDC",
"quote": "USDC",
"outlier": false,
"category": "Spot",
"price_usd": 61412.53824524,
"volume_24h_usd": 471171679
},
{
"base": "Ethereum",
"pair": "ETH/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 1617.55735556,
"volume_24h_usd": 469381835.84
},
{
"base": "Ethereum",
"pair": "ETH/USDC",
"quote": "USDC",
"outlier": false,
"category": "Spot",
"price_usd": 1617.78162691,
"volume_24h_usd": 230158022.95
},
{
"base": "USD1",
"pair": "USD1/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 0.99930849,
"volume_24h_usd": 190362035.96
},
{
"base": "Solana",
"pair": "SOL/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 62.79214983,
"volume_24h_usd": 182416553.94
},
{
"base": "Zcash",
"pair": "ZEC/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 407.36956783,
"volume_24h_usd": 178791707.14
},
{
"base": "Tether Gold",
"pair": "XAUT/USDT",
"quote": "Tether",
"outlier": false,
"category": "Spot",
"price_usd": 4047.58557531,
"volume_24h_usd": 158909292.42
},
{
"base": "Bitcoin",
"pair": "BTC/USD1",
"quote": "USD1",
"outlier": false,
"category": "Spot",
"price_usd": 61405.80890881,
"volume_2
…