Skip to main content
The Aptly API enforces rate limits per API key to ensure stability across all integrations.

Limits

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 a 429 Too Many Requests response:
The response includes a Retry-After header indicating how many seconds to wait before retrying.

Handling rate limits

Implement exponential backoff when you receive a 429:

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.