JSONPlaceholder API
integer · requiredstring · requiredstring · requiredinteger · requiredinteger · requiredstring · requiredstring · required
integer · requiredinteger · requiredinteger · requiredstring · requiredstring · required
integer · requiredinteger · requiredstring · requiredstring · requiredinteger · requiredinteger · requiredstring · requiredstring · required
Create a post
POST
https://jsonplaceholder.typicode.com
/posts
Create a new post
Create a post › Request Body
userIdThe ID of the user creating the post
titleThe title of the post
bodyThe content of the post
Create a post › Responses
Post created successfully
idThe post ID
userIdThe ID of the user who created the post
titleThe title of the post
bodyThe content of the post
Get post by ID
GET
https://jsonplaceholder.typicode.com
/posts/{id}
Retrieve a specific post by its ID
path Parameters
idPost ID
Get post by ID › Responses
Successful response
idThe post ID
userIdThe ID of the user who created the post
titleThe title of the post
bodyThe content of the post
Update post
PUT
https://jsonplaceholder.typicode.com
/posts/{id}
Update an existing post
path Parameters
idPost ID
Update post › Request Body
userIdThe ID of the user creating the post
titleThe title of the post
bodyThe content of the post
Update post › Responses
Post updated successfully
idThe post ID
userIdThe ID of the user who created the post
titleThe title of the post
bodyThe content of the post