Zum Inhalt springen
GET /v1/quote

Latest daily quote (TRY & USD)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/borsaistanbul-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "low": 301,
        "date": "2026-06-12",
        "high": 311,
        "note": "The latest daily quote for one Borsa Istanbul stock — close, weighted average, high/low, volume and market cap in Turkish lira, plus the close and market cap in US dollars, and the day's change. Pass hisse (the BIST ticker, e.g. THYAO).",
        "close": 307.75,
        "change": 14.5,
        "source": "Borsa Istanbul",
        "symbol": "THYAO",
        "average": 306.815,
        "close_usd": 6.6658,
        "volume_try": 26865029766,
        "change_percent": 4.94,
        "market_cap_try": 424695000000,
        "market_cap_usd": 9198744606.74741
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:09.344Z",
        "request_id": "57158eeb-062b-46e7-9a3b-00cdf12ef6eb"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}