Webflow API and Documentation · Arazzo Workflow

Webflow Resolve Site and Add Collection Item

Version 1.0.0

List sites, pick a site's first collection, and add an item to it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CMSContent ManagementE-CommerceNo-CodePublishingWeb DevelopmentArazzoWorkflows

Provider

webflow-api-and-documentation-webflow

Workflows

resolve-site-add-item
Discover a site and its first collection, then create an item.
Lists accessible sites, lists the collections on the selected site, confirms the first collection's details, and creates a new item in that collection.
4 steps inputs: accessToken, itemName, itemSlug, siteId outputs: collectionId, itemId
1
listSites
List all sites the access token can access.
2
listCollections
List the collections that belong to the selected site.
3
collectionDetails
Read the details of the first collection to confirm its schema.
4
createItem
Create a new item in the resolved collection.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Webflow Resolve Site and Add Collection Item
  summary: List sites, pick a site's first collection, and add an item to it.
  description: >-
    A discovery-first content workflow for integrations that do not yet know the
    target collection. It lists the sites the token can access, lists the
    collections on the chosen site, reads the details of the first collection to
    confirm its schema, and then creates a new item in that collection. 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: collectionsApi
  url: ../openapi/webflow-api-and-documentation-webflow-collections-api-openapi.yml
  type: openapi
- name: sitesApi
  url: ../openapi/webflow-api-and-documentation-webflow-sites-api-openapi.yml
  type: openapi
workflows:
- workflowId: resolve-site-add-item
  summary: Discover a site and its first collection, then create an item.
  description: >-
    Lists accessible sites, lists the collections on the selected site, confirms
    the first collection's details, and creates a new item in that collection.
  inputs:
    type: object
    required:
    - accessToken
    - siteId
    - itemName
    - itemSlug
    properties:
      accessToken:
        type: string
        description: Webflow OAuth bearer token with cms:read and cms:write scopes.
      siteId:
        type: string
        description: Unique identifier for the Site to inspect.
      itemName:
        type: string
        description: Name of the item to create.
      itemSlug:
        type: string
        description: URL slug of the item to create.
  steps:
  - stepId: listSites
    description: List all sites the access token can access.
    operationId: list-sites
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstSiteId: $response.body#/sites/0/id
  - stepId: listCollections
    description: List the collections that belong to the selected site.
    operationId: list-collections
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstCollectionId: $response.body#/collections/0/id
  - stepId: collectionDetails
    description: Read the details of the first collection to confirm its schema.
    operationId: collection-details
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: collection_id
      in: path
      value: $steps.listCollections.outputs.firstCollectionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      collectionId: $response.body#/id
  - stepId: createItem
    description: Create a new item in the resolved collection.
    operationId: create-item
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: collection_id
      in: path
      value: $steps.collectionDetails.outputs.collectionId
    requestBody:
      contentType: application/json
      payload:
        isArchived: false
        isDraft: true
        fieldData:
          name: $inputs.itemName
          slug: $inputs.itemSlug
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      itemId: $response.body#/id
  outputs:
    collectionId: $steps.collectionDetails.outputs.collectionId
    itemId: $steps.createItem.outputs.itemId

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/webflow-api-and-documentation-webflow-resolve-site-add-item-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.