/v1/meta
Service metadata and endpoint list
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/btcturk-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btcturk-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btcturk-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/btcturk-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": "Pairs are NUMERATOR+DENOMINATOR (e.g. BTCTRY). volume is in base units; change_24h_pct is the daily move.",
"source": "BTCTurk API (api.btcturk.com/api/v2, live)",
"service": "btcturk-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one pair (pair=BTCTRY or symbol=BTC"e=TRY).",
"GET /v1/tickers": "All pairs for a quote ranked by 24h volume (quote=TRY, limit=50).",
"GET /v1/orderbook": "Live market depth — best bid/ask and spread (pair=BTCTRY, limit=20)."
},
"pair_count": 365,
"description": "Live spot market data from BTCTurk, Turkey's largest and oldest crypto exchange and one of the highest-volume venues for the Turkish lira. The ticker endpoint returns a pair's last price, best bid/ask, 24h high/low, open, average and 24h change (in Turkish lira, USDT or Bitcoin); the tickers endpoint ranks every pair for a quote currency by 24h volume; the orderbook endpoint returns live market depth. Live, no key, nothing stored. A distinct Turkish venue with lira pricing, separate from other exchange feeds.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:30.738Z",
"request_id": "02643b93-2439-4f7e-b360-3bd432c668eb"
},
"status": "ok",
"message": "Meta",
"success": true
}