JSONPlaceholder
Instant fake REST data for prototyping and demos
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.
GET https://jsonplaceholder.typicode.com/todos/1
{
"userId": 1,
"id": 1,
"title": "delectus aut autem",
"completed": false
}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())/todos/1PROBEDInstant fake REST data for prototyping and demos
/todosTodos — documented GET route.
/todos?limit=10Todos — documented GET route.
/todos/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
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.