Retrieve Details for an Exposure
Returns the detailed information for a credentials exposure. The responses to this call can and should be cached to limit the number of calls made. The exposure details are not typically expected to change over time, so they can be retained for relatively long periods of time, e.g. for up to 30 days.
Authorizations
Query parameters
idstringRequiredExample:
The ID of the Exposure
57dc11964d6db21300991b78
Responses
200
The response body contains the details of the Exposure
application/json
404
The requested Exposure was not found
get
GET /v1/exposure-details HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer Base64(your_api_key:your_api_secret)
Accept: */*
{
"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?