Plan retries around TablelistPro's request limits so your integration stays stable during spikes and backfills.
Limit
| Scope | Limit |
|---|---|
| Per API key | 20 requests per 1 second window |
When you exceed the limit
If you exceed the limit, you'll get HTTP 429 with Too Many Requests.
Response headers may include:
| Header | Meaning |
|---|---|
Retry-After | Seconds until you can retry |
X-RateLimit-Limit | Maximum requests per window |
X-RateLimit-Remaining | Remaining requests in the current window |
X-RateLimit-Reset | Window reset time |
Integration guidance
- Add exponential backoff for 429 responses.
- Respect
Retry-Afterwhen present. - Use queueing for large import jobs so spikes do not flood the API.