GET
/
v1
/
scans
/
results
curl --request GET \
  --url https://api.projectdiscovery.io/v1/scans/results \
  --header 'X-API-Key: <api-key>'
{
  "current_page": 123,
  "result_count": 123,
  "total_results": 123,
  "total_pages": 123,
  "message": "<string>",
  "data": [
    {
      "matcher_status": true,
      "vuln_id": "<string>",
      "target": "<string>",
      "template_url": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "scan_id": "<string>",
      "event": [
        {
          "curl-command": "<string>",
          "extracted-results": [
            "<string>"
          ],
          "extractor-name": "<string>",
          "host": "<string>",
          "info": {
            "classification": {
              "cpe": "<string>",
              "cve-id": [
                "<string>"
              ],
              "cvss-metrics": "<string>",
              "cvss-score": 123,
              "cwe-id": [
                "<string>"
              ],
              "epss-percentile": 123,
              "epss-score": 123
            },
            "metadata": {},
            "author": [
              "<string>"
            ],
            "description": "<string>",
            "impact": "<string>",
            "name": "<string>",
            "tags": [
              "<string>"
            ],
            "reference": [
              "<string>"
            ],
            "remediation": "<string>",
            "severity": "<string>"
          },
          "ip": "<string>",
          "matched-at": "<string>",
          "matched-line": [
            123
          ],
          "matcher-name": "<string>",
          "matcher-status": true,
          "path": "<string>",
          "request": "<string>",
          "response": "<string>",
          "template-id": "<string>",
          "template-path": "<string>",
          "timestamp": "<string>",
          "type": "<string>",
          "issue_trackers": {
            "jira": {
              "id": "<string>",
              "url": "<string>"
            },
            "github": {
              "id": "<string>",
              "url": "<string>"
            },
            "gitlab": {
              "id": "<string>",
              "url": "<string>"
            },
            "linear": {
              "id": "<string>",
              "url": "<string>"
            }
          }
        }
      ],
      "template_id": "<string>",
      "template_path": "<string>",
      "template_encoded": "<string>",
      "result_type": "<string>",
      "vuln_status": "<string>",
      "vuln_hash": "<string>",
      "labels": [
        "<string>"
      ]
    }
  ],
  "stats": {
    "total": 123
  },
  "filters": {}
}

Authorizations

X-API-Key
string
header
required

Headers

X-Team-Id
string

Query Parameters

offset
integer

number of results to skip

limit
integer

number of results to get

severity
string

string separated by comma e.g. info,high

search term

hosts
string

comma separated host e.g. hosts=https://example.com,https://x.com

templates
string

comma separated templates e.g. templates=tech-detect,azure-takeover

time
string

filter by time ( last_day, last_week, last_month )

vuln_status
string

comma separated vuln_status e.g vuln_status=open,fixed

tags
string

comma separated tags e.g tags=xss,cve

sort_asc
string

comma separated ascending sorting e.g sort_asc=created_at,severity

sort_desc
string

comma separated descending sorting e.g sort_desc=created_at,severity

is_ticket
boolean

Return the records that have issue trackers

labels
string

filter by comma separated labels e.g labels=p1,p2

Response

200
application/json
Example response

The response is of type object.