How to handle rate limits
The Editpad API applies rate limits to all API calls to ensure fair usage and maintain the availability and stability of the platform.
Our rate limit across the whole API is 100 requests per second for read requests, 25 requests per second for write requests. We may occasionally reduce the rate limit as part of incident response to protect our other systems, and we may also permanently lower it for specific APIs which handle a lot of data (this will be documented on the endpoint if so).
This means that your software should be prepared to receive this response, and handle it appropriately, even if you don’t currently anticipate making this many requests.
API Limitations:
For entries that can be programmatically created, it is important to remember that there are "absolute limits" to how many objects can be created within a given workspace. These limits are enumerated in the table below.
Rate limit response
If you exceed the limit, you’ll get a special HTTP response, like this:
HTTP/1.1429
Too Many RequestsRetry-After:
Thu, 16 Oct 2025 23:21:54 GMTContent-Type:
application/json {"status"
: false,"message"
: "Per{minute|day|hour}
Limit Reached Blocked." }
Rate limit responses always have the HTTP status code 429. They also always include a Retry-After header, which is a date at which the limit resets (usually the following second), and they may also include additional debugging information in the JSON body.
Handling rate limit responses
A rate limited response means that we have not processed the request, so it can be safely retried after the limit has reset. Typically this will be in the next clock second. Most programming languages offer a sleep command or equivalent that allows waiting for the reset time to elapse.
Alternatively, you might want to put the request into a background queue to be processed in a different execution thread later.