check_email
Verify if an email address has been exposed in data breaches using the Have I Been Pwned API. Includes options to check unverified breaches and truncate response data for streamlined results.
Instructions
Check if an email address has been found in data breaches
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address to check | ||
| include_unverified | No | Include unverified breaches in the results | |
| truncate_response | No | Truncate the response to only include breach names |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Email address to check",
"type": "string"
},
"include_unverified": {
"default": true,
"description": "Include unverified breaches in the results",
"type": "boolean"
},
"truncate_response": {
"default": false,
"description": "Truncate the response to only include breach names",
"type": "boolean"
}
},
"required": [
"email"
],
"type": "object"
}