Agent skill · Backend & API

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".

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrepBash(curl:*)
Path: skills/api/apollo-rate-limits/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Apollo Rate Limits
  3. Rate Limit Headers
  4. Implementation: Rate Limiter Class
  5. Implementation: Exponential Backoff
  6. Implementation: Request Queue
  7. Usage Patterns
  8. Pattern 1: Simple Rate-Limited Request
  9. Pattern 2: Batch Processing with Queue
  10. Pattern 3: Priority Queue for Interactive vs Background
  11. Monitoring Rate Limit Usage
  12. Output
  13. Error Handling
  14. Resources
Ships with 1 file
  • metadata.json
Commands it runs
Check current rate limit status
curl -I -X POST "https://api.apollo.io/v1/people/search" \
Response headers:
More from claude-skill-registry
All skills →
About this skill
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.

Keep going