Sysdig · Arazzo Workflow

Sysdig Scanned Image Inventory Review

Version 1.0.0

List scanned images, pick the first, and pull its vulnerabilities and SBOM.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Cloud SecurityContainersKubernetesRuntime SecuritySecurityVulnerability ManagementMonitoringObservabilityCSPMComplianceArazzoWorkflows

Provider

sysdig

Workflows

scanned-image-inventory-review
Walk the scanned-image inventory and inspect the first image.
Lists scanned images, takes the first image id, and retrieves both its vulnerability findings and its SBOM.
3 steps inputs: bearerToken, limit outputs: fullTag, imageId, sbomComponents, vulnerabilities
1
listImages
Retrieve the inventory of scanned container images.
2
getVulns
Retrieve the vulnerability findings for the first scanned image.
3
getSbom
Retrieve the SBOM for the first scanned image.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Sysdig Scanned Image Inventory Review
  summary: List scanned images, pick the first, and pull its vulnerabilities and SBOM.
  description: >-
    An inventory review flow against Sysdig Secure. It lists all container
    images that have been scanned, selects the first image from the inventory,
    retrieves that image's vulnerability findings, and pulls its SBOM so a
    reviewer can assess the most recently catalogued image end to end. Every
    step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: imageScanningApi
  url: ../openapi/sysdig-image-scanning-api-openapi.yml
  type: openapi
- name: sbomApi
  url: ../openapi/sysdig-sbom-api-openapi.yml
  type: openapi
- name: vulnerabilitiesApi
  url: ../openapi/sysdig-vulnerabilities-api-openapi.yml
  type: openapi
workflows:
- workflowId: scanned-image-inventory-review
  summary: Walk the scanned-image inventory and inspect the first image.
  description: >-
    Lists scanned images, takes the first image id, and retrieves both its
    vulnerability findings and its SBOM.
  inputs:
    type: object
    required:
    - bearerToken
    properties:
      bearerToken:
        type: string
        description: Sysdig API bearer token used for Authorization.
      limit:
        type: integer
        description: Maximum number of scanned images to list.
        default: 50
  steps:
  - stepId: listImages
    description: Retrieve the inventory of scanned container images.
    operationId: listScannedImages
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.bearerToken
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      imageId: $response.body#/images/0/imageId
      fullTag: $response.body#/images/0/fullTag
  - stepId: getVulns
    description: Retrieve the vulnerability findings for the first scanned image.
    operationId: getImageVulnerabilities
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.bearerToken
    - name: imageId
      in: path
      value: $steps.listImages.outputs.imageId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      vulnerabilities: $response.body#/vulnerabilities
  - stepId: getSbom
    description: Retrieve the SBOM for the first scanned image.
    operationId: getImageSBOM
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.bearerToken
    - name: imageId
      in: path
      value: $steps.listImages.outputs.imageId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      components: $response.body#/components
  outputs:
    imageId: $steps.listImages.outputs.imageId
    fullTag: $steps.listImages.outputs.fullTag
    vulnerabilities: $steps.getVulns.outputs.vulnerabilities
    sbomComponents: $steps.getSbom.outputs.components

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/sysdig-scanned-image-inventory-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.