clay-rate-limits

Featured

Handle Clay rate limits, webhook throttling, and credit pacing strategies. Use when hitting 429 errors, managing webhook submission rates, or optimizing throughput within Clay's plan limits. Trigger with phrases like "clay rate limit", "clay throttling", "clay 429", "clay slow", "clay records per hour".

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

# Clay Rate Limits ## Overview Clay enforces rate limits at the plan level, webhook level, and enrichment provider level. Understanding these limits prevents data loss, credit waste, and integration failures. ## Prerequisites - Clay account with known plan tier - Webhook URL(s) for your tables - Understanding of your data volume requirements ## Instructions ### Step 1: Understand Clay Rate Limit Tiers | Plan | Records/Hour | Webhook Limit | HTTP API Columns | Enterprise API | |------|-------------|---------------|-----------------|----------------| | Free | Limited | 50K lifetime per webhook | Not available | Not available | | Starter | Standard | 50K lifetime per webhook | Not available | Not available | | Explorer | 400/hour | 50K lifetime per webhook | Not available | Not available | | Pro | Unlimited | 50K lifetime per webhook | Available | Not available | | Enterprise | Unlimited | 50K lifetime per webhook | Available | Available | **Key insight:** The 50K webhook submission limit is per-webhook, not per-table. Once exhausted, create a new webhook on the same table. ### Step 2: Implement Webhook Rate Limiting ```typescript // src/clay/rate-limiter.ts — respect Clay's plan-level rate limits import PQueue from 'p-queue'; interface RateLimiterConfig { maxPerHour: number; // Plan limit (e.g., 400 for Explorer) maxPerSecond: number; // Practical burst limit webhookLimit: number; // 50K per webhook lifetime } const PLAN_LIMITS: Record<string, RateLimi...

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

clay-load-scale

Scale Clay enrichment pipelines for high-volume processing (10K-100K+ leads/month). Use when planning capacity for large enrichment runs, optimizing batch processing, or designing high-volume Clay architectures. Trigger with phrases like "clay scale", "clay high volume", "clay large batch", "clay capacity planning", "clay 100k leads", "clay bulk enrichment".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-known-pitfalls

Identify and avoid the top Clay anti-patterns, gotchas, and integration mistakes. Use when reviewing Clay integrations for issues, onboarding new team members, or auditing existing Clay table configurations. Trigger with phrases like "clay mistakes", "clay anti-patterns", "clay pitfalls", "clay what not to do", "clay gotchas", "clay code review".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-cost-tuning

Optimize Clay credit spending with provider key management, waterfall tuning, and budget controls. Use when analyzing Clay costs, reducing credit consumption, or implementing spending alerts and caps. Trigger with phrases like "clay cost", "clay billing", "reduce clay costs", "clay pricing", "clay expensive", "clay budget", "clay credits".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-observability

Monitor Clay enrichment pipeline health, credit consumption, and data quality metrics. Use when setting up dashboards for Clay operations, configuring alerts for credit burn, or tracking enrichment success rates. Trigger with phrases like "clay monitoring", "clay metrics", "clay observability", "monitor clay", "clay alerts", "clay dashboard", "clay credit tracking".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clay-policy-guardrails

Implement credit spending limits, data privacy enforcement, and input validation guardrails for Clay pipelines. Use when enforcing spending caps, blocking PII enrichment, or adding pre-enrichment validation rules. Trigger with phrases like "clay policy", "clay guardrails", "clay spending limit", "clay data privacy rules", "clay validation", "clay controls".

2,266 Updated today
jeremylongshore