OpenAPI specification: https://track-staging-acceptance.staging.thally.app/openapi.yaml
Posts
Create a post
Create a post and receive it back with a generated id. The demo server accepts the write and echoes the result without storing it, so you can try requests freely.
POST
https://jsonplaceholder.typicode.com/postsServers
https://jsonplaceholder.typicode.com
Live demo server
Request body
application/jsonRequired
titlebodystringrequiredbodybodystringrequireduserIdbodyintegerrequiredResponses
The created post, including its generated id.
idintegerrequireduserIdintegerrequiredtitlestringrequiredbodystringrequiredRequestcURL
curl --request POST \
--url 'https://jsonplaceholder.typicode.com/posts'
--data '{
"title": "Hello from the API playground",
"body": "This request runs against a live server.",
"userId": 1
}'Response
Send a request to preview the response.
Was this page helpful?