Postman Echo

Reflects your HTTP request back as JSON for client testing

🔧 Developer ToolsHEALTHYchecked 24 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.

99HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 99 · healthy
Uptime history
100%90 days
100%30 days
201P50 · ms
815P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 43 ms, slowest 563 ms, most recent 102 ms.
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 · 3HealthyFULL DOCS ↗
Monitored path responding — GET /get?foo=bar201 mschecked 24 min ago
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 healthy with 100% uptime over 90 days and a 201 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.