Skip to main content
GET
/
v1
/
vulnerabilities
Get vulnerabilities
curl --request GET \
  --url https://api.synack.com/v1/vulnerabilities \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "title": "<string>",
    "description": "<string>",
    "severity": "Critical",
    "status": "<string>",
    "cvss_score": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "tags": [
      {
        "id": 123,
        "name": "<string>",
        "editable": true,
        "organization_profile_id": 123
      }
    ],
    "attachments": [
      {
        "id": 123,
        "filename": "<string>",
        "content_type": "<string>",
        "file_size": 123,
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Search term for vulnerabilities

filter[status_id]
integer

Filter by vulnerability status ID

filter[updated_within]
integer

Filter by vulnerabilities updated within specified seconds

filter[updated_since]
string<date-time>

Filter by vulnerabilities updated since specified date

filter[include_attachments]
boolean

Include vulnerability attachments

page[number]
integer
default:1

Page number

Required range: x >= 1
page[size]
integer
default:50

Page size

Required range: 1 <= x <= 50

Response

Vulnerabilities retrieved successfully

id
integer
title
string
description
string
severity
enum<string>
Available options:
Critical,
High,
Medium,
Low,
Informational
status
string
cvss_score
number<float>
created_at
string<date-time>
updated_at
string<date-time>
tags
object[]
attachments
object[]