fathom-rate-limits

Featured

Handle Fathom API rate limits (60 requests/minute per user). Trigger with phrases like "fathom rate limit", "fathom 429", "fathom throttle".

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

# Fathom Rate Limits ## Overview Fathom's API enforces a strict 60 requests-per-minute cap per user across all API keys. Since meeting transcripts and action items are often fetched in bulk after a day of calls, this limit becomes a real constraint for teams processing large meeting backlogs. Transcript endpoints are especially heavy because they return full conversation text, making pagination and careful throttling essential for any integration that syncs meeting intelligence into CRMs or project trackers. ## Rate Limit Reference | Endpoint | Limit | Window | Scope | |----------|-------|--------|-------| | List meetings | 60 req | 1 minute | Per user | | Get transcript | 60 req | 1 minute | Per user | | Action items | 60 req | 1 minute | Per user | | Meeting summary | 60 req | 1 minute | Per user | | Webhook management | 10 req | 1 minute | Per user | ## Rate Limiter Implementation ```typescript class FathomRateLimiter { private tokens: number = 60; private lastRefill: number = Date.now(); private queue: Array<{ resolve: () => void }> = []; async acquire(): Promise<void> { this.refill(); if (this.tokens >= 1) { this.tokens -= 1; return; } return new Promise(resolve => this.queue.push({ resolve })); } private refill() { const now = Date.now(); const elapsed = now - this.lastRefill; this.tokens = Math.min(60, this.tokens + (elapsed / 60_000) * 60); this.lastRefill = now; while (this.tokens >= 1 && this.queue.length) { ...

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