GET
/
v1
/
asset
/
enumerate
/
filters
Group assets by filters
curl --request GET \
  --url https://api.projectdiscovery.io/v1/asset/enumerate/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

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
favicon
string
labels
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
sort_desc
enum<string>

supported sort fields

Available options:
cname,
content_length,
favicon,
host,
ip,
port,
status_code,
technologies,
title,
webserver
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
is_favicon
boolean

Filter items with favicon

only_dns
boolean

Query only dns FQDN records

only_ip
boolean

Query only dns IP records

custom_filter
string

Filter by custom filter. Double encode the query string.

Response

200
application/json

Example response

The response is of type object.