> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.darknetsearch.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Premium report

> A full exposure report for one domain over a period — benchmarked against your industry, size, and country.

# Premium report

The premium report is a full **PDF exposure report** for a single domain over a chosen period. It pulls together everything the platform knows about the domain — leaked records and credentials, exposed cloud storage, data on sale in hacker forums, spoofed apps, pastes, social-media mentions, URL shorteners, look-alike domains, and discovered servers — and benchmarks it against organizations of your industry, size, and country. (In the dashboard this is the **Dark & Deep Web Research** report.)

#### Generate

[`generate_premium_report`](https://client-api.leak.center/scalar-docs/#tag/report/POST/service/generate_premium_report/) takes the domain, the period, and the organization context used for benchmarking:

```bash theme={"dark"}
curl https://client-api.leak.center/api/service/generate_premium_report/ \
  -X POST \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
        "domain": "acme.com",
        "period_type": "period",
        "started_at": "01-01-2026",
        "ended_at": "30-06-2026",
        "org_size": "201-500",
        "industry_type": "Technology",
        "country": "Germany"
      }'
```

| Field                     | Required | Notes                                                                                                                                                            |
| ------------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `domain`                  | yes      | The domain to report on.                                                                                                                                         |
| `period_type`             | yes      | `period` for the date range below, or `minimum` for the smallest standard window.                                                                                |
| `started_at` / `ended_at` | yes      | `dd-mm-yyyy`. Leave blank when `period_type` is `minimum`.                                                                                                       |
| `org_size`                | yes      | Employee-count band — the same size ranges as your [organization](https://github.com/kaduu-cti/darknetsearch-docs/blob/main/api/guides/setup/README.md) profile. |
| `industry_type`           | yes      | Used to benchmark the report against peers.                                                                                                                      |
| `country`                 | yes      | Used to benchmark the report against peers.                                                                                                                      |

It returns `{ message, report_id }`. The report generates asynchronously — take the `report_id` to [track it and download the PDF](https://github.com/kaduu-cti/darknetsearch-docs/blob/main/api/guides/reports/README.md).
