GET
/
v1
/
asset
/
enumerate
/
{enumerate_id}
/
history
Get Enumeration History
curl --request GET \
  --url https://api.projectdiscovery.io/v1/asset/enumerate/{enumerate_id}/history \
  --header 'X-API-Key: <api-key>'
{
  "current_page": 123,
  "result_count": 123,
  "total_pages": 123,
  "total_results": 123,
  "total_enumeration": 123,
  "total_unique_enumeration": 123,
  "data": [
    {
      "enum_id": "<string>",
      "name": "<string>",
      "enum_type": "<string>",
      "enum_started_at": "2023-11-07T05:31:56Z",
      "enum_finished_at": "2023-11-07T05:31:56Z",
      "enumeration_time": "<string>",
      "status": "<string>",
      "new_assets_discovered": 123,
      "total_targets_processed": 123,
      "error_details": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Headers

X-Team-Id
string

Path Parameters

enumerate_id
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

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

Response

200
application/json

OK

The response is of type object.