Adobe Creative Cloud · Arazzo Workflow

Adobe Creative Cloud Firefly Generate Similar Images

Version 1.0.0

Upload a reference image then generate visually similar variations.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Ai MlCloudCreativeDesignDocumentsPhotographySoftware-as-a-ServiceVideoArazzoWorkflows

Provider

adobe-creative-cloud

Workflows

firefly-generate-similar
Upload a reference image and generate visually similar variations.
Uploads a reference image to Firefly storage, then generates a set of variations that are visually similar to it.
2 steps inputs: accessToken, apiKey, contentType, numVariations, prompt, referenceImage outputs: firstImageUrl, uploadId
1
uploadReference
Upload the reference image to Firefly temporary storage.
2
generateSimilar
Generate variations that are visually similar to the uploaded reference image, optionally guided by the prompt.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Creative Cloud Firefly Generate Similar Images
  summary: Upload a reference image then generate visually similar variations.
  description: >-
    Similar-image generation with Adobe Firefly. The workflow uploads a
    reference image to Firefly temporary storage to obtain an upload ID, then
    calls the generate-similar endpoint to produce variations that resemble the
    reference, optionally guided by a text prompt. Every step spells out its
    request inline, including the bearer token and x-api-key, so the flow can
    be read and run without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: imageGenerationApi
  url: ../openapi/adobe-creative-cloud-image-generation-api-openapi.yml
  type: openapi
- name: utilitiesApi
  url: ../openapi/adobe-creative-cloud-utilities-api-openapi.yml
  type: openapi
workflows:
- workflowId: firefly-generate-similar
  summary: Upload a reference image and generate visually similar variations.
  description: >-
    Uploads a reference image to Firefly storage, then generates a set of
    variations that are visually similar to it.
  inputs:
    type: object
    required:
    - accessToken
    - apiKey
    - referenceImage
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token from the Adobe IMS token endpoint.
      apiKey:
        type: string
        description: Client ID (x-api-key) from the Adobe Developer Console project.
      referenceImage:
        type: string
        description: Binary contents of the reference image.
      contentType:
        type: string
        description: MIME type of the uploaded image.
        default: image/png
      prompt:
        type: string
        description: Optional text prompt to guide similar generation.
        default: ""
      numVariations:
        type: integer
        description: Number of similar variations to generate (1-4).
        default: 1
  steps:
  - stepId: uploadReference
    description: Upload the reference image to Firefly temporary storage.
    operationId: uploadImage
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: $inputs.contentType
      payload: $inputs.referenceImage
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uploadId: $response.body#/images/0/id
  - stepId: generateSimilar
    description: >-
      Generate variations that are visually similar to the uploaded reference
      image, optionally guided by the prompt.
    operationId: generateSimilarImages
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        image:
          source:
            uploadId: $steps.uploadReference.outputs.uploadId
        prompt: $inputs.prompt
        numVariations: $inputs.numVariations
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstImageUrl: $response.body#/outputs/0/image/url
      outputs: $response.body#/outputs
  outputs:
    uploadId: $steps.uploadReference.outputs.uploadId
    firstImageUrl: $steps.generateSimilar.outputs.firstImageUrl

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/adobe-creative-cloud-firefly-generate-similar-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.