Skip to main content
Rate limits protect the platform from abuse and ensure fair usage across all organizations. Limits are enforced per organization (or per API key for API requests) and vary by subscription plan. All endpoints — including API and dashboard — are subject to rate limits.

API rate limits

The webhook trigger endpoint, the only public API endpoint, has the following limits:
PlanRequests per minute
Free10
Basic60
Standard300
Premium1,000

Response headers

Every API response includes rate limit headers so you can track your usage:
HeaderDescription
RateLimit-LimitTotal allowed requests in the current window
RateLimit-RemainingRequests remaining in the current window
RateLimit-ResetUnix timestamp (seconds) when the window resets

Rate limit exceeded

When you exceed the rate limit, the API returns a 429 Too Many Requests response with an additional Retry-After header indicating how many seconds to wait before retrying.

Response headers

HeaderDescription
Retry-AfterSeconds until the rate limit window resets
RateLimit-LimitTotal allowed requests in the current window
RateLimit-Remaining0
RateLimit-ResetUnix timestamp (seconds) when the window resets

Response body

The response body follows the RFC 7807 Problem Details format:
{
  "type": "https://tools.ietf.org/html/rfc6585#section-4",
  "title": "Too Many Requests",
  "status": 429,
  "detail": "You have exceeded the rate limit. Please try again later.",
  "instance": "/pipes/3fa85f64-5717-4562-b3fc-2c963f66afa6/webhook-trigger",
  "traceId": "0HN3J7V8S8F5Q:00000001"
}

Handling rate limits

  • Check headers proactively. Monitor RateLimit-Remaining to avoid hitting the limit in the first place
  • Implement exponential backoff. On a 429 response, wait for the duration in the Retry-After header, then retry with increasing delays if the request continues to fail
  • Spread requests over time. Distribute requests evenly across the window instead of sending them in bursts
  • Upgrade your plan. If you consistently hit rate limits, consider upgrading to a higher plan for increased limits. See subscription for details