monitoruloficial.ro APImonitoruloficial.ro ↗
Retrieve Romanian Official Gazette issues by date, browse legislative modifications, check publication calendars, search company announcements, and access the bookstore.
curl -X GET 'https://api.parse.bot/scraper/f1b442b7-eed8-42bf-8685-13a6c4c3c8e5/get_issues_by_date?date=2026-04-23' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve gazette issues for a specific date. Returns parts (Partea I, II, III, IV, VI) and their issue numbers with URLs. Dates without publications return an empty parts array.
| Param | Type | Description |
|---|---|---|
| date | string | Publication date in YYYY-MM-DD format. Defaults to today's date if omitted. |
{
"type": "object",
"fields": {
"date": "string in YYYY-MM-DD format",
"parts": "array of objects containing part_name (string) and issues (array of objects with issue_number and url)"
},
"sample": {
"data": {
"date": "2026-04-23",
"parts": [
{
"issues": [
{
"url": "https://monitoruloficial.ro/Monitorul-Oficial--PI--321--2026.html",
"issue_number": "321"
}
],
"part_name": "Partea I"
}
]
},
"status": "success"
}
}About the monitoruloficial.ro API
This API provides structured access to monitoruloficial.ro across 6 endpoints, covering gazette issue retrieval, publication calendars, date-range legislative modifications, professional announcements, and an online bookstore. The get_issues_by_date endpoint returns gazette parts (Partea I through VI) with their issue numbers and URLs for any given date, making it straightforward to track daily Romanian official publications.
Gazette Issues and Legislative Modifications
The get_issues_by_date endpoint accepts a date parameter in YYYY-MM-DD format (defaulting to today) and returns a parts array whose objects include part_name (e.g., "Partea I", "Partea a IV-a") and nested issues with issue_number and url. Dates with no publications return an empty parts array. For bulk retrieval, get_legislative_modifications_range accepts start_date and end_date and returns all publications grouped under a publications array — each entry contains a date and the same part/issue structure. The range is hard-capped at 31 days; if the supplied end_date exceeds that, it is silently adjusted and reflected in the response's end_date field alongside a note.
Publication Calendar
get_emonitor_calendar accepts a year and month (1–12) and scans every day in that month, returning a published_dates array of objects with date (YYYY-MM-DD) and parts (an array of part name strings). This is useful for building monthly calendars of gazette activity or detecting publication gaps. Be aware that response time scales with days scanned — a full 31-day month takes several seconds.
Announcements and Site Search
get_announcements searches Partea a IV-a professional announcements by either cui (company tax ID) or nr (Monitorul Oficial registration number). It returns up to 10 recent matches, each with fields including NR_INR_MO, CUI, NR_MO, and DATA_MO. At least one of the two query parameters must be provided. The search_site endpoint runs a keyword query across the full portal and returns paginated results mixing product and article types, each with title, type, price (or null), url, and snippet.
Bookstore
get_products exposes the WooCommerce-backed online bookstore, returning up to 24 products per page. Results include title, price (in RON), url, and image. An optional category slug parameter filters by topic — documented examples include juridice, colectii-de-arta, and constitutii. Omitting the category returns all available products.
- Monitor daily Romanian legislative activity by polling
get_issues_by_datefor newly published gazette parts. - Build a monthly publication calendar by calling
get_emonitor_calendarwith a given year and month. - Audit a company's official announcements by querying
get_announcementswith its CUI. - Retrieve all gazette issues within a rolling 31-day window using
get_legislative_modifications_rangefor compliance reporting. - Search the official bookstore for legal or constitutional publications using
get_productswith a category slug likejuridice. - Cross-reference gazette articles and bookstore products in a single query using
search_sitewith relevant keywords. - Track which gazette parts (Partea I–VI) were published on a specific date for legal research pipelines.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does monitoruloficial.ro have an official developer API?+
What does `get_announcements` return, and what parameters does it require?+
get_announcements returns up to 10 recent Partea a IV-a professional announcements matching a company. Each result includes NR_INR_MO (registration number), CUI (company tax ID), NR_MO (gazette issue number), and DATA_MO (publication date). You must supply at least one of cui or nr; omitting both will not return results.What is the maximum date range for `get_legislative_modifications_range`?+
end_date is more than 31 days after start_date, the API automatically adjusts end_date to start_date + 31 days and reflects the actual dates used in the response fields alongside a note string.Does the API expose the full text or PDF content of individual gazette issues?+
part_name, issue_number, and url — rather than parsed document text or PDF binaries. The url field links to the source document on monitoruloficial.ro. You can fork this API on Parse and revise it to add an endpoint that fetches and parses the content at those URLs.