Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata and endpoint list

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/btcturk-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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&quote=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
}