> ## 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.

# Get SBOM

This endpoint lets you retrieve the SBOM document of a software project.
It supports the following formats:

* CycloneDX version 1.4 in JSON (set `format` to `cyclonedx1.4+json`).
* CycloneDX version 1.4 in XML (set `format` to `cyclonedx1.4+xml`).
* SPDX version 2.3 in JSON (set `format` to `spdx2.3+json`).

By default it will respond with an empty JSON:API response.

## Parameters

<div className="integrations-table">
  | Parameter       | Description                              |
  | --------------- | ---------------------------------------- |
  | Format          | The desired SBOM format of the response. |
  | Organization ID | Unique identifier for an organization.   |
  | Project ID      | Unique identifier for a project.         |
</div>

## Example Output

```json theme={"dark"}
{
	"jsonapi": {
		"version": "1.0"
	},
	"data": {
		"id": "4f45cb30-cf00-4980-80d4-da65cacbdaee",
		"type": "sbom"
	}
}
```

## Workflow Library Example

[Get Sbom with Snyk and Send Results Via Email](https://library.blinkops.com/workflows/get-sbom-with-snyk-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/get-sbom-with-snyk-and-send-results-via-email/canvas" />
</div>
