webflow-performance-tuning

Solid

Optimize Webflow API performance with response caching, bulk endpoint batching, CDN-cached live item reads, pagination optimization, and connection pooling. Use when experiencing slow API responses or optimizing request throughput. Trigger with phrases like "webflow performance", "optimize webflow", "webflow latency", "webflow caching", "webflow slow", "webflow batch".

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 Performance Tuning ## Overview Optimize Webflow Data API v2 performance. Key insight: **CDN-cached requests to live items have no rate limits** — use the Content Delivery API for read-heavy workloads and reserve write API calls for mutations. ## Prerequisites - `webflow-api` SDK installed - Understanding of your read/write ratio - Redis or in-memory cache (optional) ## Webflow Performance Characteristics | Operation | Typical Latency | Rate Limited | Cacheable | |-----------|----------------|--------------|-----------| | Live items (CDN) | 5-50ms | No | Yes (CDN) | | Staged items | 50-200ms | Yes | Application cache | | Create/update item | 100-300ms | Yes | No | | Bulk create (100) | 200-500ms | Yes (1 count) | No | | Site publish | 500-2000ms | 1/min | No | | List collections | 50-150ms | Yes | Application cache | **Key optimization: CDN-cached live item reads do not count against rate limits.** ## Instructions ### Strategy 1: Use Content Delivery API for Reads ```typescript // For published content that visitors see, use live item endpoints. // These are served by Webflow's CDN and have no rate limits. async function getPublishedContent(collectionId: string) { // CDN-cached — fast, no rate limit const { items } = await webflow.collections.items.listItemsLive(collectionId, { limit: 100, }); return items; } // Single live item — also CDN-cached async function getPublishedItem(collectionId: string, itemId: string) { return webflow.collectio...

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 Solid

webflow-cost-tuning

Optimize Webflow costs through plan selection, CDN read optimization, bulk endpoint usage, and API usage monitoring with budget alerts. Use when analyzing Webflow billing, reducing API costs, or implementing usage monitoring for Webflow integrations. Trigger with phrases like "webflow cost", "webflow billing", "reduce webflow costs", "webflow pricing", "webflow budget".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-performance-tuning

Optimize Klaviyo API performance with caching, batching, and pagination tuning. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Klaviyo integrations. Trigger with phrases like "klaviyo performance", "optimize klaviyo", "klaviyo latency", "klaviyo caching", "klaviyo slow", "klaviyo batch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

appfolio-performance-tuning

Optimize AppFolio API performance with caching and batch operations. Trigger: "appfolio performance".

2,266 Updated today
jeremylongshore
API & Backend Listed

performance

Optimize web performance for faster loading and better user experience. Use when asked to "speed up my site", "optimize performance", "reduce load time", "fix slow loading", "improve page speed", or "performance audit".

9 Updated yesterday
RodrigoTomeES
AI & Automation Featured

adobe-performance-tuning

Optimize Adobe API performance with token caching, async job batching, connection pooling, and response caching for Firefly, PDF Services, and Photoshop API workflows. Trigger with phrases like "adobe performance", "optimize adobe", "adobe latency", "adobe caching", "adobe slow", "adobe batch".

2,266 Updated today
jeremylongshore