DEV Community

manja316
manja316

Posted on

I Built a Free Online API Tester - No Signup, No Download

Every developer needs to test APIs. Postman is great but heavy. Online alternatives want signups.

So I built API Tester — a free, instant HTTP client in your browser.

What It Does

  • Send GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS requests
  • Add custom headers (auth tokens, content-type, anything)
  • Send JSON request bodies
  • See response status, headers, timing, and body size
  • Auto-formats JSON responses
  • No signup. No download. No extensions.

How It Works

The tool runs a server-side proxy to avoid CORS issues — your request goes through our API route which forwards it to the target URL and returns the full response including headers and timing.

This means you can test any API endpoint, even ones that block browser requests.

Try It

apitester-inky.vercel.app

  1. Pick your HTTP method
  2. Enter the URL
  3. Add headers if needed
  4. Hit Send
  5. See the formatted response instantly

Tech Stack

  • Next.js 15 App Router
  • TypeScript
  • Tailwind CSS
  • Vercel serverless functions for the proxy

Why Not Just Use curl?

You can! But sometimes you want:

  • A visual interface to see headers and body separately
  • Response timing at a glance
  • Easy header management
  • Shareable with non-terminal people

Built this as part of my free developer tools collection. More tools at LuciferForge.


What API testing tool do you use? Would you use something like this?

Top comments (0)