I thought I had found an useful tool.
Unfortunately, it became restricted, even if claimed as “open source” :
https://app.requestly.io/pricing
Any similar tool with no restrictions ?
I thought I had found an useful tool.
Unfortunately, it became restricted, even if claimed as “open source” :
https://app.requestly.io/pricing
Any similar tool with no restrictions ?
Relay is an open-source browser extension that lets you intercept and modify HTTP requests directly inside your browser. It doesn’t require an account or paid plan.
You install it and start intercepting requests immediately.
Relay can capture requests made by websites and APIs.
You can see:
This helps debug frontend apps and APIs.
You can edit requests before they are sent.
Examples:
This is useful for testing APIs or bypassing certain checks during development.
Relay can send requests manually like a mini Postman inside Chrome.
You can:
Relay lets you save request sessions so you can reuse them later for debugging or testing.
Relay is ideal if you want something:
There are 25+ tools similar to Requestly including Postman, mitmproxy, and Fiddler depending on your use case.
My recommendation
If you want something closest to Requestly but with no restrictions:
Relay
If you want something much more powerful:
mitmproxy
Requestly has indeed shifted to a more restricted model over time. While the core remains open-source on GitHub (requestly/requestly) and you can still use many features for free or self-host parts of it, the cloud-synced features, unlimited rules/mocks, team collaboration, and some advanced modifications now push toward paid plans (as seen on their pricing page). This is a common evolution for freemium dev tools.
Here are some solid similar tools that focus on being unrestricted, fully open-source, or truly free forever with no artificial limits on core interception/modification features:
Inssman A fully open-source Chrome/Firefox extension specifically for modifying HTTP requests and responses. Features: Custom rules to modify headers, change responses, block requests, redirects, custom HTML/CSS/JS/JSON injection, logging. No paid tiers or restrictions mentioned — completely free and open-source. GitHub: https://github.com/vvmgev/Inssman Chrome Web Store: Search for “Inssman: Open-Source: Modify HTTP Request”.
HTTP Toolkit Excellent open-source desktop app (with browser integration via extensions) for intercepting, viewing, debugging, and mocking HTTP(S) traffic. It works system-wide or per-browser, supports request/response modification, rules, breakpoints, and injecting custom responses/scripts. Fully free for most use cases, open-source core, no hard limits on rules or modifications (some advanced team/cloud features are paid, but local usage is unrestricted). Highly regarded as a modern Charles/Fiddler alternative. Website: https://httptoolkit.com
Tamper Dev (formerly Tampermonkey-like for requests, but focused on interception) Chrome extension that lets you intercept, inspect, and edit live HTTP requests/responses. Very powerful for on-the-fly modifications. Free, no mentioned restrictions.
If you’re okay with a tool that’s stronger on API testing but still offers interception/modification:
Hoppscotch (formerly Postwoman) — Fully open-source, lightweight API client with request interception in browser contexts.
Bruno — Open-source, Git-friendly API client (local files, no cloud required).
Insomnia (core is open-source) — Great for API work, with some proxy/interception capabilities.
| Tool | Type | Fully Open-Source | No Usage Limits | Modification Types | Desktop or Browser |
|---|---|---|---|---|---|
| Inssman | Browser extension | Yes | Yes | Headers, response, block, redirect, inject | Browser |
| HTTP Toolkit | Desktop + browser | Core yes | Yes (local) | Full proxy: mock, rewrite, breakpoints | Desktop/Browser |
| Request Interceptor | Browser extension | Partial? | Yes | Redirect/block, headers, query params | Browser |
| Easy Interceptor | Browser extension | Yes | Yes | Overwrite response for XHR/fetch | Browser |
Many users who got frustrated with Requestly’s limits have switched to Inssman or HTTP Toolkit for pure interception work without nagging upgrades.
If you tell more about your main use case (e.g., header mods only, API mocking, script injection, mobile debugging), I can narrow it down further!
Thanks. Well, this one looks a good alternative for me : https://httptoolkit.com/
Sounds like the freemium speedrun got you.
Found a thing → it worked → "10 rules limit" wall dropped → you came here. The universal pain underneath: “free becomes freemium becomes pay-up the second I started relying on it.”
Three things to know, in order.
Your browser already does most of this
Chrome shipped Override Content in 2018. Override Headers in March 2023.
Right-click a request in DevTools → Override headers or Override content → edit → persists across reloads.
▸ No extension.
▸ No signup.
▸ No rule cap.
If Override headers isn’t in your right-click menu, that’s just an older Chrome. Update to 111+ (chrome://version to check) and it appears.
What DevTools won’t do: modify request headers or request body. For those, escalate ↓
The escalation table
| If you need… | Use this |
|---|---|
| DevTools Overrides (above) | |
| Inssman | |
| HTTP Toolkit | |
| Inssman or HTTP Toolkit |
I keep DevTools Overrides set up for the 80% case — mocking JSON while a backend dev finishes their endpoint — and HTTP Toolkit pinned for the 20% where I need request headers or to intercept a Node process. Took me a year to realise I’d been installing browser extensions for something Chrome shipped in 2018. Filing this so you don’t lose that year.
Three cheat codes Google won’t show you
There’s a self-host workflow posted inside Requestly’s own GitHub discussions, acknowledged by the maintainer in the same thread:
→ https://github.com/orgs/requestly/discussions/594
Recipe:
sh install.sh local && sh build.sh local
127.0.0.1 app.requestly.io
Same UX you liked. No cloud round-trip. No rule cap.
Works because the extension just talks to whatever’s at
app.requestly.io— and now that’s your laptop. The maintainer can’t paywall a hosts-file entry.
Whistle — 15.3k
, MIT, Node-based proxy.
→ Desktop client shipped v1.5.3 on Jan 1, 2026 — skips the npm setup pain.
→ English README at README-en_US.md if the UI feels too 中文.
Burp Suite Community — free with PortSwigger account.
→ Under Proxy → Match and replace, covers literally everything Requestly did.
→ Plus Repeater, Decoder, full proxy history.
→ Starter rule library.
30-line userscript in Tampermonkey or Violentmonkey.
→ Code you wrote yourself can’t be paywalled.
→ Working fetch-interception template — copy → paste → modify → yours forever.
Most permanent solution that exists. No vendor to outlive, no pricing page to read.
ModHeader — the #1 “free alternative” on every 2024 listicle. ALSO went freemium — 10-rule cap on free tier. Same disease. Skip it.
Resource Override — stopped MV3 migration. Chrome shows removal warning. Dead.
Charles Proxy — paid ($50). 30-min trial loop. Marketed as “free trial.” Don’t waste the click.
Fiddler Everywhere — Telerik freemium with account wall. Same disease as Requestly.
Postman / Insomnia — recommended in every listicle, but they’re API clients, not interceptors. Different category.
You said you thought you’d found a useful tool. Turns out it was sitting in your browser the whole time.