/v1/currencies
Every foreign currency vs the lira
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/turkey-api/v1/currencies" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/turkey-api/v1/currencies", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/turkey-api/v1/currencies");
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/turkey-api/v1/currencies",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 63,
"quote": "TRY",
"source": "finans.truncgil.com",
"updated": "2026-06-11 19:50:01",
"currencies": [
{
"code": "AED",
"name": null,
"quote": "TRY",
"buying": 12.5633,
"selling": 12.567,
"change_pct": 0.04
},
{
"code": "ALL",
"name": null,
"quote": "TRY",
"buying": 0.5591,
"selling": 0.5592,
"change_pct": -0.11
},
{
"code": "ARS",
"name": null,
"quote": "TRY",
"buying": 0.0323,
"selling": 0.0323,
"change_pct": 0.34
},
{
"code": "AUD",
"name": null,
"quote": "TRY",
"buying": 32.268,
"selling": 32.2833,
"change_pct": 0
},
{
"code": "AZN",
"name": null,
"quote": "TRY",
"buying": 27.1459,
"selling": 27.1525,
"change_pct": 0.06
},
{
"code": "BAM",
"name": null,
"quote": "TRY",
"buying": 27.2227,
"selling": 27.2294,
"change_pct": -1.18
},
{
"code": "BGN",
"name": null,
"quote": "TRY",
"buying": 27.1768,
"selling": 27.4044,
"change_pct": 0.22
},
{
"code": "BHD",
"name": null,
"quote": "TRY",
"buying": 122.3371,
"selling": 122.3668,
"change_pct": 0.02
},
{
"code": "BRL",
"name": null,
"quote": "TRY",
"buying": 8.9648,
"selling": 8.967,
"change_pct": 0.8
},
{
"code": "CAD",
"name": null,
"quote": "TRY",
"buying": 32.9464,
"selling": 32.9638,
"change_pct": -0.38
},
{
"code": "CHF",
"name": null,
"quote": "TRY",
"buying": 57.6274,
"selling": 57.6558,
"change_pct": -0.04
},
{
"code": "CLP",
"name": null,
"quote": "TRY",
"buying": 0.0508,
"selling": 0.0508,
"change_pct": 0.65
},
{
"code": "CNY",
"name": null,
"quote": "TRY"
…