Data & Security Breaches Dataset API

POST /api/v1/dataset/data-breach

Request Body

{
    "startDate": "start_date",
    "endDate": "end_date",
    "companyIds": "company_ids",
    "industries": "industries",
    "location": "location",
    "limit": "limit"
}

Param

Mandatory

Description

startDate

N

It will return records from Start Date (Last Modified Date) in format DD/MM/YYYY.

endDate

N

It will return records till End Date (Last Modified Date) in format DD/MM/YYYY.

companyIds

N

Array of Intellizence Company IDs. It will return records for these Company IDs. If Company IDs is not passed, records for all the tracked companies will be returned.

industries

N

Array of Industries.

location

N

Company Headquarter Location.

limit

N

Default value is 100 records. If Start Date and End Date are not passed, it will return latest 'N' records depending on limit value.

Response Body

[
    {
        "id": "642a84fc175269cf03a1cf36",
        "announcedDate": "30/04/2023",
        "company": {
            "id": "IN011833",
            "name": "City of Toronto",
            "domain": "www1.toronto.ca",
            "industries": [
	        "government"
            ],
            "location": "Toronto, ON, Canada",
            "ticker": null,
            "stockExchange":null,
            "type": "Private"
        },
        "peopleImpacted": "NA",
        "incidentType": [
            "Data Breach/Theft/Leak"
        ],
        "url": "https://www.itworldcanada.com/article/toronto-hit-by-potential-cyber-breach-from-accellion-file-transfer-software/446787",
        "title": "Toronto hit by ‘potential cyber breach’ from Accellion file transfer software",
        "lastModified": "10/04/2023"
    }
]

Last updated