linktree-rate-limits
FeaturedRate Limits for Linktree. Trigger: "linktree rate limits".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Linktree Rate Limits
## Overview
Linktree's API enforces rate limits per OAuth token, with analytics endpoints throttled more aggressively than profile management operations. Agencies managing dozens of creator profiles need to stagger link updates and analytics pulls across accounts to avoid hitting per-token and global IP-based limits. Bulk link reordering and analytics export during campaign launches are the most common rate-limit triggers, especially when synchronizing link performance data with external dashboards on short polling intervals.
## Rate Limit Reference
| Endpoint | Limit | Window | Scope |
|----------|-------|--------|-------|
| Profile read/update | 60 req | 1 minute | Per OAuth token |
| Link create/update/delete | 30 req | 1 minute | Per OAuth token |
| Analytics summary | 20 req | 1 minute | Per OAuth token |
| Analytics detailed (per-link) | 10 req | 1 minute | Per OAuth token |
| Webhook management | 10 req | 1 minute | Per OAuth token |
## Rate Limiter Implementation
```typescript
class LinktreeRateLimiter {
private tokens: number;
private lastRefill: number;
private readonly max: number;
private readonly refillRate: number;
private queue: Array<{ resolve: () => void }> = [];
constructor(maxPerMinute: number) {
this.max = maxPerMinute;
this.tokens = maxPerMinute;
this.lastRefill = Date.now();
this.refillRate = maxPerMinute / 60_000;
}
async acquire(): Promise<void> {
this.refill();
if (this.tokens >= 1...
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
linktree-performance-tuning
Optimize Linktree API integration performance with caching, batching, and rate limit strategies. Use when Linktree API calls are slow, hitting rate limits, or profile pages serve stale link data. Trigger with "linktree performance tuning".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-cost-tuning
Cost Tuning for Linktree. Trigger: "linktree cost tuning".
2,266 Updated today
jeremylongshore AI & Automation Featured
lucidchart-rate-limits
Rate Limits for Lucidchart. Trigger: "lucidchart rate limits".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-sdk-patterns
Sdk Patterns for Linktree. Trigger: "linktree sdk patterns".
2,266 Updated today
jeremylongshore AI & Automation Featured
appfolio-rate-limits
Handle AppFolio API rate limits with throttling and backoff. Trigger: "appfolio rate limit".
2,266 Updated today
jeremylongshore