GET
/
v1
/
scans
/
{scan_id}
/
error_log
Get elogs of given scan id
curl --request GET \
  --url https://api.projectdiscovery.io/v1/scans/{scan_id}/error_log \
  --header 'X-API-Key: <api-key>'
{
  "logs": [
    {
      "target": "<string>",
      "template_id": "<string>",
      "matched": true,
      "error": "<string>",
      "timestamp": "<string>",
      "severity": "<string>",
      "event": "<string>",
      "vuln_hash": "<string>"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

X-API-Key
string
header
required

Headers

X-Team-Id
string

Path Parameters

scan_id
string
required

Query Parameters

host
string

target to search in log

template
string

template to search in log

matched
string

status to search in log

time
string<date-time>

time to filter the logs

string to search in error, target and template

error
string

error to search in log

next_page_token
string

next page token

Response

200
application/json

OK

The response is of type object.