GET/api/breaches
Breaches, most recently disclosed first, with filters
- sectorOnly this sector
- attackOnly this attack type
- dataOnly breaches that exposed this data type
- yearOnly breaches disclosed in this year
- companyOnly this organization (companies.fru.dev slug)
- verifiedtrue for confirmed rows only
- sinceOnly rows disclosed, first seen or updated at or after this date (YYYY-MM-DD)
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
curl -s "https://breaches.fru.dev/api/breaches?sector=tech&limit=3"Sample response
{
"breaches": [
{
"id": "check-point-2026-09",
"organization": {
"slug": "check-point",
"name": "Check Point",
"domain": "checkpoint.com",
"url": "https://breaches.fru.dev/companies/check-point"
},
"title": "Check Point warns of hackers exploiting Security Gateway VPN RCE flaw",
"disclosed": "2026-09-23",
"records": null,
"records_basis": null,
"attack": "hacking",
"sector": "tech",
"data_types": [],
"status": "disclosed",
"verified": false,
"campaign": null,
"country": null,
"sources": [
"press"
]
},
{
"id": "limeleads-2026-09",
"organization": {
"slug": "limeleads",
"name": "LimeLeads",
"domain": "limeleads.com",
"url": "https://breaches.fru.dev/companies/limeleads"
},
"title": null,
"disclosed": "2026-09-22",
"records": 17838396,
"records_basis": "hibp",
"attack": "misconfiguration",
"sector": "tech",
"data_types": [
"emails",
"employment"
],
"status": "disclosed",
"verified": false,
"campaign": null,
"country": null,
"sources": [
"hibp"
]
}
],
"total": 1152,
"limit": 3,
"offset": 0,
"next": "/api/breaches?sector=tech&limit=3&offset=3",
"note": "From public sources only. verified=true means an official notice, a filing, a regulator or the organization confirmed it. records are as ..."
}