Etsy · Arazzo Workflow

Etsy Clone an Image to a New Listing

Version 1.0.0

Read a source listing's images, create a new draft listing, and assign the source image.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub MarketplaceE-CommerceHandmadeListingsOrderPaymentsReviewsShippingTaxonomyAuthenticationArazzoWorkflows

Provider

etsy

Workflows

clone-image-to-new-listing
Reuse a source listing's image on a brand-new draft listing.
Reads the images of a source listing, creates a new draft listing, and assigns the source image to it by image ID.
3 steps inputs: accessToken, apiKey, description, price, quantity, shippingProfileId, shopId, sourceListingId, taxonomyId, title outputs: listingId, listingImageId, sourceImageId
1
getSourceImages
Read the images on the source listing and capture the first image ID.
2
createListing
Create a new draft physical listing to receive the cloned image.
3
assignImage
Assign the source listing's image to the new listing by referencing its listing_image_id.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Etsy Clone an Image to a New Listing
  summary: Read a source listing's images, create a new draft listing, and assign the source image.
  description: >-
    A merchandising flow for reusing existing imagery. It reads the images on a
    source listing, creates a new draft physical listing, and assigns the
    source listing's first image to the new listing by passing its
    listing_image_id to the image upload endpoint. Every step spells out its
    request inline — including the x-api-key and OAuth bearer headers — so the
    flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-2370.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-2370.20
      capability_name: Product Content Authoring Management
      spec: etsy-shoplisting-image-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: shoplistingApi
  url: ../openapi/etsy-shoplisting-api-openapi.yml
  type: openapi
- name: shoplistingImageApi
  url: ../openapi/etsy-shoplisting-image-api-openapi.yml
  type: openapi
workflows:
- workflowId: clone-image-to-new-listing
  summary: Reuse a source listing's image on a brand-new draft listing.
  description: >-
    Reads the images of a source listing, creates a new draft listing, and
    assigns the source image to it by image ID.
  inputs:
    type: object
    required:
    - apiKey
    - accessToken
    - shopId
    - sourceListingId
    - title
    - description
    - price
    - quantity
    - taxonomyId
    - shippingProfileId
    properties:
      apiKey:
        type: string
        description: The Etsy app API key sent in the x-api-key header.
      accessToken:
        type: string
        description: The OAuth 2.0 bearer token for the authenticated seller.
      shopId:
        type: integer
        description: The unique positive non-zero numeric ID for the Etsy shop.
      sourceListingId:
        type: integer
        description: The listing whose image will be reused.
      title:
        type: string
        description: The new listing title.
      description:
        type: string
        description: The new listing description.
      price:
        type: number
        description: The minimum listing price.
      quantity:
        type: integer
        description: The number of products available for purchase.
      taxonomyId:
        type: integer
        description: The seller taxonomy ID for the listing.
      shippingProfileId:
        type: integer
        description: The shipping profile ID to attach to this physical listing.
  steps:
  - stepId: getSourceImages
    description: Read the images on the source listing and capture the first image ID.
    operationId: getListingImages
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: listing_id
      in: path
      value: $inputs.sourceListingId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sourceImageId: $response.body#/results/0/listing_image_id
  - stepId: createListing
    description: Create a new draft physical listing to receive the cloned image.
    operationId: createDraftListing
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: shop_id
      in: path
      value: $inputs.shopId
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        quantity: $inputs.quantity
        title: $inputs.title
        description: $inputs.description
        price: $inputs.price
        who_made: i_did
        when_made: made_to_order
        taxonomy_id: $inputs.taxonomyId
        shipping_profile_id: $inputs.shippingProfileId
        type: physical
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      listingId: $response.body#/listing_id
  - stepId: assignImage
    description: >-
      Assign the source listing's image to the new listing by referencing its
      listing_image_id.
    operationId: uploadListingImage
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: shop_id
      in: path
      value: $inputs.shopId
    - name: listing_id
      in: path
      value: $steps.createListing.outputs.listingId
    requestBody:
      contentType: multipart/form-data
      payload:
        listing_image_id: $steps.getSourceImages.outputs.sourceImageId
        rank: 1
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      listingImageId: $response.body#/listing_image_id
  outputs:
    sourceImageId: $steps.getSourceImages.outputs.sourceImageId
    listingId: $steps.createListing.outputs.listingId
    listingImageId: $steps.assignImage.outputs.listingImageId

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/etsy-clone-image-to-new-listing-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.