Skip to main content
GET
/
v1
/
vulnerabilities
/
{id}
Get a specific vulnerability
curl --request GET \
  --url https://api.synack.com/v1/vulnerabilities/{id} \
  --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.

Path Parameters

id
string
required

Vulnerability ID

Response

Vulnerability 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[]