Back to catalog

Endpoint

JSONPlaceholder — sample posts

Typicode’s placeholder API for posts, users, albums—ideal for frontend mocks and tutorials.

Fake REST data for prototyping

Dev & JSONNo API keyDefault GET

HTTP console

Example URL
https://jsonplaceholder.typicode.com/posts/1Provider documentation
Request

GET /posts/:id, /users, /albums, etc. POST/PATCH simulate writes (not persisted).

GET /posts/1
Response

{ userId, id, title, body }

{
  "userId": 1,
  "id": 1,
  "title": "sunt aut facere repellat provident…",
  "body": "quia et suscipit…"
}
Outbound requestProxy

Executes on the server with rate limits and host rules. Edit the URL and payload to match your scenario—responses show real upstream status and body (truncated if very large).

Upstream response

Ready. Click Send to execute the request. Status, latency, content type, and body appear here—formatted when the payload is JSON.