Open knowledge
Romania
Public data / Database

Budget transparency and public expenditure execution

National reporting portal for central and local budget execution: payments, revenues, approved budgets and monthly expenditures by functional chapter.

Before you use this resource

Functional and economic classifications follow Romanian public accounting codes. Reporting updates monthly, with treasury reconciliations occasionally yielding retroactive adjustments.

Published by
Ministry of Finance
Source
Public institution
Collection
Public data
Resource type
Database
Coverage
Romania; central government and local territorial units
Documented formats
HTML, CSV, JSON
Licence / terms
Rights need checking
API access
Documented API
Record review date
2026-09-07
Last resource update
2025-12-31
Technical data audit
Not performed
Documentation
Source reviewed

Documentation

Navigation interface and aggregate report downloads verified on the official portal.

The cited page documents this record. Check the original source for terms and versions before reuse.

transparenta-bugetara.mfinante.gov.ro ↗

Getting started

  1. Select the public institution or local government CUI.
  2. Filter by budgetary chapter (e.g. education, healthcare, infrastructure) and expense type.
  3. Download monthly execution tables to observe payments cleared through the treasury.

Access and checks

Direct API queries

curl -s 'https://transparenta-bugetara.mfinante.gov.ro/' | jq .
import urllib.request
import json

url = "https://transparenta-bugetara.mfinante.gov.ro/"
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://transparenta-bugetara.mfinante.gov.ro/")
str(data)
INSTALL httpfs;
LOAD httpfs;

SELECT * FROM read_json_auto('https://transparenta-bugetara.mfinante.gov.ro/')
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 ↑