Public data / Dataset
Risk of poverty or social exclusion
The EU 2030 AROPE indicator combines poverty risk, severe material and social deprivation, and very low household work intensity.
Before you use this resource
The three components overlap; adding their percentages does not produce AROPE. Survey year and income reference period may differ.
- Published by
- Eurostat
- Source
- Public institution
- Collection
- Public data
- Resource type
- Dataset
- Coverage
- Romania; European comparisons
- Documented formats
- JSON-stat, HTML
- Licence / terms
- Eurostat reuse policy
- API access
- Documented API
- Record review date
- 2026-09-07
- Last resource update
- 2026-06-08T23:00:00+0200
- Technical data audit
- Not performed
- Documentation
- Source reviewed
Documentation
One API response was read, including dimensions, period and presence of observations. No complete statistical audit was performed.
The cited page documents this record. Check the original source for terms and versions before reuse.
Getting started
- Select unit=PC for percentages or THS_PER for thousands of people.
- Retain age, sex and the EU 2030 definition when comparing releases.
Access and checks
- Inspected API example ↗ · JSON-stat
Sample inspected on 2026-09-07 - Definition and methodology ↗ · HTML
Documented access; content not tested.
Direct API queries
curl -s 'https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/ilc_peps01n?lang=EN&geo=RO&lastTimePeriod=1&sex=T&age=TOTAL' | jq .import urllib.request
import json
url = "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/ilc_peps01n?lang=EN&geo=RO&lastTimePeriod=1&sex=T&age=TOTAL"
req = urllib.request.Request(url, headers={"User-Agent": "CunoastereDeschisa/1.7"})
with urllib.request.urlopen(req) as resp:
data = json.loads(resp.read().decode("utf-8"))
print(json.dumps(data, indent=2)[:500])library(jsonlite)
data <- fromJSON("https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/ilc_peps01n?lang=EN&geo=RO&lastTimePeriod=1&sex=T&age=TOTAL")
str(data)INSTALL httpfs;
LOAD httpfs;
SELECT * FROM read_json_auto('https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/ilc_peps01n?lang=EN&geo=RO&lastTimePeriod=1&sex=T&age=TOTAL')
LIMIT 10;Executable query snippets for command line, data pipelines, or DuckDB.
Continue your research
Editorial suggestions for discovery. These links do not establish technical integration or licence compatibility.