/v1/rates
TCMB forex + banknote buy/sell for every currency vs the lira
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/tcmb-api/v1/rates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tcmb-api/v1/rates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tcmb-api/v1/rates");
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/tcmb-api/v1/rates",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"base": "TRY",
"date": "2026-06-09",
"count": 22,
"rates": [
{
"name": "UNITED ARAB EMIRATES DIRHAM",
"unit": 1,
"currency": "AED",
"forex_mid": 12.5448,
"forex_buying": 12.4633,
"forex_selling": 12.6263,
"banknote_buying": null,
"banknote_selling": null
},
{
"name": "AUSTRALIAN DOLLAR",
"unit": 1,
"currency": "AUD",
"forex_mid": 32.50505,
"forex_buying": 32.3994,
"forex_selling": 32.6107,
"banknote_buying": 32.2504,
"banknote_selling": 32.8063
},
{
"name": "AZERBAIJANI NEW MANAT",
"unit": 1,
"currency": "AZN",
"forex_mid": 27.10255,
"forex_buying": 26.9264,
"forex_selling": 27.2787,
"banknote_buying": null,
"banknote_selling": null
},
{
"name": "CANADIAN DOLLAR",
"unit": 1,
"currency": "CAD",
"forex_mid": 33.0653,
"forex_buying": 32.9909,
"forex_selling": 33.1397,
"banknote_buying": 32.8689,
"banknote_selling": 33.2656
},
{
"name": "SWISS FRANK",
"unit": 1,
"currency": "CHF",
"forex_mid": 57.85565,
"forex_buying": 57.6705,
"forex_selling": 58.0408,
"banknote_buying": 57.584,
"banknote_selling": 58.1279
},
{
"name": "CHINESE RENMINBI",
"unit": 1,
"currency": "CNY",
"forex_mid": 6.80455,
"forex_buying": 6.7603,
"forex_selling": 6.8488,
"banknote_buying": null,
"banknote_selling": null
},
{
"name": "DANISH KRONE",
"unit": 1,
"currency": "DKK",
"forex_mid": 7.12325,
"forex_buying": 7.1058,
"forex_selling": 7.1407,
"banknote_buying": 7.1009,
"banknote_selling": 7.1572
},
{
"name": "EURO",
"unit": 1,
"currency": "EUR",
"forex_mid": 53.24195,
"forex_buying": 53.194,
"forex_selling": 53.2899,
"banknote_buying": 53.1568,
"banknote_selling": 53.3698
},
{
"name": "POUND STERLING",
"unit": 1,
"currency": "GBP",
"forex_mid": 61.6605,
…