njt.jog.gov.hu APInjt.jog.gov.hu ↗
Search and retrieve Hungarian laws, decrees, and legal documents from the National Legislation Database to find current legislation and legal regulations. Quickly look up specific laws, get detailed document information, and discover relevant legal acts through intelligent search suggestions.
curl -X GET 'https://api.parse.bot/scraper/74b9b4b7-0065-41f2-8d82-b37964db687b/search_laws' \ -H 'X-API-Key: $PARSE_API_KEY'
Search Hungarian laws and legal documents by keyword, year, number, and type. Returns paginated results with title, date, and description. At least one of keyword, year, or number must be provided.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| year | string | Year of the law (4-digit, e.g. '2024'). |
| number | string | Serial number of the law (e.g. 'CLV' in Roman numerals or Arabic numerals). |
| keyword | string | Search term or phrase to find in law texts (e.g. 'munkaviszony' for employment-related laws). |
| law_type | string | Type code for the law issuing authority (e.g. '0000' for törvény, '2220' for Korm. rendelet, '7530' for AB határozat). Omit for all types. |
| per_page | integer | Number of results per page. Accepts exactly one of: 10, 25, 50. |
| only_valid | boolean | If true, return only currently valid (hatályos) laws. |
| title_only | boolean | If true, search only in law titles. |
| exact_match | boolean | If true, search for exact word match. |
{
"type": "object",
"fields": {
"page": "integer",
"results": "array of law search result objects with law_id, title, date, and description",
"per_page": "integer",
"total_count": "integer or null",
"total_pages": "integer or null"
},
"sample": {
"page": 1,
"results": [
{
"date": "2026. 01. 01. – 2027. 01. 02.",
"title": "2025. évi CXXXVI. törvény",
"law_id": "2025-136-00-00",
"description": "a sportról szóló 2004. évi I. törvény és egyéb törvények sporttal kapcsolatos módosításáról"
}
],
"per_page": 10,
"total_count": 1000,
"total_pages": 234
}
}About the njt.jog.gov.hu API
The njt.jog.gov.hu API on Parse exposes 3 endpoints for the publicly available data on njt.jog.gov.hu. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.