Aller au contenu
GET /v1/meta

Service metadata and endpoint list

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/btcturk-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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