Postman Echo

Reflects your HTTP request back as JSON for client testing

🔧 Developer ToolsUNMONITOREDchecked 42 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

Postman Echo is a hosted sandbox that mirrors whatever you send it. A GET to /get returns the query args, request headers, and full URL as JSON, making it an easy target for verifying HTTP clients, headers, and query handling. No key or signup required.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://postman-echo.com/get?foo=bar

{
  "args": {
    "foo": "bar"
  },
  "headers": {
    "host": "postman-echo.com",
    "x-forwarded-proto": "https"
  },
  "url": "https://postman-echo.com/get?foo=bar"
}
Call itcurl · fetch · python
curl "https://postman-echo.com/get?foo=bar"
const res = await fetch("https://postman-echo.com/get?foo=bar");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://postman-echo.com/get?foo=bar")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 3On scheduleFULL DOCS ↗
First rollup pending — GET /get?foo=bar has been probed
GET/get?foo=barPROBED

Reflects your HTTP request back as JSON for client testing

GET/get?limit=5

Get — documented GET route.

GET/get?page=1

Get — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

Postman Echo: common questions

Is Postman Echo free to use?

Yes — Postman Echo is a free developer tools API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Postman Echo need an API key?

No — Postman Echo needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Postman Echo from the browser?

Not directly — Postman Echo doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is Postman Echo up right now?

As of our last scheduled check, Postman Echo is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.