apollo-rate-limits
Implement Apollo.io rate limiting and backoff. Use when handling rate limits, implementing retry logic, or optimizing API request throughput. Trigger with phrases like "apollo rate limit", "apollo 429", "apollo throttling", "apollo backoff", "apollo request limits".
npx skills add majiayu000/claude-skill-registry --skill apollo-rate-limits --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Apollo Rate Limits ## Overview Implement robust rate limiting and backoff strategies for Apollo.io API to maximize throughput while avoiding 429 errors. ## Apollo Rate Limits | Endpoint Category | Rate Limit | Window | Burst Limit | |-------------------|------------|--------|-------------| | People Search | 100/min | 1 minute | 10/sec | | Person Enrichment | 100/min | 1 minute | 10/sec | | Organization Enrichment | 100/min | 1 minute | 10/sec | | Sequences/Campaigns | 50/min | 1 minute | 5/sec | | Bulk Operations | 10/min | 1 minute | 2/sec | | General API | 100/min | 1 minute | 10/sec | ## Rate Limit Headers ```bash # Check current rate limit status curl -I -X POST "https://api.apollo.io/v1/people/search" \ -H "Content-Type: application/json" \ -d '{"api_key": "'$APOLLO_API_KEY'", "per_page": 1}' # Response headers: # X-RateLimit-Limit: 100 # X-RateLimit-Remaining: 95 # X-RateLimit-Reset: 1640000000 # Retry-After: 60 (only when rate limited) ``` ## Implementation: Rate Limiter Class ```typescript // src/lib/apollo/rate-limiter.ts interface RateLimiterConfig { maxRequests: number; windowMs: number; minSpacingMs: number; } class RateLimiter { private queue: Array<{ resolve: (value
- Overview
- Apollo Rate Limits
- Rate Limit Headers
- Implementation: Rate Limiter Class
- Implementation: Exponential Backoff
- Implementation: Request Queue
- Usage Patterns
- Pattern 1: Simple Rate-Limited Request
- Pattern 2: Batch Processing with Queue
- Pattern 3: Priority Queue for Interactive vs Background
- Monitoring Rate Limit Usage
- Output
- Error Handling
- Resources
Check current rate limit status curl -I -X POST "https://api.apollo.io/v1/people/search" \ Response headers:
What does the apollo-rate-limits skill do?
Implement Apollo.io rate limiting and backoff. Use when handling rate limits, implementing retry logic, or optimizing API request throughput. Trigger with phrases like "apollo rate limit", "apollo 429", "apollo throttling", "apollo backoff", "apollo request limits".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill apollo-rate-limits --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
