Vai al contenuto
GET /v1/meta

Endpoints & source

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/borsaistanbul-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/borsaistanbul-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/borsaistanbul-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/borsaistanbul-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

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

{
    "data": {
        "sample": {
            "thyao_close": 307.75
        },
        "source": "İş Yatırım public BIST market data (isyatirim.com.tr), keyless",
        "service": "borsaistanbul-api",
        "endpoints": {
            "GET /v1/usd": "Dollar-denominated price history (hisse, days).",
            "GET /v1/meta": "This document.",
            "GET /v1/quote": "Latest daily quote (hisse).",
            "GET /v1/history": "Daily price history in TRY (hisse, days).",
            "GET /v1/performance": "Computed 1w/1mo/3mo returns in TRY & USD (hisse)."
        },
        "description": "Live and historical price data for Turkish equities on Borsa Istanbul (BIST) with no key: the latest daily quote for any stock (close, average, high/low, volume, market cap in TRY and USD), the daily price history over any window, a dollar-denominated price history, and computed period returns (1w/1mo/3mo) in both TRY and USD. The Turkey-equities / price-history / dual-currency layer for trading dashboards and research. Distinct from other exchange readers — BIST time-series with a TRY/USD view. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:09.862Z",
        "request_id": "2b18d517-db68-4d09-9764-ed59f4486e11"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}