/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/bit2c-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bit2c-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bit2c-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "All pairs settle in the Israeli new shekel (ILS/NIS). coin is one of btc, eth, ltc, bch, grin, usdc.",
"source": "Bit2C public API (bit2c.co.il/Exchanges, live)",
"service": "bit2c-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Pair market summary (coin=btc).",
"GET /v1/trades": "Most recent executed trades (coin=btc, limit=20).",
"GET /v1/markets": "Every shekel pair with last price and 24h volume.",
"GET /v1/orderbook": "Live limit-order book with depth and spread (coin=btc, limit=20)."
},
"description": "Live order-book exchange data from Bit2C, the veteran Israeli crypto exchange, over its public API. The regional venue view for the Israeli new shekel (ILS / NIS) order books — Israeli on-exchange price discovery. ticker = a pair's market summary (last, live best bid/ask, spread, 24h volume, 24h average); orderbook = the live limit-order book (top bids/asks, cumulative depth, spread); trades = the most recent executed trades; markets = every shekel pair the venue trades. Live, no key, nothing stored. Distinct from the global-aggregate and the other regional-exchange APIs.",
"btc_ils_last": 190292,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:24.632Z",
"request_id": "3da0f559-20d0-4dec-b0e2-8df8d69ad8e3"
},
"status": "ok",
"message": "Meta",
"success": true
}