Developer docs

Webflow integration

Webflow is a no-code website design and hosting platform, letting users build…

Updated June 2026 52 actions available

Provider
webflow
Category
Other
Setup
User-supplied API key
Actions
52 available

Quick start

Call Webflow from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Webflow's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "WEBFLOW_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Webflow API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

52 actions exposed via the Webflow integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 52 actions
  • WEBFLOW_FULFILL_ORDER
  • WEBFLOW_GET_ASSET
  • WEBFLOW_GET_ASSET_FOLDER
  • WEBFLOW_GET_COLLECTION
  • WEBFLOW_GET_COLLECTION_ITEM
  • WEBFLOW_GET_COMPONENT_PROPERTIES
  • WEBFLOW_GET_CUSTOM_DOMAINS
  • WEBFLOW_GET_ITEM_INVENTORY
  • WEBFLOW_GET_LIVE_COLLECTION_ITEM
  • WEBFLOW_GET_ORDER
  • WEBFLOW_GET_PAGE
  • WEBFLOW_GET_PAGE_DOM
  • WEBFLOW_GET_SITE_INFO
  • WEBFLOW_GET_TOKEN_AUTHORIZED_BY
  • WEBFLOW_LIST_ASSET_FOLDERS
  • WEBFLOW_LIST_ASSETS
  • WEBFLOW_LIST_COLLECTION_ITEMS
  • WEBFLOW_LIST_COLLECTIONS
  • WEBFLOW_LIST_COMMENT_THREADS
  • WEBFLOW_LIST_FORM_SUBMISSIONS
  • WEBFLOW_LIST_ORDERS
  • WEBFLOW_LIST_PAGES
  • WEBFLOW_LIST_WEBFLOW_SITES
  • WEBFLOW_LIST_WEBHOOKS
  • WEBFLOW_PUBLISH_COLLECTION_ITEMS
  • WEBFLOW_PUBLISH_SITE
  • WEBFLOW_REFUND_ORDER
  • WEBFLOW_UNFULFILL_ORDER
  • WEBFLOW_UNPUBLISH_LIVE_COLLECTION_ITEM
  • WEBFLOW_UNPUBLISH_LIVE_COLLECTION_ITEMS
  • WEBFLOW_UPDATE_COLLECTION_FIELD
  • WEBFLOW_UPDATE_COLLECTION_ITEM
  • WEBFLOW_UPDATE_COLLECTION_ITEM_V2
  • WEBFLOW_UPDATE_ITEM_INVENTORY
  • WEBFLOW_UPDATE_LIVE_COLLECTION_ITEM
  • WEBFLOW_UPDATE_LIVE_COLLECTION_ITEMS
  • WEBFLOW_UPDATE_ORDER
  • WEBFLOW_UPDATE_PAGE_METADATA
  • WEBFLOW_UPDATE_SITE
  • WEBFLOW_UPLOAD_ASSET

Build with Webflow

Open OverSkill, describe what you want to build, and reference Webflow in your prompt — the AI will wire up the integration automatically.