The Aptly API enforces rate limits per API key to ensure stability across all integrations.Documentation Index
Fetch the complete documentation index at: https://docs.getaptly.com/llms.txt
Use this file to discover all available pages before exploring further.
Limits
| Scope | Limit |
|---|---|
| Per API key | 120 requests per minute |
| Burst | Up to 20 requests per second |
These are the current defaults. Limits may be adjusted for specific plans or use cases. Contact Aptly support if your integration requires higher throughput.
429 responses
When you exceed the rate limit, the API returns a429 Too Many Requests response:
Retry-After header indicating how many seconds to wait before retrying.
Handling rate limits
Implement exponential backoff when you receive a429:
Best practices
- Fetch the board schema once and cache it. Do not fetch the schema on every request.
- Batch card updates where possible instead of making one request per card.
- When paginating through large boards, add a small delay between page requests.
- Use a single API key per integration. Multiple keys from the same company share the same underlying account limits.