Adobe Premiere Pro · Arazzo Workflow

Adobe Premiere Fetch Library Element Representation

Version 1.0.0

Resolve an element then fetch one of its representations by id.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AdobeAutomationCreative CloudMediaPremiere ProVideo EditingVideo ProductionArazzoWorkflows

Provider

adobe-premiere

Workflows

fetch-element-representation
Read an element, then retrieve a specific representation of it.
Reads the element by id to confirm it is retrievable and to expose its representations array, then fetches one representation by its identifier to obtain the format-specific content payload.
2 steps inputs: accessToken, elementId, libraryId, representationId outputs: elementId, representationId, representationType
1
getElement
Read the element to confirm it exists and to expose its available representations.
2
getRepresentation
Fetch a single representation of the confirmed element to obtain its format type and content payload.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adobe Premiere Fetch Library Element Representation
  summary: Resolve an element then fetch one of its representations by id.
  description: >-
    A resolve-then-fetch flow for the Adobe Creative Cloud Libraries API used by
    Premiere Pro. The workflow reads a library element to confirm it exists and
    to enumerate its available representations, then fetches a single named
    representation (rendition) of that element. Each 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: elementsApi
  url: ../openapi/adobe-premiere-elements-api-openapi.yml
  type: openapi
- name: representationsApi
  url: ../openapi/adobe-premiere-representations-api-openapi.yml
  type: openapi
workflows:
- workflowId: fetch-element-representation
  summary: Read an element, then retrieve a specific representation of it.
  description: >-
    Reads the element by id to confirm it is retrievable and to expose its
    representations array, then fetches one representation by its identifier to
    obtain the format-specific content payload.
  inputs:
    type: object
    required:
    - accessToken
    - libraryId
    - elementId
    - representationId
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the Creative Cloud Libraries API.
      libraryId:
        type: string
        description: Identifier of the library that contains the element.
      elementId:
        type: string
        description: Identifier of the element to read.
      representationId:
        type: string
        description: Identifier of the representation (rendition) to fetch.
  steps:
  - stepId: getElement
    description: >-
      Read the element to confirm it exists and to expose its available
      representations.
    operationId: getLibraryElement
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: libraryId
      in: path
      value: $inputs.libraryId
    - name: elementId
      in: path
      value: $inputs.elementId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      elementId: $response.body#/id
      representations: $response.body#/representations
  - stepId: getRepresentation
    description: >-
      Fetch a single representation of the confirmed element to obtain its
      format type and content payload.
    operationId: getElementRepresentation
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: libraryId
      in: path
      value: $inputs.libraryId
    - name: elementId
      in: path
      value: $steps.getElement.outputs.elementId
    - name: representationId
      in: path
      value: $inputs.representationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      representationId: $response.body#/id
      representationType: $response.body#/type
      content: $response.body#/content
  outputs:
    elementId: $steps.getElement.outputs.elementId
    representationId: $steps.getRepresentation.outputs.representationId
    representationType: $steps.getRepresentation.outputs.representationType

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-premiere-fetch-element-representation-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.