GET
/
v1
/
tenant
/
assets
/
{assetId}
/
sbom
Get SBOM for a specific asset
curl --request GET \
  --url https://{region}.api.plerion.com/v1/tenant/assets/{assetId}/sbom \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "url": "https://your-bucket.s3.amazonaws.com/path/to/sbom.json?X-Amz-Algorithm=AWS4-HMAC-SHA256..."
  },
  "meta": {
    "fileSizeInBytes": 2621440,
    "expiresInSeconds": 3600
  }
}

Authorizations

Authorization
string
header
required

Bearer API Key. For example, "Bearer {Tenant API Key}"

Headers

Authorization
string
required

Bearer API Key. For example, "Bearer {Tenant API Key}"

Content-Type
string

application/json

Path Parameters

assetId
string
required

The asset ID to retrieve the SBOM for

Response

200
application/json

Success

The response is of type object.