Search Advanced
Export distinct URLs to CSV/TXT/JSON
Queue an export of the distinct URLs from leaks that match the provided advanced search filters. Provide the filters in the JSON request body.
Request body
- filters payload following LeakSearchFilters fields.
Query parameters
- format optional output format: csv (default), txt, or json.
Limits and plan requirement
- At least one filter is required.
- Capped at 5,000,000 distinct URLs. When a filter matches more, the file holds the alphabetically first 5,000,000 and the export is flagged as limited.
- You can have at most 1 export 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_urls
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.