Adobe Creative Cloud · Arazzo Workflow

Adobe Creative Cloud Firefly Object Composite

Version 1.0.0

Upload an object image then composite it into an AI-generated scene.

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

Provider

adobe-creative-cloud

Workflows

firefly-object-composite
Upload an object image and composite it into a generated scene.
Uploads an object image to Firefly storage, then generates a composite that places the object into a scene described by the prompt.
2 steps inputs: accessToken, apiKey, contentType, inpaint, numVariations, objectImage, prompt outputs: firstImageUrl, uploadId
1
uploadObject
Upload the object image to Firefly temporary storage.
2
composite
Generate a composite that places the uploaded object into the scene described by the prompt, harmonizing lighting and perspective.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Creative Cloud Firefly Object Composite
  summary: Upload an object image then composite it into an AI-generated scene.
  description: >-
    Object composite generation with Adobe Firefly. The workflow uploads a
    source object image to Firefly temporary storage to obtain an upload ID,
    then calls the object composite endpoint with a prompt describing the
    target scene so the object is placed and harmonized with realistic
    lighting, perspective, and style. 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: imageEditingApi
  url: ../openapi/adobe-creative-cloud-image-editing-api-openapi.yml
  type: openapi
- name: utilitiesApi
  url: ../openapi/adobe-creative-cloud-utilities-api-openapi.yml
  type: openapi
workflows:
- workflowId: firefly-object-composite
  summary: Upload an object image and composite it into a generated scene.
  description: >-
    Uploads an object image to Firefly storage, then generates a composite
    that places the object into a scene described by the prompt.
  inputs:
    type: object
    required:
    - accessToken
    - apiKey
    - objectImage
    - prompt
    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.
      objectImage:
        type: string
        description: Binary contents of the object image to composite.
      contentType:
        type: string
        description: MIME type of the uploaded image.
        default: image/png
      prompt:
        type: string
        description: Text describing the target scene for the composite.
      inpaint:
        type: boolean
        description: Whether to harmonize the placed object with the scene.
        default: true
      numVariations:
        type: integer
        description: Number of composite variations to generate (1-4).
        default: 1
  steps:
  - stepId: uploadObject
    description: Upload the object 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.objectImage
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uploadId: $response.body#/images/0/id
  - stepId: composite
    description: >-
      Generate a composite that places the uploaded object into the scene
      described by the prompt, harmonizing lighting and perspective.
    operationId: generateObjectComposite
    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.uploadObject.outputs.uploadId
        placement:
          inpaint: $inputs.inpaint
        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.uploadObject.outputs.uploadId
    firstImageUrl: $steps.composite.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-object-composite-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.