Generate
generate_premium_report takes the domain, the period, and the organization context used for benchmarking:
It returns
{ message, report_id }. The report generates asynchronously — take the report_id to track it and download the PDF.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A full exposure report for one domain over a period — benchmarked against your industry, size, and country.
generate_premium_report takes the domain, the period, and the organization context used for benchmarking:
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 profile. |
industry_type | yes | Used to benchmark the report against peers. |
country | yes | Used to benchmark the report against peers. |
{ message, report_id }. The report generates asynchronously — take the report_id to track it and download the PDF.