webflow-common-errors

Solid

Diagnose and fix Webflow Data API v2 errors — 400, 401, 403, 404, 409, 429, 500. Use when encountering Webflow API errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "webflow error", "fix webflow", "webflow not working", "debug webflow", "webflow 429", "webflow 401".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Webflow Common Errors ## Overview Quick reference for the most common Webflow Data API v2 errors, their root causes, and concrete solutions. Covers every HTTP status code the API returns. ## Prerequisites - `webflow-api` SDK installed - API token configured - Access to application logs ## HTTP Error Reference ### 400 Bad Request — Invalid Input ``` { "code": "validation_error", "message": "Invalid field data" } ``` **Common causes:** - Missing required field (`name` and `slug` are always required for CMS items) - Wrong field type (sending string for a Number field) - Invalid slug format (must be lowercase, hyphens only, no spaces) - Bulk request exceeds 100 items **Fix:** ```typescript // Check collection schema before creating items const collection = await webflow.collections.get(collectionId); const requiredFields = collection.fields?.filter(f => f.isRequired); console.log("Required fields:", requiredFields?.map(f => `${f.slug} (${f.type})`)); // Validate slug format function isValidSlug(slug: string): boolean { return /^[a-z0-9]+(?:-[a-z0-9]+)*$/.test(slug); } ``` --- ### 401 Unauthorized — Invalid Token ``` { "code": "unauthorized", "message": "Not authorized" } ``` **Common causes:** - Token revoked or expired - Token copied with extra whitespace - Using v1 API key format with v2 endpoints **Fix:** ```bash # Verify token works curl -s https://api.webflow.com/v2/sites \ -H "Authorization: Bearer $WEBFLOW_API_TOKEN" \ -w "\nHTTP Status: %{http_cod...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

adobe-common-errors

Diagnose and fix common Adobe API errors across Firefly Services, PDF Services, Photoshop API, and Adobe I/O Events. Use when encountering Adobe errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "adobe error", "fix adobe", "adobe not working", "debug adobe", "adobe 403", "adobe 429".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-security-basics

Apply Webflow API security best practices — token management, scope least privilege, OAuth 2.0 secret rotation, webhook signature verification, and audit logging. Use when securing API tokens, implementing least privilege access, or auditing Webflow security configuration. Trigger with phrases like "webflow security", "webflow secrets", "secure webflow", "webflow API key security", "webflow token rotation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

canva-common-errors

Diagnose and fix Canva Connect API errors and HTTP status codes. Use when encountering Canva errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "canva error", "fix canva", "canva not working", "debug canva", "canva 401", "canva 429".

2,266 Updated today
jeremylongshore
AI & Automation Featured

figma-common-errors

Diagnose and fix common Figma REST API and Plugin API errors. Use when encountering HTTP errors, plugin sandbox crashes, or unexpected API responses from Figma. Trigger with phrases like "figma error", "fix figma", "figma not working", "figma 403", "figma 429".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-common-errors

Diagnose and fix SalesLoft API errors: 401, 403, 422, 429, and 5xx. Use when encountering SalesLoft errors, debugging failed requests, or troubleshooting OAuth token issues. Trigger: "salesloft error", "fix salesloft", "salesloft not working", "salesloft 429".

2,266 Updated today
jeremylongshore