JSONPlaceholder

Instant fake REST data for prototyping and demos

🔧 Developer ToolsHEALTHYchecked 13 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

A zero-setup REST endpoint serving invented posts, todos, users, and comments as JSON. Reads return canned data, while writes are accepted but never persisted. Ideal for wiring up a frontend before a real backend exists.

95HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 95 · healthy
Uptime history
100%90 days
100%30 days
386P50 · ms
1096P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 20 ms, slowest 928 ms, most recent 20 ms.
Live response samplecaptured by our last successful check
GET https://jsonplaceholder.typicode.com/todos/1

{
  "userId": 1,
  "id": 1,
  "title": "delectus aut autem",
  "completed": false
}
Call itcurl · fetch · python
curl "https://jsonplaceholder.typicode.com/todos/1"
const res = await fetch("https://jsonplaceholder.typicode.com/todos/1");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://jsonplaceholder.typicode.com/todos/1")
print(res.json())
Endpoints · 4HealthyFULL DOCS ↗
Monitored path responding — GET /todos/1386 mschecked 13 min ago
GET/todos/1PROBED

Instant fake REST data for prototyping and demos

GET/todos

Todos — documented GET route.

GET/todos?limit=10

Todos — documented GET route.

GET/todos/search?q=test

Search by query parameters.

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.

JSONPlaceholder: common questions

Is JSONPlaceholder free to use?

Yes — JSONPlaceholder 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 JSONPlaceholder need an API key?

No — JSONPlaceholder needs no API key or signup. You can call it straight away; rate limits still apply (1000 req/window · 999 remaining · resets 1783509378).

Can I call JSONPlaceholder from the browser?

Yes — JSONPlaceholder returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is JSONPlaceholder up right now?

As of our last scheduled check, JSONPlaceholder is healthy with 100% uptime over 90 days and a 386 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.