-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update documented rate limit to 60 RPS
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,14 +53,14 @@ If you are approaching any of these limits in your implementation and require su | |
|
||
### Do you have any rate limits in place in your public API? | ||
|
||
Our public API currently limits users to a maximum of 20 requests per second. Specific headers are returned to indicate current quota: | ||
* `ratelimit-limit`: indicates the total quota (20) | ||
Our public API currently limits users to a maximum of 60 RPS (Requests Per Second). Specific headers are returned to indicate current quota: | ||
* `ratelimit-limit`: indicates the total quota (60) | ||
* `ratelimit-remaining`: indicates the current quota | ||
* `x-rate-limit-request-forwarded-for` and `x-rate-limit-request-remote-addr`: echo back your remote IP and forwarded-for IP for debugging purposes | ||
|
||
When rate limits are exceeded, an error with HTTP 429 is returned with the following message: `Too many requests. Please wait and try again in a few seconds`. | ||
|
||
This limit is on a **per IP address** basis: if you have multiple servers making requests to the turnkey API under a different IP address, each server is subject to the 20 RPS limit individually. | ||
This limit is on a **per IP address** basis: if you have multiple servers making requests to the turnkey API under a different IP address, each server is subject to the 60 RPS limit individually. | ||
|
||
Please get in touch with us (<[email protected]>) if you need this limit adjusted for your use-case. | ||
|
||
|
@@ -115,4 +115,4 @@ If you get stuck or have a one-off question, post it to our [developer forum](ht | |
|
||
### Is my country supported? | ||
|
||
Turnkey is not currently available to users in any countries currently subject to US OFAC sanctions. | ||
Turnkey is not currently available to users in any countries currently subject to US OFAC sanctions. |