Vai al contenuto
GET /v1/markets

Every shekel pair with last price and volume

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/bit2c-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}