GitHub Access Check
GitHub Access CheckDocs
Get started

OpenAPI specification: https://github-access-check.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.

POSThttps://jsonplaceholder.typicode.com/posts

Servers

https://jsonplaceholder.typicode.com

Live demo server

Request body

application/jsonRequired
titlebodystringrequired
bodybodystringrequired
userIdbodyintegerrequired

Responses

The created post, including its generated id.

idintegerrequired
userIdintegerrequired
titlestringrequired
bodystringrequired
RequestcURL
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?