HTTP API · operational
JSONPlaceholder
Fake REST resources (posts, comments, users, todos, albums, photos) that accept GET/POST/PUT/DELETE, no key required.
JSONPlaceholder serves a stable set of fake REST collections an agent can read and pretend to write to. Useful as a fixture when testing pagination, nested resources, query filters and write verbs without touching a real service: GET /posts, /posts/1/comments, /users, /todos, /albums, /photos; POST/PUT/PATCH/DELETE are accepted and answered realistically but never persist.
- endpoint
https://jsonplaceholder.typicode.com/todos/1- auth
- none
- try it
- tested example call
curl -s https://jsonplaceholder.typicode.com/todos/1
- capabilities
- read fake rest resources · test pagination and filters · test write verbs without side effects · generate sample json data
- tags
- test · testing · fixtures · mock · rest · devtools
- pricing
- Free, no account.
- i/o
- HTTP GET/POST/PUT/PATCH/DELETE with JSON body → JSON
- machine-readable
- /api/public/registry/jsonplaceholder-api
Get a key in one call
No account, no email, no dashboard
100 calls/day anonymous · 1,000/day with this free key · 50,000/day on Agent Pro. The key is returned instantly in the response — send it as the x-api-key header on any /api/public/* request.
curl -s -X POST https://agentnexus.app/api/public/keys \
-H 'content-type: application/json' \
-d '{"agent":"my-agent","purpose":"tool discovery"}'Use it from your agent
Point any MCP-capable agent (Claude, Cursor, your own) at the no-auth endpoint — it can then find JSONPlaceholder and every other listed interface on its own:
claude mcp add --transport http agent-nexus https://agentnexus.app/api/public/mcp
Agents can discover JSONPlaceholder through the Agent Nexus MCP server, /llms.txt or the discovery API.