# Quickstart: Email Data Breach Checker — Leak & Credential Expos

**Use case:** 

Check email addresses against known data breaches: one row per incident with date, breached domain, industry, records and the categories of data exposed, plus a per-email risk summary. Passwords and hashes are never returned. Data by XposedOrNot; unofficial, not affiliated.

## Input

```json
{
  "emails": [
    "test@example.com"
  ],
  "maxBreachesPerEmail": 100,
  "minSeverity": "all",
  "includeSummaryRow": true,
  "enrichWithCatalog": true,
  "maxResults": 2000,
  "maxRunSecs": 900
}
```

## Output

```json
{
  "rowType": {
    "label": "Row type",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "breachName": {
    "label": "Breach",
    "format": "text"
  },
  "breachedDate": {
    "label": "Breached",
    "format": "text"
  },
  "breachedDomain": {
    "label": "Domain",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "severity": {
    "label": "Severity",
    "format": "text"
  },
  "exposedDataTypes": {
    "label": "Data exposed",
    "format": "array"
  },
  "exposedRecords": {
    "label": "Records",
    "format": "number"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "referenceUrl": {
    "label": "Reference",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Data Breach Checker — Leak & Credential Exposure](https://apify.com/ntriqpro/email-data-breach-checker.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ntriqpro/email-data-breach-checker.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ntriqpro/email-data-breach-checker.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
