ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

webflow

Manage Webflow sites, CMS collections, and forms via API. Publish sites and manage content programmatically.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/mrgoodb/webflow
Or

Webflow

Website builder and CMS.

Environment

export WEBFLOW_API_TOKEN="xxxxxxxxxx"

List Sites

curl "https://api.webflow.com/v2/sites" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN"

Get Site Details

curl "https://api.webflow.com/v2/sites/{site_id}" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN"

List Collections (CMS)

curl "https://api.webflow.com/v2/sites/{site_id}/collections" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN"

List Collection Items

curl "https://api.webflow.com/v2/collections/{collection_id}/items" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN"

Create CMS Item

curl -X POST "https://api.webflow.com/v2/collections/{collection_id}/items" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "fieldData": {
      "name": "New Blog Post",
      "slug": "new-blog-post",
      "content": "Post content here..."
    }
  }'

Publish Site

curl -X POST "https://api.webflow.com/v2/sites/{site_id}/publish" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN"

List Form Submissions

curl "https://api.webflow.com/v2/sites/{site_id}/forms/{form_id}/submissions" \
  -H "Authorization: Bearer $WEBFLOW_API_TOKEN"

Links

Metadata

Author@mrgoodb
Stars1401
Views1
Updated2026-02-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-mrgoodb-webflow": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.