Get Exposures by Date
Allows you to pull a list of recent exposures found by Enzoic.
Returns all credentials exposures that have been found by Enzoic since a specified date.
The Enzoic API uses a basic auth scheme where the username is your API key and the password is your API secret.
See https://docs.enzoic.com/enzoic-api-developer-documentation/using-the-enzoic-api#api-authentication for more details.
Specifies a start date/time up to a maximum of 30 days in the past in ISO8601 format (e.g. 2023-06-01T00:00:00Z). All exposures catalogued since that date will be returned.
2023-06-01(Optional) If this parameter is specified and non-zero, the results will include the exposure details inline, rather than just the IDs. In this case the exposures array in the response will contain an array of ExposureDetails objects
0Example: 1(Optional) If this parameter is specified and non-zero, the results will include exposures Enzoic has indexed that did not include user credentials. These typically are exposures which contain PII (personally identifiable information), but no usernames and passwords.
0Example: 1(Optional) The number of results to return in a single call. The default page size is 100 and the maximum is 200.
100Example: 200(Optional) For each call to the API, if there are additional pages of results available then a pagingToken will be returned. Pass the pagingToken in via this parameter to retrieve the subsequent page of results. Should be left off for the initial call to the API.
598e5b844eb6d82ea07c5783A list of Exposures are in the response body
GET /v1/exposures-by-date?startDate=text HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
A list of Exposures are in the response body
{
"count": 1,
"pagingToken": "598e5b844eb6d82ea07c5783",
"exposures": [
{
"id": "57dc11964d6db21300991b78",
"title": "funsurveys.net",
"entries": 5123,
"date": "2015-05-01T00:00:00.000Z",
"category": "Manufacturing",
"source": "Cybercrime Forums",
"passwordType": "Cleartext",
"exposedData": [
"Emails",
"Passwords"
],
"dateAdded": "2016-09-16T15:36:54.000Z",
"sourceURLs": [
"https://www.someplace.com"
],
"domainsAffected": 683,
"sourceFileCount": 1
}
]
}Last updated
Was this helpful?