API Deposu
Open catalogBlogMCPTest LabSubmit APISupportGitHub
Back to blog
Open Data
LISTICLE
tcmb-evds

Best Open Data APIs for Türkiye-focused Apps in 2026

A practical shortlist of free Turkish open-data APIs covering economic data, statistics, weather, earthquakes, and prayer times.

Apr 25, 20265 min read940 words

Turkish state institutions publish more open data than most developers realize — exchange rates, statistics, earthquake feeds, weather, and religious calendar data are all available through official endpoints, free, and without a sales process. This shortlist covers the APIs that real Turkish apps tend to integrate.

Quick comparison

APIBest forAuthFree tier signal
TCMB EVDSComprehensive economic time seriesAPI key (header)Free
TCMB Daily Rates (XML)Daily FX rate displayNoneFree
TÜİKStatistical datasets (population, social, economic)NoneFree
KandilliRecent earthquake list (HTML feed)NoneFree
AFADOfficial structured earthquake eventsNoneFree
MGMTürkiye-specific weather (XML)NoneFree
ImsakiyemDiyanet-sourced prayer timesNoneFree

What "open" actually means here

For a Turkish open-data API to qualify for this list:

  • It is published by an official institution (or a community mirror of one).
  • You can use it for development and small production workloads without a paid plan.
  • The endpoint is documented well enough to integrate in an afternoon.

Most Turkish state-published data is intended for public use, with attribution recommended. For redistribution at scale or commercial repackaging, double-check each source's terms.

API options

TCMB EVDS — economic time series

TCMB EVDS is the Central Bank of Türkiye's data delivery system, and the most comprehensive economic API the country exposes. It covers FX rates, inflation, interest rates, monetary aggregates, and dozens of macroeconomic series going back decades.

Use it when:

  • You are building anything that needs Turkish macro indicators.
  • You want historical time series, not just today's value.
  • You are doing analysis, dashboards, or research.

Integration complexity is medium — you need to register for a key, learn the series IDs, and handle the response format (CSV/JSON/XML), but the documentation is solid.

TCMB Daily Exchange Rates (XML)

TCMB Daily Exchange Rates is the simpler sibling: a single XML file at /kurlar/today.xml with the official daily exchange rates, no key required.

Use it when:

  • You just need today's USD/TRY, EUR/TRY, GBP/TRY, etc., for a widget or display.
  • You don't want to register for an API key.
  • You are happy parsing XML.

For a basic FX display this is the canonical source — every Turkish accounting tool, ERP, and dashboard pulls from here.

TÜİK — statistical datasets

TÜİK Veri Portalı is the Turkish Statistical Institute's data portal, exposing official datasets in JSON and CSV. Topics span population, demographics, employment, education, household surveys, and many more.

Use it when:

  • You are doing demographic or socioeconomic analysis.
  • You need authoritative sources for academic work or research projects.
  • You want to build dashboards over Turkish census-level data.

The portal is browser-first; programmatic access requires reading dataset URLs from the catalog rather than a single REST API. Worth the friction for the data quality.

Kandilli — recent earthquakes

Kandilli Son Depremler is the Boğaziçi University Kandilli Observatory's recent earthquake list. It is the source most Turkish news outlets use for live quake reports.

Use it when:

  • You want a quick list of recent earthquakes by region.
  • You are building a hobby earthquake tracker or notification app.
  • You can tolerate HTML parsing — this is a webpage, not a JSON API.

For anything more structured, prefer AFAD below.

AFAD — structured earthquake events

AFAD Earthquake API is the official structured earthquake event feed from the Disaster and Emergency Management Authority. It supports XML, CSV, KML, GeoJSON, and JSON, with time-window and geospatial filters.

Use it when:

  • You need stable structured data for production.
  • You want geospatial filtering (bounding box or radius).
  • You are doing analysis by magnitude or depth.

A time window is required on every request — that's the one quirk to plan for.

MGM — Türkiye-specific weather

MGM reads forecast XML feeds published on the official Meteoroloji Genel Müdürlüğü website. For Türkiye-specific weather, no global API will match the local accuracy.

Use it when:

  • You are building a weather widget for a Turkish product.
  • You need city-level temperature data for Türkiye.
  • You are happy with XML feeds and a defensive parser.

The caveat: this is unofficial in API terms — MGM publishes XML on their site, but does not document it as a stable API. Build defensively and monitor for breakage.

Imsakiyem — prayer times

Imsakiyem serves Diyanet-sourced prayer times (suhoor, iftar, the five daily prayers) with a city-district hierarchy and period-based endpoints (daily, weekly, monthly, yearly).

