/v1/markets
Every shekel pair with last price and 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/bit2c-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bit2c-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bit2c-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/bit2c-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": {
"fiat": "ILS",
"count": 6,
"venue": "Bit2C",
"source": "Bit2C",
"markets": [
{
"coin": "btc",
"fiat": "ILS",
"last": 190292,
"pair": "BTC/ILS",
"average_24h": 189323.82795600043,
"volume_24h_coin": 1.35502202
},
{
"coin": "eth",
"fiat": "ILS",
"last": 4930,
"pair": "ETH/ILS",
"average_24h": 4972.717703427267,
"volume_24h_coin": 12.91177427
},
{
"coin": "ltc",
"fiat": "ILS",
"last": 132.68,
"pair": "LTC/ILS",
"average_24h": 129.60819646796358,
"volume_24h_coin": 229.75227502
},
{
"coin": "bch",
"fiat": "ILS",
"last": 849.98246223,
"pair": "BCH/ILS",
"average_24h": 850.0120959696266,
"volume_24h_coin": 0
},
{
"coin": "grin",
"fiat": "ILS",
"last": 1.13,
"pair": "GRIN/ILS",
"average_24h": 1.1275911709564588,
"volume_24h_coin": 0
},
{
"coin": "usdc",
"fiat": "ILS",
"last": 3,
"pair": "USDC/ILS",
"average_24h": 3.0207444554258633,
"volume_24h_coin": 96321.9954996
}
]
},
"meta": {
"timestamp": "2026-06-12T01:42:24.561Z",
"request_id": "ea85bcae-5ecb-4890-a4c0-e35ef1147e29"
},
"status": "ok",
"message": "Markets retrieved successfully",
"success": true
}