Discover/Gov API
live

Gov APItuik.gov.tr

Access Turkey's official economic statistics from TÜİK: CPI, GDP, unemployment, industrial production, press releases, and time series data via 6 endpoints.

Endpoint health
verified 12h ago
get_popular_indicators
get_cpi_data
get_statistical_themes
get_press_release_detail
get_press_releases_list
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Gov API?

This API exposes 6 endpoints covering Turkish Statistical Institute (TÜİK) data — including key economic indicators, historical time series, a full press release catalog, and the nested statistical themes tree. The get_popular_indicators endpoint returns the six headline figures displayed on the TÜİK homepage (CPI, unemployment, GDP growth, industrial production, consumer confidence, and population), each with its latest value, period, and bulletin ID.

Try it

No input parameters required.

api.parse.bot/scraper/02835d6b-c0e3-4041-84c7-3e21add42bab/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/02835d6b-c0e3-4041-84c7-3e21add42bab/get_popular_indicators' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace tuik-gov-tr-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.turkish_statistical_institute_tuik_api import (
    Tuik, Indicator, ChartDataPoint, Theme, PressReleaseSummary,
    PressRelease, IndicatorType
)

tuik = Tuik()

# List current headline economic indicators
for indicator in tuik.indicators.list():
    print(indicator.baslik_en, indicator.deger, indicator.yil)

# Get CPI historical time series
for point in tuik.indicators.chart(indicator=IndicatorType.CPI):
    print(point.x_deger, point.y_deger, point.baslik_en)

# Browse statistical themes
for theme in tuik.themes.list():
    print(theme.id, theme.name)

# List press releases and drill into details
for release_summary in tuik.pressreleasesummaries.list():
    detail = release_summary.details()
    print(detail.title, detail.period, detail.date)
    for table in detail.statistical_tables:
        print(table.title, table.type)

# Convenience: get latest CPI release directly
cpi = tuik.pressreleases.get_cpi()
print(cpi.title, cpi.period)
for prev in cpi.previous_presses:
    print(prev.title, prev.period, prev.url)
All endpoints · 6 totalmissing one? ·

Get key economic indicators from the TÜİK homepage including CPI, Unemployment, GDP growth, Industrial Production, Consumer Confidence, and Population figures with their latest values and publication dates.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of indicator objects each containing baslikTR, baslikEN, yil, ay, deger, key, bultenID, gTarih, svgName"
  },
  "sample": {
    "data": {
      "items": [
        {
          "ay": 5,
          "key": "__TUKETICI_FIYAT_ENDEKSI__",
          "yil": 2026,
          "deger": 32.61,
          "gTarih": "05.06.2026",
          "svgName": "Enflasyon_Fiyat_renkli",
          "baslikEN": "Consumer Price Index (2025=100) Annual Change (%)",
          "baslikTR": "Tüketici Fiyat Endeksi",
          "bultenID": "58296"
        }
      ]
    },
    "status": "success"
  }
}

About the Gov API

Economic Indicators and Time Series

get_popular_indicators returns an array of indicator objects with fields baslikTR, baslikEN, yil, ay, deger, key, and bultenID — covering the six metrics TÜİK highlights on its homepage. To retrieve historical data for any of those indicators, get_chart_data accepts an indicator parameter (accepted values: cpi, unemployment, gdp_growth, industrial_production, population, consumer_con) and returns an array of time-stamped data points with xDeger and yDeger fields suitable for charting trend lines.

Press Releases

get_press_releases_list returns every available TÜİK bulletin as an array of objects with id, title, url, categoryId, and categoryName. That id value is the input for get_press_release_detail, which returns the full bulletin content alongside statisticalTables, tables, metadatas, the release period, and a previous array linking to earlier releases in the same series — useful for building time-aware datasets from consecutive reports. get_cpi_data is a convenience shortcut that automatically resolves the most recent CPI release and returns the same response shape as get_press_release_detail without requiring a release_id.

Statistical Themes Tree

get_statistical_themes returns TÜİK's full data portal hierarchy as a nested object. Each node carries id, name, icon, url, and a children array, covering all statistical categories and subcategories — from agriculture and demography to trade and national accounts. This endpoint is the entry point for navigating the breadth of TÜİK's published datasets, identifying which categories have associated press releases or downloadable tables.

Reliability & maintenanceVerified

