> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.flare.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Leak

The `leak` type represents a discrete data leak, such as a batch of credentials or PII published on a leak site.

Each record corresponds to a single leak and may include:

* The search term that matched the leak and the site it originated from.
* Timing details: when the leak occurred and when the breach was disclosed.
* The number of leaked credentials and the categories of PII exposed.

```json Leak theme={null}
{
    "event_type": "leak",
    "metadata": {
        "estimated_created_at": "2025-01-01T00:00:00",
        "flare_url": "https://app.flare.io/#/uid",
        "matched_at": null,
        "severity": "info",
        "uid": "index/source/id"
    },
    "data": {
        "term": "leakforum",
        "site_url": "leakforum.com",
        "leaked_at": "2024-01-10T00:00:00",
        "breached_at": "2024-01-10T00:00:00",
        "leaked_credential_count": 2,
        "pii_tags": [
            "Emails"
        ],
        "source": {
            "id": "leak_forum",
            "name": "Leak Forum"
        }
    }
}
```
