/v1/quote
Latest daily quote (TRY & USD)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}