Data & Security Breaches Dataset API

Submit Data and Security Breaches Dataset Request

post

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.

Header parameters
x-api-keystringRequired

Intellizence API key for authenticating the request.

Body
dateTypestring · enumOptional

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.

Example: ANNOUNCEDPossible values:
startDatestring · dateOptional

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.

Example: 2025-05-05
endDatestring · dateOptional

The end date (YYYY-MM-DD) up to which data & security breaches data is needed.

Example: 2025-05-05
datestring · dateOptional

Exact date (YYYY-MM-DD) for which the data & security breaches data is needed.

Example: 2025-05-05
companyNamestringOptional

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.

Example: Ameriprise Financial
companyDomainstringOptional

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.

Example: www.ameriprise.com
companyIndustrystring · enumOptional

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.

Example: financial servicesPossible values:
companyLocationstringOptional

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.

Example: Minneapolis,Minnesota,United States of America
companyTypestring · enumOptional

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.

Example: PublicPossible values:
companyTickerstringOptional

Stock ticker of the company

Example: AMP
incidentTypestring · enumOptional

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.

Example: Data Breach/Theft/LeakPossible values:
peopleImpactednumber · floatOptional

Number of people impacted due to the cyber security incident.

Example: 1
limitintegerOptional

The maximum number of records to be returned.

Example: 1
Responses
200
Successful response, returns the Data and Security Breaches dataset record(s)
application/json
post
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