LQ
Free fake API for testing and prototyping. Used to simulate creating a new blog post.
https://jsonplaceholder.typicode.com/postsContent-typeRequired for JSON payloads
application/json; charset=UTF-8{
"title": "foo",
"body": "bar",
"userId": 1
}curl -X POST \
"https://jsonplaceholder.typicode.com/posts" \
-H "Content-type: application/json; charset=UTF-8" \
-H "Content-Type: application/json" \
-d '{
"title": "foo",
"body": "bar",
"userId": 1
}'{
"id": 101,
"title": "foo",
"body": "bar",
"userId": 1
}