Use it when:

  • You are building a Ramadan calendar, prayer reminder, or religious app.
  • You need TR-specific city-district resolution.
  • You want a keyless API.

For Türkiye-targeted apps, this is the obvious source — every Turkish prayer-time app pulls from data of this shape.

Picking the right one

Match the API to the use case:

  • FX rates, simple display → TCMB Daily XML.
  • FX rates, analysis or charts → TCMB EVDS.
  • Demographics or statistics → TÜİK.
  • Earthquake live feed → Kandilli (quick) or AFAD (structured).
  • Local weather → MGM (with a global fallback).
  • Prayer times → Imsakiyem.

Most Turkish products end up combining 2–3 of these — for example, a dashboard might pull TCMB EVDS for charts and AFAD for live earthquake alerts.

When not to use these APIs

These are excellent free options, but they are not the right fit when you need:

  • A formal SLA or support contract. None of these come with one. For mission-critical production, plan for redundancy.
  • Data redistribution at scale. Public data is not the same as licensed-for-redistribution data. Read the original source's terms before reselling or republishing.
  • Stable schemas you can ignore for years. Some of these (Kandilli, MGM) are HTML/XML scrapes, and the structure can change. Monitor your parsers.

Related API Deposu entries

  • TCMB EVDS
  • TCMB Daily Exchange Rates
  • TÜİK
  • Kandilli Son Depremler
  • AFAD Earthquake API
  • MGM
  • Imsakiyem Ezan Vakti API

Sources

  • TCMB EVDS user guide
  • TCMB Daily Exchange Rates XML
  • TÜİK Veri Portalı
  • Kandilli Son Depremler
  • AFAD Earthquake event filter
  • Meteoroloji Genel Müdürlüğü
  • Imsakiyem Ezan Vakti API

Frequently Asked Questions

›Which API is best for Turkish exchange rates?

For a quick daily rate display, TCMB's XML feed at /kurlar/today.xml is the simplest option — no key required. For historical series, charts, or analysis, TCMB EVDS is the comprehensive choice and is also free.

›Are these APIs really free for commercial use?

TCMB, TÜİK, MGM, Kandilli, and AFAD data is publicly published by Turkish state institutions and is free to use, with attribution recommended. Imsakiyem is a community service. Always re-check the original source's usage terms before redistributing data commercially.

›Is there an official API for earthquake data in Türkiye?

AFAD is the official source and exposes a structured event-filter API supporting XML, CSV, KML, GeoJSON, and JSON. Kandilli is also reliable but its feed requires HTML parsing — use AFAD when you need a stable structure.

›What is the best API for prayer times in Türkiye?

Imsakiyem serves Diyanet-sourced prayer times with a clean city-district hierarchy and supports daily, weekly, monthly, and yearly endpoints — no API key required.

Article info

min read5
words940
Related APIs7

Related APIs

tcmb-evds
tcmb-kurlar-xml
tuik-data
kandilli-deprem
afad-deprem
mgm-weather
imsakiyem-ezan-vakti

Sources

TCMB EVDS user guide

https://evds2.tcmb.gov.tr/help/videos/EVDS_Web_Servis_Kullanim_Kilavuzu.pdf

TCMB Daily Exchange Rates XML

https://www.tcmb.gov.tr/kurlar/today.xml

TÜİK Veri Portalı

https://data.tuik.gov.tr/

Kandilli Son Depremler

http://www.koeri.boun.edu.tr/scripts/lst0.asp

AFAD Earthquake event filter

https://deprem.afad.gov.tr/event-filter

Meteoroloji Genel Müdürlüğü

https://mgm.gov.tr/

Imsakiyem Ezan Vakti API

https://ezanvakti.imsakiyem.com/api-docs/

Related posts

Explore all blog posts
Continue reading

Best Free Anime and Manga APIs for Developers in 2026

A practical shortlist of free anime and manga APIs covering search, discovery, libraries, and GraphQL — all without API keys.

Continue reading

Best Free Movie and TV APIs for Developers in 2026

A practical shortlist of free movie and TV metadata APIs covering search, posters, ratings, and schedules.

Continue reading

Best Free News APIs for Developers in 2026

A practical shortlist of free news APIs — covering general headlines, premium publisher archives, and developer-focused tech news.

Explore more API guides

Browse API Deposu guides backed by real catalog data, practical comparisons, and developer-focused implementation notes.

Explore all blog posts

This catalog was verified from public sources as of April 9, 2026. Always review official documentation before integration.

AboutTerms of ServicePrivacyCookiesX