United Nations Statistical Division
Provides official United Nations statistical data, offering critical insights into global economic, social, demographic, and environmental trends. Serves as a primary source for international statistical research and policy development.
No quickstart snippet available for this source yet.
Cost
Free
Access type
open
Signup required
No
Update alerts
Not offered
Coverage
global
Update frequency
varies
Source Documentation
What You're Getting
UNSD (United Nations Statistics Division) publishes the Monthly Bulletin of Statistics (MBS) with 50+ series for 200+ countries — industrial production, trade, prices, employment, energy, and finance. Also maintains the National Accounts Main Aggregates Database (GDP by expenditure approach) and the UNdata portal aggregating 60+ UN agency datasets. Data is primarily annual/quarterly in CSV and XLSX.
Ingestion Strategy
UNdata API provides programmatic access to all datasets on the UNdata platform. Query by dataset ID and filter by country/year. For UNSD-specific datasets (MBS, national accounts), bulk download as CSV/XLSX is more reliable than the API for large extracts.
import requests
# UNdata API
url = "https://data.un.org/ws/rest/data"
params = {
"datasetId": "DF_UNData_UNSD",
"series": "SP_POP_TOTL", # population
"startPeriod": "2010",
"format": "json"
}
r = requests.get(url, params=params)
Rate Limits & API Details
- No authentication for UNdata API or bulk downloads
- UNdata API docs: data.un.org/Host.aspx?Content=API
- Monthly Bulletin of Statistics bulk download: unstats.un.org/unsd/mbs/app/
- National Accounts Main Aggregates: unstats.un.org/unsd/nationalaccount/data.asp
Schema Stability
Country codes use M49 numeric codes (UN standard). Series codes are documented per dataset. UNSD reorganizes some datasets periodically — the MBS updated its structure in 2019. National Accounts series follow SNA 2008 methodology (some countries still on SNA 1993 — flagged in metadata).
Data Quality Gotchas
- Coverage gaps: UNSD compiles from national submissions — lags of 2–5 years for low-income countries are common
- SNA 1993 vs SNA 2008: national accounts methodology differs; series are flagged but joining requires care
- MBS vs primary source: for countries with strong statistical offices (US, EU, Japan), always prefer the national source over UNSD's compiled figure
- Population data: UNSD population data derives from country censuses and UN Population Division estimates — different from World Bank population (same underlying data, different vintage)
Tool Compatibility
- Python: direct API calls;
pandasfor CSV/XLSX bulk downloads - R: direct API calls
- Airbyte: no official connector
- Bulk downloads load well into standard warehouse ETL pipelines
Benchmarking Approach
World population: ~8B for 2022. Global GDP (sum of national accounts): ~100T USD current prices. Verify a known country's GDP figure against World Bank/IMF for the same year — expect <2% difference for well-documented countries. Alert if coverage of a dataset drops below 150 countries. Track annual release schedule (typically Q4 for prior-year data).
Notable Datasets
1 total- ▸ demographics\ndevelopment \neconomics\nsocial indicators
Access
- Cost
- Free
- Access type
- Open
- Update alerts
- Not offered
Data Profile
- Coverage
- Global
- Frequency
- Varies
- History from
- 1945
- Source updated
- Jan 2025
Data Formats
How to Access
- 📦 Bulk Export
Index entry
Added: Apr 30, 2026
Last indexed: May 2, 2026
~ Community-sourced entry