JFrog Artifactory · Arazzo Workflow

Artifactory Inspect Docker Image Manifest

Version 1.0.0

List an image's tags, then fetch the manifest for the first tag found.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArtifactsDevOpsCI/CDdocker-registryMavenPackage ManagementRepositoryArazzoWorkflows

Provider

artifactory

Workflows

inspect-docker-image-manifest
List image tags then fetch the manifest for the first tag.
Lists the tags for a Docker image and, when at least one tag is present, retrieves the manifest for the first tag.
2 steps inputs: accessToken, name outputs: manifest, tags
1
listTags
List the tags available for the image.
2
getManifest
Retrieve the v2 manifest for the first tag so its config and layers can be inspected.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Artifactory Inspect Docker Image Manifest
  summary: List an image's tags, then fetch the manifest for the first tag found.
  description: >-
    A Docker inspection flow for JFrog Artifactory. The workflow lists the tags
    available for an image, branches on whether any tags were returned, and when
    at least one tag exists fetches the v2 manifest for the first tag so its
    layers and config can be examined. 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: manifestsApi
  url: ../openapi/artifactory-manifests-api-openapi.yml
  type: openapi
- name: tagsApi
  url: ../openapi/artifactory-tags-api-openapi.yml
  type: openapi
workflows:
- workflowId: inspect-docker-image-manifest
  summary: List image tags then fetch the manifest for the first tag.
  description: >-
    Lists the tags for a Docker image and, when at least one tag is present,
    retrieves the manifest for the first tag.
  inputs:
    type: object
    required:
    - accessToken
    - name
    properties:
      accessToken:
        type: string
        description: Bearer token for authenticating with the Artifactory Docker registry.
      name:
        type: string
        description: The Docker image name/path (e.g. library/nginx).
  steps:
  - stepId: listTags
    description: List the tags available for the image.
    operationId: listTags
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: name
      in: path
      value: $inputs.name
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstTag: $response.body#/tags/0
      tags: $response.body#/tags
    onSuccess:
    - name: hasTags
      type: goto
      stepId: getManifest
      criteria:
      - context: $response.body
        condition: $.tags.length > 0
        type: jsonpath
    - name: noTags
      type: end
      criteria:
      - context: $response.body
        condition: $.tags.length == 0
        type: jsonpath
  - stepId: getManifest
    description: >-
      Retrieve the v2 manifest for the first tag so its config and layers can be
      inspected.
    operationId: getManifest
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: name
      in: path
      value: $inputs.name
    - name: reference
      in: path
      value: $steps.listTags.outputs.firstTag
    - name: Accept
      in: header
      value: application/vnd.docker.distribution.manifest.v2+json
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      manifest: $response.body
  outputs:
    tags: $steps.listTags.outputs.tags
    manifest: $steps.getManifest.outputs.manifest

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/artifactory-inspect-docker-image-manifest-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.