EU27 trade value by partner, monthly
Monthly imports and exports of the EU27 (from 2020) in million euro, by partner, for total trade in goods (SITC Rev.4 all products). Eurostat dataset ext_st_eu27_2020sitc ('EU27 (from 2020) trade by SITC product group'). Each row is one (month, partner, flow): trade value in million euro. Method: Eurostat compiles customs and Intrastat declarations reported by EU member states; partner 'CN_X_HK' is China excluding Hong Kong, and aggregates (EU27_2020, EXT_EU27_2020, EFTA, ASEAN, ...) are included as published. Units: million euro. Caveats: recent months are provisional and revised as late declarations arrive; values are not seasonally adjusted. Coverage: EU27 trade with 56 partners, 2002-01 to the present, monthly. Provenance: Eurostat keyless JSON-stat API, free reuse with attribution (Commission Decision 2011/833/EU) - please cite Eurostat. Primary key: (month, partner_code, flow). Join keys: partner_code (ISO 3166-1 alpha-2 for countries), month. Cadence: refreshed monthly; Eurostat updates the dataset around mid-month. Sample use: filter flow='imports' and partner_code='US' to track EU imports from the United States.
- Source
- Eurostat
- Rows
- 33,040
- Columns
- 5
- Source cadence
- Monthly
- Last refreshed
- Sep 23, 2026
- Theme
- trade
| Column | Type | Description |
|---|---|---|
| month | string | Year and month of the observation (first day of month), from the 'time' dimension. |
| partner_code | string | Eurostat partner code from the 'partner' dimension: ISO 3166-1 alpha-2 for countries (e.g. US; CN_X_HK is China excluding Hong Kong) or an aggregate code (e.g. EU27_2020, EXT_EU27_2020, EFTA, ASEAN). |
| partner_name | string | Eurostat-published partner label, verbatim from the API. |
| flow | string | Trade direction from the 'stk_flow' dimension: 'imports' (IMP) or 'exports' (EXP). |
| trade_value_m_eur | float | Trade value in million euro, from the 'indic_et' indicator TRD_VAL ('Trade value in million ECU/EURO'), for SITC Rev.4 total (all products). Not seasonally adjusted. (unit: million euro) |
First 10 sample rows — a preview, not the complete dataset.
| month | partner_code | partner_name | flow | trade_value_m_eur |
|---|---|---|---|---|
| 2002-01-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 1,876.6 |
| 2002-02-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 1,812.4 |
| 2002-03-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 2,606 |
| 2002-04-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 2,376.1 |
| 2002-05-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 2,523.2 |
| 2002-06-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 2,048.6 |
| 2002-07-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 2,215.3 |
| 2002-08-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 1,782.8 |
| 2002-09-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 1,806.7 |
| 2002-10-01 | ACP | African, Caribbean and Pacific Group of States, signatories of the Partnership Agreement | exports | 2,438.3 |
Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).
curl "https://datazimuts.com/v1/datasets/eurostat/eurostat_trade_value_monthly" | jq '{title, rows, columns_count, license}'import requests
ds = requests.get("https://datazimuts.com/v1/datasets/eurostat/eurostat_trade_value_monthly").json()
print(ds["title"], ds["rows"], "rows")
# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
print(row)API endpoint: https://datazimuts.com/v1/datasets/eurostat/eurostat_trade_value_monthly
Tip: fetch /llms.txt for the full machine-readable catalog.