JSONPlaceholder
FreeGET https://jsonplaceholder.typicode.com/users
HTTPS
Yes
API key
No key
CORS
Usually yes
Use
Free tier
Limits. Public demo. No SLA. POST/PUT/PATCH appear to succeed but do not persist.
Commercial. Intended for prototyping and teaching. Not a production database.
Note. Resources include /posts, /comments, /albums, /photos, /todos, /users.
curl -sS "https://jsonplaceholder.typicode.com/users/1"
curl -sS -X POST "https://jsonplaceholder.typicode.com/posts" \
-H "Content-Type: application/json" \
-d '{"title":"foo","body":"bar","userId":1}'