Skip to content
GET /v1/currencies

TCMB list of quoted currencies

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/tcmb-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/tcmb-api/v1/currencies" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tcmb-api/v1/currencies", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tcmb-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/tcmb-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": 22,
        "source": "Türkiye Cumhuriyet Merkez Bankası (TCMB)",
        "currencies": [
            {
                "name": "UNITED ARAB EMIRATES DIRHAM",
                "unit": 1,
                "currency": "AED"
            },
            {
                "name": "AUSTRALIAN DOLLAR",
                "unit": 1,
                "currency": "AUD"
            },
            {
                "name": "AZERBAIJANI NEW MANAT",
                "unit": 1,
                "currency": "AZN"
            },
            {
                "name": "CANADIAN DOLLAR",
                "unit": 1,
                "currency": "CAD"
            },
            {
                "name": "SWISS FRANK",
                "unit": 1,
                "currency": "CHF"
            },
            {
                "name": "CHINESE RENMINBI",
                "unit": 1,
                "currency": "CNY"
            },
            {
                "name": "DANISH KRONE",
                "unit": 1,
                "currency": "DKK"
            },
            {
                "name": "EURO",
                "unit": 1,
                "currency": "EUR"
            },
            {
                "name": "POUND STERLING",
                "unit": 1,
                "currency": "GBP"
            },
            {
                "name": "JAPENESE YEN",
                "unit": 100,
                "currency": "JPY"
            },
            {
                "name": "SOUTH KOREAN WON",
                "unit": 1,
                "currency": "KRW"
            },
            {
                "name": "KUWAITI DINAR",
                "unit": 1,
                "currency": "KWD"
            },
            {
                "name": "KAZAKHSTAN TENGE",
                "unit": 1,
                "currency": "KZT"
            },
            {
                "name": "NORWEGIAN KRONE",
                "unit": 1,
                "currency": "NOK"
            },
            {
                "name": "PAKISTANI RUPEE",
                "unit": 1,
                "currency": "PKR"
            },
            {
                "name": "QATARI RIAL",
                "unit": 1,
                "currency": "QAR"
            },
            {
                "name": "NEW LEU",
                "unit": 1,
                "currency": "RON"
            },
            {
                "name": "RUSSIAN ROUBLE",
                "unit": 1,
                "currency": "RUB"
            },
            {
                "name": "SAUDI RIYAL",
                "unit": 1,
                "currency": "SAR"
            },
            {
                "name": "SWEDISH KRONA",
                "unit": 1,
                "currency": "SEK"
            },
            {
                "name": "US DOLLAR",
                "unit": 1,
                "currency": "USD"
            },
            {
                "name": "SPECIAL DRAWING RIGHT (SDR)                       ",
                
…