webflow
Manage Webflow sites, CMS collections, and forms via API. Publish sites and manage content programmatically.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/webflowWebflow
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
- Dashboard: https://webflow.com/dashboard
- Docs: https://developers.webflow.com
Metadata
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 skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-webflow": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.