Testing a New Rate-Limiting Service – Feedback Welcome
Key topics
I’m building a project called Rately. It’s a rate-limiting service that runs on Cloudflare Workers (so at the edge, close to your clients).
The idea is simple: instead of only limiting by IP, you can set rules based on your own data — things like:
- URL params (/users/:id/posts → limit per user ID)
- Query params (?api_key=123 → limit per API key)
- Headers (X-Org-ID, Authorization, etc.)
Example:
Say your API has an endpoint /user/42/posts. With Rately you can tell it: “apply a limit of 100 requests/min per userId”.
So user 42 and user 99 each get their own bucket automatically. No custom nginx or middleware needed.
It has two working modes:
- Proxy mode – you point your API domain (CNAME) to Rately. Requests come in, Rately enforces your limits, then forwards to your origin. Easiest drop-in.
``` Client ---> Rately (enforce limits) ---> Origin API ```
- Control plane mode – you keep running your own API as usual, but your code or middleware can call Rately’s API to ask “is this request allowed?” before handling it. Gives you more flexibility without routing all traffic through Rately.
``` Client ---> Your API ---> Rately /check (allow/deny) ---> Your API logic ```
I’m looking for a few developers with APIs who want to test it out. I’ll help with setup .
The author is testing a new rate-limiting service called Rately and seeking feedback from developers with APIs, sparking interest and discussion on its features and potential applications.
Snapshot generated from the HN discussion
Discussion Activity
Light discussionFirst comment
11m
Peak period
4
0-3h
Avg / period
1.8
Key moments
- 01Story posted
Sep 19, 2025 at 3:24 AM EDT
4 months ago
Step 01 - 02First comment
Sep 19, 2025 at 3:35 AM EDT
11m after posting
Step 02 - 03Peak activity
4 comments in 0-3h
Hottest window of the conversation
Step 03 - 04Latest activity
Sep 20, 2025 at 3:52 PM EDT
4 months ago
Step 04
Generating AI Summary...
Analyzing up to 500 comments to identify key contributors and discussion patterns
Want the full context?
Jump to the original sources
Read the primary article or dive into the live Hacker News thread when you're ready.