Developers

Rate Limits

1 min read

Plan retries around TablelistPro's request limits so your integration stays stable during spikes and backfills.

Limit

ScopeLimit
Per API key20 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:

HeaderMeaning
Retry-AfterSeconds until you can retry
X-RateLimit-LimitMaximum requests per window
X-RateLimit-RemainingRemaining requests in the current window
X-RateLimit-ResetWindow reset time

Integration guidance

  • Add exponential backoff for 429 responses.
  • Respect Retry-After when present.
  • Use queueing for large import jobs so spikes do not flood the API.

Related