The Gov API is a managed, monitored endpoint for tuik.gov.tr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when tuik.gov.tr changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official tuik.gov.tr API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
12h ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track Turkey's monthly CPI trend by polling get_chart_data with indicator=cpi and storing the deger time series.
  • Build a Turkey macroeconomic dashboard by combining get_popular_indicators fields for GDP growth, unemployment, and consumer confidence.
  • Enumerate all TÜİK press releases by category using get_press_releases_list and filter by categoryName for topic-specific monitoring.
  • Extract embedded statistical tables from inflation bulletins using get_press_release_detail with a CPI-series release_id.
  • Navigate TÜİK's full statistical catalog programmatically by traversing the children arrays returned by get_statistical_themes.
  • Detect new TÜİK publications by comparing the previous array across successive calls to get_press_release_detail.
  • Retrieve the latest CPI report content and metadata without managing bulletin IDs by calling get_cpi_data directly.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does TÜİK have an official developer API?+
TÜİK does not publish a documented public REST API for developers. The data portal at tuik.gov.tr is designed for browser-based browsing and file downloads rather than programmatic access.
What does `get_press_release_detail` return beyond the main bulletin text?+
It returns statisticalTables (structured table data embedded in the release), tables (additional tabular content), metadatas (descriptive metadata for the release), the period the release covers, and a previous array of earlier releases in the same series. The lastPress field identifies the most recent release in that bulletin series.
Which economic indicators can be retrieved as historical time series?+
get_chart_data supports six indicator keys: cpi, unemployment, gdp_growth, industrial_production, population, and consumer_con. Each returns an array of data points with yil (year), ay (month/period), and deger (value) fields, along with xDeger and yDeger for chart coordinates.
Does the API cover regional or provincial breakdowns of TÜİK statistics?+
Not currently. The API covers national-level indicators, press releases, and the themes tree. TÜİK does publish regional data on its portal, but no endpoint in the current API exposes province- or region-level breakdowns. You can fork the API on Parse and revise it to add an endpoint targeting regional datasets.
Can I retrieve downloadable dataset files (Excel, CSV) through this API?+
Not currently. get_statistical_themes returns url fields that point to downloadable tables on the TÜİK portal, but the API does not fetch or parse those file contents. You can fork the API on Parse and revise it to add file-fetching endpoints for those URLs.
Page content last updated . Spec covers 6 endpoints from tuik.gov.tr.
Related APIs in Government PublicSee all →
tuik.org.tr API
Access Turkey's official economic and social statistics including real-time CPI, GDP, and unemployment indicators, along with detailed press releases and historical data series. Search and retrieve specific statistical themes, economic bulletins, and key economic indicators directly from TÜİK's official data portal.
tradingeconomics.com API
Access real-time economic calendars, macroeconomic indicators, and commodity prices across global markets including G20 nations and emerging economies. Monitor historical charts, country-specific economic data, and the latest financial news to track economic trends and make informed investment decisions.
turkishexporter.com.tr API
Search and explore Turkish importers, exporters, and companies with detailed business profiles and trade requests to find potential trading partners. Browse available categories and databanks to discover new business opportunities in the Turkish trade market.
trademap.org API
Access comprehensive global trade statistics including bilateral trade flows, product exports by country, and historical trade indicators to analyze international commerce trends. Monitor trade data availability and retrieve time series information to track how specific products and countries perform in the global market.
sayistay.gov.tr API
Access Turkish Court of Accounts audit reports, judicial decisions from the General Assembly and Appeals Board, relevant legislation, and official announcements all in one place. Search and browse reports by category, retrieve detailed decision information, and stay updated with the latest homepage announcements from Turkey's supreme audit institution.
argenstats.com API
Access Argentina's key economic indicators including the EMAE activity index, inflation (IPC), dollar exchange rates (BLUE, CCL, MEP, OFICIAL, and more), country risk, employment, and poverty levels. Retrieve current values, historical series, and forecasting event listings from ArgenStats.
esankhyiki.mospi.gov.in API
Access India's official macroeconomic statistics including RBI indicators, National Accounts data, and labor force surveys directly from the government's statistical database. Browse dashboards, infographics, and detailed metadata to explore economic trends, employment figures, and key financial indicators.
data.stats.gov.cn API
Access comprehensive statistical data, economic indicators, and official reports from China's National Bureau of Statistics through simple searches and structured queries. Retrieve detailed articles, data releases, indicator trends, and downloadable documents to analyze China's economic and social statistics.