Retrieve Details for an Exposure

Lookup the details for a specific exposure

get

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
idstringrequired

The ID of the Exposure

Example: 57dc11964d6db21300991b78
Responses
curl -L \
  --url 'https://api.enzoic.com/v1/exposure-details?id=text' \
  --header 'Authorization: Bearer Base64(your_api_key:your_api_secret)'
{
  "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?