OECD Data Scraper avatar

OECD Data Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
OECD Data Scraper

OECD Data Scraper

Scrape OECD economic and social statistics via the SDMX REST API - GDP, employment, trade, inequality, house prices, and more for 38+ OECD member countries.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Access economic and social statistics from the OECD (Organisation for Economic Co-operation and Development) via the official SDMX REST API. Covers GDP, employment, trade, inequality, housing, and more for 38+ OECD member countries and partners.

No API key required. Data is publicly available at data-explorer.oecd.org.


What Can It Do?

  • Browse available datasets — discover all OECD datasets with descriptions and categories
  • Fetch time-series data — get indicator values for specific countries and date ranges
  • Multi-country queries — pull data for multiple countries in one run
  • Diverse indicators — GDP growth, unemployment, trade flows, Gini coefficients, house prices, and more
  • Standard SDMX format — uses the official OECD SDMX JSON API

Input

FieldTypeDescriptionExample
modeselectsearchDatasets or getIndicatorsearchDatasets
datasetCodestringOECD dataflow ID (from searchDatasets)DSD_NAMAIN1@DF_QNA_EXPENDITURE_GROWTH_OECD
countriesarrayISO-3 country codes["USA", "GBR", "AUS"]
startYearintegerFirst year (1990–2030)2020
endYearintegerLast year (1990–2030)2022
maxItemsintegerRecords cap (1–1000)100

Available Datasets

Dataset CodeNameCategory
DSD_NAMAIN1@DF_QNA_EXPENDITURE_GROWTH_OECDQuarterly National Accounts: GDP & Expenditure (OECD)National Accounts
DSD_NAMAIN1@DF_QNA_EXPENDITURE_GROWTH_NON_OECDQuarterly National Accounts: GDP & Expenditure (Non-OECD)National Accounts
DSD_ALFS@DF_SUMTABAnnual Labour Force Statistics — Summary TablesLabour
DSD_BATIS@DF_BATISBalanced Trade in Services (BaTIS)Trade
DSD_BIMTS@DF_BIMTS_HS2017_2DBalanced International Merchandise TradeTrade
DSD_WISE_IDD@DF_IDDIncome Distribution Database (IDD)Social
DSD_WEALTH@DF_WEALTHWealth Distribution DatabaseSocial
DSD_AN_HOUSE_PRICES@DF_HOUSE_PRICESAnalytical House Price IndicatorsHousing
DSD_FUA_CLIM@DF_TEMPERATURESAir Temperature — Cities and FUAsEnvironment

Run searchDatasets mode to get the full list with descriptions.


Output

Dataset Record (searchDatasets mode)

FieldTypeDescription
datasetCodestringUnique dataset/dataflow identifier
agencyIdstringOECD agency responsible
namestringFull dataset name
descriptionstringWhat the dataset covers
categorystringThematic category
frequencyarrayAvailable frequencies (A, Q, M)
versionstringDataset version
sourceUrlstringOECD data explorer URL
recordTypestring"dataset"
scrapedAtstringISO timestamp

Indicator Record (getIndicator mode)

FieldTypeDescription
datasetCodestringDataset identifier
agencyIdstringOECD agency
countryCodestringISO-3 country code (e.g. "USA")
countryNamestringCountry name
indicatorCodestringIndicator/measure code
indicatorNamestringIndicator description
periodstringYear or quarter (e.g. "2022" or "2022-Q3")
valuefloatNumeric value
frequencystring"A" (annual), "Q" (quarterly), "M" (monthly)
sourceUrlstringOECD data explorer URL
recordTypestring"indicator"
scrapedAtstringISO timestamp

Example Use Cases

1. Discover Available Datasets

{
"mode": "searchDatasets",
"maxItems": 20
}

2. US Quarterly GDP Growth (2020–2022)

{
"mode": "getIndicator",
"datasetCode": "DSD_NAMAIN1@DF_QNA_EXPENDITURE_GROWTH_OECD",
"countries": ["USA"],
"startYear": 2020,
"endYear": 2022,
"maxItems": 100
}

3. Multi-Country Labour Statistics

{
"mode": "getIndicator",
"datasetCode": "DSD_ALFS@DF_SUMTAB",
"countries": ["USA", "GBR", "AUS", "DEU"],
"startYear": 2018,
"endYear": 2022
}

4. Income Inequality (Gini Coefficients)

{
"mode": "getIndicator",
"datasetCode": "DSD_WISE_IDD@DF_IDD",
"countries": ["USA", "FRA", "SWE"],
"startYear": 2015,
"endYear": 2022
}

5. House Price Indices

{
"mode": "getIndicator",
"datasetCode": "DSD_AN_HOUSE_PRICES@DF_HOUSE_PRICES",
"countries": ["USA", "GBR", "AUS"],
"startYear": 2018,
"endYear": 2023
}

Frequently Asked Questions

Do I need an API key? No. The OECD SDMX API is publicly accessible without registration.

How do I find the right dataset code? Run the actor in searchDatasets mode first. Each record contains the datasetCode you can copy into getIndicator mode.

What are ISO-3 country codes? Three-letter codes: USA (United States), GBR (United Kingdom), AUS (Australia), DEU (Germany), FRA (France), JPN (Japan), CAN (Canada), ITA (Italy), KOR (Korea), MEX (Mexico).

Why might I get no results for getIndicator? Some datasets have specific dimension requirements. Try searchDatasets mode to verify the dataset exists and check the description. Some datasets cover only OECD members.

What does "frequency" mean? A = Annual (yearly data), Q = Quarterly (every 3 months), M = Monthly.

How recent is the data? OECD data is typically 6–18 months behind the current date, depending on the dataset and country reporting speed.


Data Source

Data comes from the OECD Data Explorer via the OECD SDMX REST API. All data is © OECD and licensed under the OECD Terms and Conditions.