Figma · Arazzo Workflow

Figma Snapshot Team Project Versions

Version 1.0.0

Walk a team to its first project, list that project's files, and read one file's version history.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UXArazzoWorkflows

Provider

figma

Workflows

snapshot-team-project-versions
Trace a team to a project file and read its version history.
Lists a team's projects, lists the first project's files, and reads the version history of the first file.
3 steps inputs: pageSize, teamId outputs: projectName, teamName, versions
1
listTeamProjects
List the projects owned by the team so the first project can be opened.
2
listProjectFiles
List the files contained in the first project so a file can be selected for its version history.
3
readVersionHistory
Read the version history of the first file, including named versions and auto-save entries.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Figma Snapshot Team Project Versions
  summary: Walk a team to its first project, list that project's files, and read one file's version history.
  description: >-
    A backup and history flow that traces a team down to the version history of
    one of its files. The workflow lists the projects owned by a team, lists
    the files in the first project, and then reads the version history of the
    first file so named versions and auto-saves can be reviewed. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description. Authentication is carried by
    the Figma personal access token bearer credential declared on each
    operation's security requirement.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-4200.30
  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-4200.30
      capability_name: Software Design Management
      spec: figma-files-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: filesApi
  url: ../openapi/figma-files-api-openapi.yml
  type: openapi
- name: projectsApi
  url: ../openapi/figma-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: snapshot-team-project-versions
  summary: Trace a team to a project file and read its version history.
  description: >-
    Lists a team's projects, lists the first project's files, and reads the
    version history of the first file.
  inputs:
    type: object
    required:
    - teamId
    properties:
      teamId:
        type: string
        description: The ID of the team whose projects are listed.
      pageSize:
        type: integer
        description: Number of version-history items to return per page.
  steps:
  - stepId: listTeamProjects
    description: >-
      List the projects owned by the team so the first project can be opened.
    operationId: getTeamProjects
    parameters:
    - name: team_id
      in: path
      value: $inputs.teamId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      teamName: $response.body#/name
      firstProjectId: $response.body#/projects/0/id
  - stepId: listProjectFiles
    description: >-
      List the files contained in the first project so a file can be selected
      for its version history.
    operationId: getProjectFiles
    parameters:
    - name: project_id
      in: path
      value: $steps.listTeamProjects.outputs.firstProjectId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      projectName: $response.body#/name
      firstFileKey: $response.body#/files/0/key
  - stepId: readVersionHistory
    description: >-
      Read the version history of the first file, including named versions and
      auto-save entries.
    operationId: getFileVersions
    parameters:
    - name: file_key
      in: path
      value: $steps.listProjectFiles.outputs.firstFileKey
    - name: page_size
      in: query
      value: $inputs.pageSize
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      versions: $response.body#/versions
  outputs:
    teamName: $steps.listTeamProjects.outputs.teamName
    projectName: $steps.listProjectFiles.outputs.projectName
    versions: $steps.readVersionHistory.outputs.versions

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/figma-snapshot-team-project-versions-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.