Zum Inhalt springen
GET /v1/usd

Dollar-denominated price history

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

Beispiel-Response

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

{
    "data": {
        "days": 30,
        "note": "The dollar-denominated daily price history of one Borsa Istanbul stock — each day's USD close, USD high/low and USD market cap. Essential for seeing real returns in a high-inflation market. Pass hisse (e.g. THYAO) and days (5-365, default 30).",
        "count": 16,
        "source": "Borsa Istanbul",
        "symbol": "THYAO",
        "history": [
            {
                "date": "2026-05-18",
                "low_usd": 6.4683,
                "high_usd": 6.6111,
                "close_usd": 6.4683,
                "market_cap_usd": 8926280924.93674
            },
            {
                "date": "2026-05-20",
                "low_usd": 6.3554,
                "high_usd": 6.5857,
                "close_usd": 6.4706,
                "market_cap_usd": 8929413545.24697
            },
            {
                "date": "2026-05-21",
                "low_usd": 6.0075,
                "high_usd": 6.0075,
                "close_usd": 6.0075,
                "market_cap_usd": 8290341747.47916
            },
            {
                "date": "2026-05-22",
                "low_usd": 5.9493,
                "high_usd": 6.3602,
                "close_usd": 6.3109,
                "market_cap_usd": 8709047601.30864
            },
            {
                "date": "2026-05-25",
                "low_usd": 6.4751,
                "high_usd": 6.5736,
                "close_usd": 6.5079,
                "market_cap_usd": 8980955256.00809
            },
            {
                "date": "2026-05-26",
                "low_usd": 6.4587,
                "high_usd": 6.5189,
                "close_usd": 6.4915,
                "market_cap_usd": 8958314192.33748
            },
            {
                "date": "2026-06-01",
                "low_usd": 6.3389,
                "high_usd": 6.5458,
                "close_usd": 6.3498,
                "market_cap_usd": 8762658662.12999
            },
            {
                "date": "2026-06-02",
                "low_usd": 6.4075,
                "high_usd": 6.5381,
                "close_usd": 6.5327,
                "market_cap_usd": 9015129739.47581
            },
            {
                "date": "2026-06-03",
                "low_usd": 6.4524,
                "high_usd": 6.5666,
                "close_usd": 6.4632,
                "market_cap_usd": 8919268283.12899
            },
            {
                "date": "2026-06-04",
                "low_usd": 6.4499,
                "high_usd": 6.5586,
                "close_usd": 6.5206,
                "market_cap_usd": 8998368501.19643
            },
            {
                "date": "2026-06-05",
                "low_usd": 6.4197,
                "high_usd": 6.5284,
                "close_usd": 6.4578,
                "market_cap_usd": 8911724224.90438
            },
            {
                "date": "2026-06-08",
                "low_usd": 6.3453,
                "high_u
…