GET
/
v1
/
asset
/
domain
/
{domain_name}
/
filters
Group assets by filters for an domain
curl --request GET \
  --url https://api.projectdiscovery.io/v1/asset/domain/{domain_name}/filters \
  --header 'X-API-Key: <api-key>'
{
  "message": "<string>",
  "current_page": 123,
  "result_count": 123,
  "total_results": 123,
  "total_pages": 123,
  "data": [
    {
      "labels": "<string>",
      "value": "<string>",
      "port": 123,
      "technologies": 123,
      "categories": [
        "<string>"
      ],
      "description": "<string>",
      "website": "<string>",
      "cpe": "<string>",
      "icon": "<string>",
      "favicon_body": "<string>",
      "count": 123
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Headers

X-Team-Id
string

Path Parameters

domain_name
string
required

Query Parameters

offset
integer

The number of items to skip before starting to collect the result set

limit
integer

The numbers of items to return

host
string
port
string
ip
string
cname
string
technologies
string
status_code
string
content_length
string
domain
string[]
title
string
webserver
string
labels
string
favicon
string
group_by
enum<string>
required

Group by type. e.g. - host, port, favicon.

Available options:
host,
port,
ip,
cname,
technologies,
status_code,
content_length,
title,
webserver,
favicon,
domain,
labels
sort_asc
enum<string>

supported sort fields

Available options:
cname,
content_length,
favicon,
host,
ip,
port,
status_code,
technologies,
title,
webserver,
labels
sort_desc
enum<string>

supported sort fields

Available options:
cname,
content_length,
favicon,
host,
ip,
port,
status_code,
technologies,
title,
webserver,
labels
time
enum<string>

time filter to select

Available options:
last_day,
last_week,
last_month,
last_3_months,
last_6_months,
last_12_months,
all_time
start_date
string<date>

time filter start date

end_date
string<date>

time filter end date

is_screenshot
boolean

Response

200
application/json

Example response

The response is of type object.