Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/content/partials/fundamentals/api-rate-limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ Some specific API calls have their own limits and are documented separately, suc
- [Gateway Lists API](/cloudflare-one/policies/gateway/lists/#api-rate-limit)

Enterprise customers can also [contact Cloudflare Support](/support/contacting-cloudflare-support/) to raise the Client API per user, GraphQL, or API token limits to a higher value.

The following headers that are always returned on calls to the Cloudflare API:

- `X-RateLimit-Limit`: Total Number of requests the caller can make
- `X-RateLimit-Remaining`: Number of requests before Rate Limit kicks in

And these headers are returned only when a rate limit has been reached (error code: 429):

- `Retry-After`: Number of Seconds until more capacity is available, rounded up
- `X-RateLimit-Reset`: RFC 1123 Formatted Date as to when more capacity is available
Loading