instantly-performance-tuning

Featured

Optimize Instantly.ai API performance with caching, batching, and connection pooling. Use when experiencing slow API responses, implementing caching strategies, or optimizing high-volume lead operations. Trigger with phrases like "instantly performance", "instantly slow", "instantly caching", "instantly batch", "optimize instantly api".

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

# Instantly Performance Tuning ## Overview Optimize Instantly API v2 integrations for speed and throughput. Key areas: caching analytics data, batching lead operations, concurrent request management, efficient pagination, and connection reuse. The email listing endpoint has a strict **20 req/min** limit that requires special handling. ## Prerequisites - Completed `instantly-install-auth` setup - Working Instantly integration - Understanding of async patterns and caching strategies ## Instructions ### Step 1: Cache Analytics Data Campaign analytics don't change every second — cache them for 5-15 minutes to avoid redundant API calls. ```typescript class InstantlyCache { private cache = new Map<string, { data: unknown; expiry: number }>(); get<T>(key: string): T | null { const entry = this.cache.get(key); if (!entry || Date.now() > entry.expiry) { this.cache.delete(key); return null; } return entry.data as T; } set(key: string, data: unknown, ttlMs: number) { this.cache.set(key, { data, expiry: Date.now() + ttlMs }); } } const cache = new InstantlyCache(); async function getCachedAnalytics(campaignId: string) { const cacheKey = `analytics:${campaignId}`; const cached = cache.get<CampaignAnalytics>(cacheKey); if (cached) return cached; const data = await instantly<CampaignAnalytics>( `/campaigns/analytics?id=${campaignId}` ); cache.set(cacheKey, data, 5 * 60 * 1000); // 5 min TTL return data; } // Cache campai...

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

instantly-cost-tuning

Optimize Instantly.ai costs through plan selection, account management, and usage monitoring. Use when analyzing Instantly billing, reducing per-campaign costs, or choosing between Instantly pricing tiers. Trigger with phrases like "instantly cost", "instantly pricing", "instantly billing", "reduce instantly cost", "instantly plan comparison".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-performance-tuning

Optimize HubSpot API performance with caching, batching, and search optimization. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for HubSpot CRM operations. Trigger with phrases like "hubspot performance", "optimize hubspot", "hubspot slow", "hubspot caching", "hubspot batch", "hubspot latency".

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

salesloft-performance-tuning

Optimize SalesLoft API performance with caching, pagination strategies, and connection pooling. Use when experiencing slow API responses, reducing latency for bulk operations, or optimizing cadence sync throughput. Trigger: "salesloft performance", "optimize salesloft", "salesloft slow", "salesloft caching".

2,266 Updated today
jeremylongshore
AI & Automation Featured

attio-performance-tuning

Optimize Attio API performance -- caching, batch queries, pagination strategies, connection pooling, and latency reduction. Trigger: "attio performance", "optimize attio", "attio slow", "attio latency", "attio caching", "attio batch requests".

2,266 Updated today
jeremylongshore