Replies: 1 comment
|
The limit configured in the current server source is 450 requests per 5-minute window per IP (limiter definition). The limiter is mounted globally before the version/language/word route (middleware order). There is one important wrinkle: a The endpoint accepts one word per request; there is no batch endpoint in the current route. For a vocabulary app, I would therefore:
Staying below 450 requests per five minutes avoids the application limiter, but the cache and backoff are still necessary because the shared upstream can throttle independently. |
Uh oh!
There was an error while loading. Please reload this page.
Hello, I am writing a small vocabulary app over the summer. I am running into the rate limit, but I still don't know the exact limit. The way my api is designed: You input the words you want to look up, and it gets all of them at once. Could you fill me in on what the rate limit is?
All reactions