GET/api/deadlines
Compliance deadlines between two days, in date order
- fromFirst day, YYYY-MM-DD (default today)
- toLast day, YYYY-MM-DD (default: no end)
- regionRegion key
- jJurisdiction key, e.g. eu, us-ca, uk, in
- topicTopic key, e.g. privacy, ai, cybersecurity
- statusStatus
- qWords to match in the name, citation or summary
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://rulebook.fru.dev/api/deadlines?from=2026-10-01&to=2027-12-31&topic=ai&limit=3"Sample response
JSON
{
"from": "2026-10-01",
"to": "2027-12-31",
"items": [
{
"date": "2026-10-01",
"title": "PA 26-64 (SB 4) amendments take effect",
"description": "Prohibits controllers and third parties from selling precise geolocation data and enacts data broker and other consumer protection provis...",
"kind": "effective",
"tentative": false,
"unverified": false,
"sourceUrl": "https://www.cga.ct.gov/2026/ACT/PA/PDF/2026PA-00064-R00SB-00004-PA.PDF",
"regulation": {
"id": "us-ct-ctdpa",
"shortName": "Connecticut Data Privacy Act (CTDPA)",
"jurisdiction": "us-ct",
"jurisdictionName": "Connecticut",
"region": "us-states",
"status": "amended",
"url": "https://rulebook.fru.dev/regulations/us-ct-ctdpa"
}
},
{
"date": "2026-12-02",
"title": "New bans on sexual deepfakes and CSAM generation; Art 50(2) grace period ends",
"description": "New Art 5(1)(ba)/(bb) prohibitions on AI systems that generate non-consensual intimate imagery of identifiable persons or child sexual ab...",
"kind": "compliance",
"tentative": false,
"unverified": false,
"sourceUrl": "https://eur-lex.europa.eu/eli/reg/2026/1744/oj",
"regulation": {
"id": "eu-ai-act",
"shortName": "EU AI Act",
"jurisdiction": "eu",
"jurisdictionName": "European Union",
"region": "eu",
"status": "amended",
"url": "https://rulebook.fru.dev/regulations/eu-ai-act"
}
}
],
"total": 20,
"limit": 3,
"offset": 0,
"next": "/api/deadlines?from=2026-10-01&to=2027-12-31&topic=ai&limit=3&offset=3"
}