JSONPlaceholder

Instant fake REST data for prototyping and demos

🔧 Developer ToolsUNMONITOREDchecked 1h 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.

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://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 · 4On scheduleFULL DOCS ↗
First rollup pending — GET /todos/1 has been probed
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 unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.