- Home
- Skills
- 224 Industries
- Webflow Skills
- Webflow Enterprise Api
webflow-enterprise-api_skill
- Python
6
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
3 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill 224-industries/webflow-skills --skill webflow-enterprise-api- SKILL.md4.1 KB
Overview
This skill exposes Enterprise-only Webflow API endpoints for managing workspaces, audit and site activity logs, site-level configuration (301 redirects, robots.txt, well-known files), and site lifecycle actions. It targets Enterprise workspaces and requires workspace-scoped tokens and appropriate API scopes to operate. Use it to automate governance, compliance, redirects, and site configuration across an Enterprise environment.
How this skill works
The skill wraps Webflow Enterprise endpoints under the v2 base URL and performs authenticated requests with Authorization: Bearer <token>. It inspects and modifies workspace audit logs, site activity logs, redirect rules, robots.txt contents, and .well-known files, and it can create, update, or delete sites when operating with workspace:write scope. List endpoints support pagination via limit and offset and all responses should be checked for rate-limit headers.
When to use it
- Automating audit and activity monitoring for Enterprise workspaces and sites.
- Bulk managing or syncing 301 redirects across many sites.
- Programmatically updating robots.txt or uploading .well-known files for security and verification.
- Creating, updating, or decommissioning sites within an Enterprise workspace.
- Extracting site plan or usage information for billing or reporting workflows.
Best practices
- Use workspace API tokens (not site tokens) for workspace-level endpoints and ensure required scopes are granted.
- Respect rate limits: inspect X-RateLimit-Remaining and implement retry/backoff logic.
- Paginate list calls using limit and offset to avoid large payloads and timeouts.
- Validate Enterprise plan availability before calling endpoints; non-Enterprise workspaces return errors.
- Use idempotent operations where possible (check existing redirects or robots.txt before creating duplicates).
Example use cases
- Scheduled job that pulls workspace audit logs daily and ships them to a SIEM for compliance.
- Admin tool that lists site activity logs to show recent publishes, branch merges, and CMS changes.
- Script to deploy consistent robots.txt rules and sitemap URLs across multiple Enterprise sites.
- Bulk redirect manager that creates, updates, or removes 301 rules during a site migration.
- Automated onboarding flow that creates new sites in a workspace and uploads required .well-known verification files.
FAQ
No. Workspace-level endpoints require workspace API tokens. Site tokens do not grant access to Enterprise workspace operations.
What happens if my workspace is not Enterprise?
Enterprise-only endpoints will return errors on non-Enterprise plans. Confirm the workspace plan before calling these APIs.