Search Advanced
Export leaks to CSV/TXT/JSON
Queue an export of all leaks that match the provided advanced search filters. At least one filter is required.
Request body
- JSON payload following the LeakSearchFilters schema.
Query parameters
- format optional output format: csv (default), txt, or json.
Limits and plan requirement
- You can have at most 5 exports with status PENDING or IN_PROGRESS per account.
- Requires a paid plan with advanced_search enabled.
Response ExportResponse with status, message, and export_id.
post/search/advanced/export
Query parameters
format'csv' | 'txt' | 'json'
Output format: csv (default), txt, or json.
Request body
Example request
{
"password": [
"123456"
],
"url_domain": [
"example.com"
]
}Response
Export queued successfully.
Example response
{
"export_id": 1234,
"message": "Your export request has been queued. Check the Exports page for progress.",
"status": "queued"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.