> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Vulnerabilities

Retrieve a list of all vulnerabilities.

<Note>
  External Documentation

  To learn more, visit the [Synack documentation](https://docs.synack.com/api-reference/vulnerabilities/get-vulnerabilities#get-vulnerabilities).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                                    |
  | ------------------- | ---------------------------------------------------------------------------------------------- |
  | Include Attachments | Select to include vulnerability attachments in the response.                                   |
  | Page Number         | The page number to retrieve. Starts at `1`.                                                    |
  | Page Size           | The maximum number of items to retrieve per page. Valid range is `1` to `50`.                  |
  | Return All Pages    | Automatically fetch all resources, page by page.                                               |
  | Search              | The search term to filter vulnerabilities by.                                                  |
  | Status ID           | The vulnerability status ID to filter results by.                                              |
  | Updated Since       | Return only vulnerabilities updated on or after the specified date and time.                   |
  | Updated Within      | Return only vulnerabilities that were updated within the last specified number of **seconds**. |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"id": 0,
		"title": "",
		"description": "",
		"severity": "Critical",
		"status": "",
		"cvss_score": 0,
		"created_at": "",
		"updated_at": "",
		"tags": [
			{
				"id": 0,
				"name": "",
				"editable": false,
				"organization_profile_id": 0
			}
		],
		"attachments": [
			{
				"id": 0,
				"filename": "",
				"content_type": "",
				"file_size": 0,
				"created_at": ""
			}
		]
	}
]
```

## Workflow Library Example

[List Vulnerabilities with Synack and Send Results Via Email](https://library.blinkops.com/workflows/list-vulnerabilities-with-synack-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-vulnerabilities-with-synack-and-send-results-via-email/canvas" />
</div>
