Open knowledge
Romania
Public data / Dataset

Hospital beds in Romania

Data on available beds by function and type of care. The API example uses a five-year window and beds per 100,000 inhabitants.

Before you use this resource

Available beds are not real-time vacant beds and do not measure care quality. The dataset’s latest year may lack Romanian observations.

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-07-13T11: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.

ec.europa.eu ↗

Getting started

  1. Keep facility=HBEDT, hlthcare=TOTAL and unit=P_HTHAB for the aggregate example.
  2. Check each observation year; missing cells are not zero.

Access and checks

Reuse terms evidence ↗

Direct API queries

curl -s 'https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/hlth_rs_bds1?lang=EN&geo=RO&lastTimePeriod=5&facility=HBEDT&hlthcare=TOTAL&unit=P_HTHAB' | jq .
import urllib.request
import json

url = "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/hlth_rs_bds1?lang=EN&geo=RO&lastTimePeriod=5&facility=HBEDT&hlthcare=TOTAL&unit=P_HTHAB"
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/hlth_rs_bds1?lang=EN&geo=RO&lastTimePeriod=5&facility=HBEDT&hlthcare=TOTAL&unit=P_HTHAB")
str(data)
INSTALL httpfs;
LOAD httpfs;

SELECT * FROM read_json_auto('https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/hlth_rs_bds1?lang=EN&geo=RO&lastTimePeriod=5&facility=HBEDT&hlthcare=TOTAL&unit=P_HTHAB')
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.

Top ↑