GET /api/regulations
The core endpoint. Returns tracked regulations, filterable and paginated. Sorted by effective publication date, most recent first.
| Parameter | Type | Description |
|---|---|---|
search | string | Full-text match on title and description |
impact[] | array | HIGH · MEDIUM · LOW (repeatable) |
category[] | array | One of the seven categories below (repeatable) |
region[] | array | e.g. EU-wide, Germany, France (repeatable) |
dateRange | string | today · week · month · 3months · 6months · year |
hasDeadlines | boolean | true returns only items with extracted deadlines |
page | integer | Page number, default 1 |
limit | integer | Items per page, default 50, max 200 |
curl "https://www.health-signal.com/api/regulations?impact[]=HIGH&dateRange=month&limit=10"
Sample response
{
"status": "success",
"data": {
"regulations": [
{
"_id": "6908d35e99792966b6f85b38",
"title": "AI Act General Application (High-Risk AI)",
"description": "Obligations for high-risk AI systems apply…",
"link": "https://eur-lex.europa.eu/…",
"impact": "HIGH",
"categories": ["Digital Health & AI"],
"geographicScope": "EU-wide",
"source": "European Commission",
"originalPubDate": "2026-06-14T00:00:00",
"hasDeadlines": true,
"extractedDeadlines": [
{ "date": "2026-08-02", "event": "ENTERS_FORCE", "label": "General application" }
]
}
],
"pagination": { "page": 1, "limit": 10, "total": 1227, "pages": 123 }
}
}