Binarly · Arazzo Workflow

Scan firmware in CI/CD with Binarly

Version 1.0.0

Create (or reuse) a product, upload a firmware/binary image, run a scan, poll until it completes, then list the findings and pull a PDF report — the core CI/CD gate flow for the Binarly Transparency Platform.

1 workflow 5 source APIs 1 provider
View Spec View on GitHub CompanySecurityFirmware SecuritySupply Chain SecurityVulnerability ManagementSBOMBinary AnalysisPost-Quantum CryptographyUEFIDevSecOpsArazzoWorkflows

Provider

binarly

Workflows

scanFirmwareInCICD
Upload a firmware image, scan it, and retrieve findings.
6 steps inputs: firmwareFile, productName outputs: imageId, productId, scanId
1
createProduct
Create a product to hold the image (skip if you already have a productId).
2
generateUploadUrl
Request a temporary upload URL for the image.
3
uploadImage
Register/upload the firmware image under the product.
4
createScan
Launch a scan over the uploaded image.
5
getScan
Poll the scan until analysis completes.
6
listFindings
Retrieve the findings grid to gate the build (fail on new criticals).

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Scan firmware in CI/CD with Binarly
  version: 1.0.0
  summary: >-
    Create (or reuse) a product, upload a firmware/binary image, run a scan, poll
    until it completes, then list the findings and pull a PDF report — the core
    CI/CD gate flow for the Binarly Transparency Platform.
sourceDescriptions:
- name: gridApi
  url: ../openapi/binarly-grid-api-openapi.yml
  type: openapi
- name: imageApi
  url: ../openapi/binarly-image-api-openapi.yml
  type: openapi
- name: productApi
  url: ../openapi/binarly-product-api-openapi.yml
  type: openapi
- name: scanApi
  url: ../openapi/binarly-scan-api-openapi.yml
  type: openapi
- name: tempfileApi
  url: ../openapi/binarly-tempfile-api-openapi.yml
  type: openapi
workflows:
- workflowId: scanFirmwareInCICD
  summary: Upload a firmware image, scan it, and retrieve findings.
  inputs:
    type: object
    properties:
      productName:
        type: string
      firmwareFile:
        type: string
        description: Path or reference to the firmware/binary artifact to scan.
  steps:
  - stepId: createProduct
    description: Create a product to hold the image (skip if you already have a productId).
    operationId: CreateProduct
    requestBody:
      payload:
        name: $inputs.productName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      productId: $response.body#/id
  - stepId: generateUploadUrl
    description: Request a temporary upload URL for the image.
    operationId: GenerateTempFileUploadURL
    parameters:
    - name: productId
      in: path
      value: $steps.createProduct.outputs.productId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: uploadImage
    description: Register/upload the firmware image under the product.
    operationId: UploadImage
    parameters:
    - name: productId
      in: path
      value: $steps.createProduct.outputs.productId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      imageId: $response.body#/id
  - stepId: createScan
    description: Launch a scan over the uploaded image.
    operationId: CreateScan
    parameters:
    - name: productId
      in: path
      value: $steps.createProduct.outputs.productId
    - name: imageId
      in: path
      value: $steps.uploadImage.outputs.imageId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      scanId: $response.body#/id
  - stepId: getScan
    description: Poll the scan until analysis completes.
    operationId: GetScan
    parameters:
    - name: productId
      in: path
      value: $steps.createProduct.outputs.productId
    - name: imageId
      in: path
      value: $steps.uploadImage.outputs.imageId
    - name: scanId
      in: path
      value: $steps.createScan.outputs.scanId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: listFindings
    description: Retrieve the findings grid to gate the build (fail on new criticals).
    operationId: GridListFindings
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    productId: $steps.createProduct.outputs.productId
    imageId: $steps.uploadImage.outputs.imageId
    scanId: $steps.createScan.outputs.scanId

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/binarly-scan-firmware"
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.