/v1/quote
Latest daily quote (TRY & USD)
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}