API · /turkey-api

Turkey Market API

degraded 3,951 Subscribers

Live Turkish market prices for the lira (TRY): foreign currencies, the famous Turkish gold market (gram, quarter/half/full and Republic coins, 14/18/22-carat, silver) and key market instruments (the BIST 100 index, Bitcoin in lira, Brent crude and the gold ounce). Turkey's high-inflation economy makes physical gold a primary store of value, and the gram-altın and coin prices quoted here are what the bazaar trades on. The currencies endpoint returns every foreign currency against the lira with buy/sell and daily change; the gold endpoint returns the full Turkish gold/silver market; the quote endpoint returns any single instrument by code (also BIST 100, Bitcoin, Brent); the convert endpoint converts between any currency and the lira. Read live, nothing stored. This is Turkey's own live market FX + gold-bazaar layer — distinct from the central bank's official reference rates.

api.oanor.com/turkey-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/turkey-api/openapi.json
/api/turkey-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

degraded
Uptime
60.00%
Server probes · 24h
Avg latency
149 ms
Server probes · 24h
Subscribers
3,951
active
Total calls
5
last 7 days
status Full status page → · 10 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 3,000 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 3k calls/month
  • 2 req/sec
  • All endpoints
  • No credit card
Sign in to subscribe

Starter

€8.00 /month

  • 75,000 calls / month
  • 12 requests / second
  • Hard cap (429 above quota, no overage)
  • 75k calls/month
  • 12 req/sec
  • Email support
Sign in to subscribe

Pro

€22.00 /month

  • 380,000 calls / month
  • 35 requests / second
  • Hard cap (429 above quota, no overage)
  • 380k calls/month
  • 35 req/sec
  • Priority support
Sign in to subscribe

Scale

€50.00 /month

  • 2,400,000 calls / month
  • 110 requests / second
  • Hard cap (429 above quota, no overage)
  • 2.4M calls/month
  • 110 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Paribu Exchange API

Live spot market data from Paribu, Turkey's largest crypto exchange, served straight from its public ticker feed — no key on the data, nothing cached, nothing stored. Look up any market for its last price, best bid/ask and spread, 24h high/low/average, 24h change and base/quote volume; rank every market for a quote currency (Turkish lira TL/TRY, or USDT) by 24h turnover; or list the tradable pairs with their base and quote. Markets are addressed BASE_QUOTE (BTC_TL); TRY is accepted as an alias for the lira. This is the Paribu venue specifically — a distinct Turkish-lira price feed for a high-adoption, high-volatility market, separate from the USD/USDT-quoted exchange APIs in the catalogue. Ticker-only: Paribu exposes no public order book, so the best bid/ask travel inside the ticker.

api.oanor.com/paribu-api

BTCTurk API

Live spot market data from BTCTurk, Turkey's largest and oldest crypto exchange and one of the highest-volume venues for the Turkish lira — served straight from its public API, no key, nothing cached. Get a pair's last price, best bid/ask, 24h high/low, open, average and 24h change (in Turkish lira, USDT or Bitcoin); rank every pair for a quote currency by 24h volume; and read live market depth with the best bid/ask and spread. A distinct Turkish venue with lira pricing, separate from other exchange feeds. Pairs are NUMERATOR+DENOMINATOR (e.g. BTCTRY).

api.oanor.com/btcturk-api

Central Bank of Türkiye FX API

Live official exchange-rate data for the Turkish lira (TRY) from the Central Bank of the Republic of Türkiye (TCMB) — straight from its public daily rate XML as clean JSON. Unusually, the TCMB publishes four rates per currency: forex buying, forex selling, banknote buying and banknote selling. Get all of these for every published currency against the lira, for the latest or any past business day, normalised to one unit; pull a single currency's four rates, mid and the inverse; convert an amount between any two published currencies (including TRY) at the forex mid rate; or list the quoted currencies. Read live from the TCMB, nothing cached. This is the official Turkish-lira central-bank rate, with the forex/banknote split few other feeds expose — distinct from the ECB, BCRA, BCRP, NRB and other central-bank feeds and from market mid-rates: the TCMB's own lira rates.

api.oanor.com/tcmb-api

Currency Converter API

Live foreign-exchange conversion across 160+ world currencies — the plain, developer-friendly converter. Get the latest rates for any base currency, convert an amount between any two currencies, read the rate (and inverse) for a single pair, or list every supported currency. Rates are read live from an open exchange-rate source that aggregates a broad set of feeds and covers far more currencies than ECB-only data — including emerging-market and exotic currencies such as the Nigerian naira, Indian rupee or Vietnamese dong. This is the everyday convert / latest-rates utility a checkout, invoice, pricing page or travel app needs — distinct from the FX analytics APIs in the catalogue (historical date ranges, pip and position-size calculators, triangular-arbitrage path maths, currency indices), which compute on rates rather than simply converting them.

api.oanor.com/currencyconverter-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Turkey Market API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Turkey Market API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Turkey Market API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Turkey Market API cost?
Turkey Market API has a free tier with 100 calls / month. Paid plans start at €8.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Turkey Market API GDPR-compliant?
All requests to Turkey Market API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/turkey-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/turkey-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/turkey-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/turkey-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.