You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"requestsPerMinute": 200, // Sustained rate limit per minute
37
+
"maxBurst": 400, // Maximum burst capacity
38
+
"remaining": 398, // Current tokens available
39
+
"resetAt": "..."// When tokens next refill
38
40
}
39
41
},
40
42
"usage": {
@@ -46,7 +48,7 @@ All API responses include information about your workflow execution limits and u
46
48
}
47
49
```
48
50
49
-
**Note:** The rate limits in the response body are for workflow executions. The rate limits for calling this API endpoint are in the response headers (`X-RateLimit-*`).
51
+
**Note:**Rate limits use a token bucket algorithm. `remaining` can exceed `requestsPerMinute` up to `maxBurst` when you haven't used your full allowance recently, allowing for burst traffic. The rate limits in the response body are for workflow executions. The rate limits for calling this API endpoint are in the response headers (`X-RateLimit-*`).
0 commit comments