GET
/
v1
/
leaks
/
domain
Your GET endpoint
curl --request GET \
  --url https://api.projectdiscovery.io/v1/leaks/domain \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "url": "<string>",
      "username": "<string>",
      "password": "<string>",
      "device_ip": "<string>",
      "host_username": "<string>",
      "os": "<string>",
      "malware_path": "<string>",
      "country": "<string>",
      "log_date": "<string>",
      "hardware_id": "<string>",
      "hostname": "<string>",
      "status": "fixed"
    }
  ],
  "total_leaks": 123,
  "filtered": true,
  "search_query": "<string>",
  "total_pages": 123,
  "current_page": 123
}

Authorizations

X-API-Key
string
header
required

Query Parameters

Search query to filter results across all fields

limit
number

Number of results per page for pagination

page_number
number

Page number for pagination (starts from 1)

start_date
string<date>

time filter start date

time_range
enum<string>
default:all_time
Available options:
all_time,
current_month,
last_month,
last_3_months,
last_6_months,
last_12_months
end_date
string<date>

time filter end date

sort_by
enum<string>

supported sort fields

Available options:
url,
username,
log_date,
country,
device_ip,
host_username,
hostname,
os,
source,
hardware_id,
malware_path
sort_order
enum<string>

supported sort order (asc or desc)

Available options:
asc,
desc
status
enum<string>

supported status (fixed or unfixed)

Available options:
fixed,
unfixed

Response

200
application/json

OK

The response is of type object.