Data & Security Breaches Dataset API
This API endpoint allows users to access real-time and historical data and security breaches data.
Users can search data using various parameters- dateType
,startDate
,endDate
,date
,companyDomain
,companyName
,companyIndustry
,companyLocation
,companyType
, companyTicker
,incidentType
, and peopleImpacted
.
All the parameters are optional. Users can limit the number of records returned using the limit
parameter.
The API key has to be passed in HTTP header with the name x-api-key
.
Intellizence API key for authenticating the request.
Choose the date type used to filter records.The default value is 'ANNOUNCED'. To get the daily update of records created or modified, 'LAST-MODIFIED' is recommended.
ANNOUNCED
Possible values: The start date (YYYY-MM-DD) from which data & security breaches data is needed. Intellizence Data and Security Breaches Dataset contains data beginning from 2022-01-01.
2025-05-05
The end date (YYYY-MM-DD) up to which data & security breaches data is needed.
2025-05-05
Exact date (YYYY-MM-DD) for which the data & security breaches data is needed.
2025-05-05
Name(s) of the company for which data & security breaches data is needed.Partial name matching is supported.Multiple values can be provided either as a comma-separated string or as an array.
Ameriprise Financial
The website domain(s) of the company for which the data & security breaches data is needed. Partial domain matching is supported. Multiple values can be provided either as a comma-separated string or as an array.
www.ameriprise.com
The industry or industries of the companies for which data & security breaches data is requested. Industries are predefined by Intellizence, and only the values listed below are supported. Multiple values can be provided as an array.
financial services
Possible values: The location of the company headquarters for which data & security breaches data is needed. The location can be specified as a city, state/province, or country. Multiple values can be provided either as a comma-separated string or as an array.
Minneapolis,Minnesota,United States of America
The type of company or organization for which data & security breaches data is needed. The company types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Public
Possible values: Stock ticker of the company
AMP
The type of cyber security incident. The incident types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Data Breach/Theft/Leak
Possible values: Number of people impacted due to the cyber security incident.
1
The maximum number of records to be returned.
1
POST /api/v2/dataset/data-breach HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 389
{
"dateType": "ANNOUNCED",
"startDate": "2025-05-05",
"endDate": "2025-05-05",
"date": "2025-05-05",
"companyName": "Ameriprise Financial",
"companyDomain": "www.ameriprise.com",
"companyIndustry": "financial services",
"companyLocation": "Minneapolis,Minnesota,United States of America",
"companyType": "Public",
"companyTicker": "AMP",
"incidentType": "Data Breach/Theft/Leak",
"peopleImpacted": "=1",
"limit": 1
}
{
"id": "68276f415e482b5fac9f511a",
"announcedDate": "2025-05-05",
"company": {
"name": "Ameriprise Financial",
"domain": "www.ameriprise.com",
"industries": [
"financial services"
],
"location": "Minneapolis,Minnesota,United States of America",
"type": "Public",
"ticker": [
"AMP"
],
"stockExchange": [
"NYSE"
]
},
"peopleImpacted": 1,
"incidentType": "Downsizing/Layoff",
"noticeDate": "2025-04-29",
"thirdPartyCompany": {
"name": "text",
"domain": "text"
},
"sourceType": "Regulatory Filings",
"lastModified": "2025-05-16",
"title": "Maine Data Breach Notifications",
"url": "https://www.maine.gov/agviewer/content/ag/985235c7-cb95-4be2-8792-a1252b4f8318/b0808b89-a298-40ae-85a4-07e8e192d654.html"
}
Last updated