Webflow API and Documentation · Arazzo Workflow

Webflow Update Page SEO and Publish

Version 1.0.0

List a site's pages, read the first page's metadata, update its SEO, then publish the site.

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

Provider

webflow-api-and-documentation-webflow

Workflows

update-page-seo
Read a page's metadata, update its SEO, and publish the site.
Lists the pages on a site, reads the first page's metadata, updates the page's SEO and Open Graph settings, and publishes the site.
4 steps inputs: accessToken, pageTitle, seoDescription, seoTitle, siteId outputs: pageId
1
listPages
List the pages that belong to the site.
2
getPageMetadata
Read the first page's current metadata.
3
updatePage
Update the page's title and SEO and Open Graph fields.
4
publishSite
Publish the site so the updated page metadata goes live.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Webflow Update Page SEO and Publish
  summary: List a site's pages, read the first page's metadata, update its SEO, then publish the site.
  description: >-
    Improves a page's search and social presence and pushes it live. The
    workflow lists the pages on a site, reads the first page's current metadata,
    updates its title, slug, and SEO and Open Graph fields, and publishes the
    site so the changes take effect. 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: pagesApi
  url: ../openapi/webflow-api-and-documentation-webflow-pages-api-openapi.yml
  type: openapi
- name: sitesApi
  url: ../openapi/webflow-api-and-documentation-webflow-sites-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-page-seo
  summary: Read a page's metadata, update its SEO, and publish the site.
  description: >-
    Lists the pages on a site, reads the first page's metadata, updates the
    page's SEO and Open Graph settings, and publishes the site.
  inputs:
    type: object
    required:
    - accessToken
    - siteId
    - pageTitle
    - seoTitle
    - seoDescription
    properties:
      accessToken:
        type: string
        description: Webflow OAuth bearer token with pages:read, pages:write, and sites:write scopes.
      siteId:
        type: string
        description: Unique identifier for the Site whose page is updated.
      pageTitle:
        type: string
        description: New title for the page.
      seoTitle:
        type: string
        description: SEO title shown in search engine results.
      seoDescription:
        type: string
        description: SEO description shown in search engine results.
  steps:
  - stepId: listPages
    description: List the pages that belong to the site.
    operationId: list-pages
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstPageId: $response.body#/pages/0/id
  - stepId: getPageMetadata
    description: Read the first page's current metadata.
    operationId: get-page-metadata
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: page_id
      in: path
      value: $steps.listPages.outputs.firstPageId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pageId: $response.body#/id
  - stepId: updatePage
    description: Update the page's title and SEO and Open Graph fields.
    operationId: update-page-settings
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: page_id
      in: path
      value: $steps.getPageMetadata.outputs.pageId
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.pageTitle
        seo:
          title: $inputs.seoTitle
          description: $inputs.seoDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      pageId: $response.body#/id
  - stepId: publishSite
    description: Publish the site so the updated page metadata goes live.
    operationId: site-publish
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    - name: site_id
      in: path
      value: $inputs.siteId
    requestBody:
      contentType: application/json
      payload:
        publishToWebflowSubdomain: true
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      publishToWebflowSubdomain: $response.body#/publishToWebflowSubdomain
  outputs:
    pageId: $steps.getPageMetadata.outputs.pageId

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-update-page-seo-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.