Created
December 27, 2025 23:59
-
-
Save shreks7/e165a8b8c844edb0179592252bf275a6 to your computer and use it in GitHub Desktop.
JSONPlaceholder API Spec
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openapi: '3.0.2' | |
| info: | |
| title: JSONPlaceholder | |
| version: '1.0' | |
| servers: | |
| - url: https://jsonplaceholder.typicode.com/ | |
| components: | |
| schemas: | |
| post: | |
| type: object | |
| properties: | |
| userId: | |
| type: integer | |
| id: | |
| type: integer | |
| title: | |
| type: string | |
| body: | |
| type: string | |
| parameters: | |
| post-id: | |
| name: post-id | |
| in: path | |
| description: 'key: id of post' | |
| required: true | |
| style: simple | |
| schema: | |
| type: integer | |
| paths: | |
| /posts: | |
| get: | |
| description: Get posts | |
| operationId: list-posts | |
| parameters: | |
| - name: userId | |
| in: query | |
| description: Filter results by user ID | |
| required: false | |
| style: form | |
| schema: | |
| type: integer | |
| maxItems: 1 | |
| - name: title | |
| in: query | |
| description: Filter results by title | |
| required: false | |
| style: form | |
| schema: | |
| type: string | |
| maxItems: 1 | |
| responses: | |
| '200': | |
| description: OK | |
| content: | |
| application/json: | |
| schema: | |
| type: array | |
| items: | |
| $ref: '#/components/schemas/post' | |
| post: | |
| description: 'Create post' | |
| requestBody: | |
| required: true | |
| content: | |
| application/json: | |
| schema: | |
| $ref: '#/components/schemas/post' | |
| responses: | |
| '201': | |
| description: Created | |
| content: | |
| application/json: | |
| schema: | |
| $ref: '#/components/schemas/post' | |
| /posts/{post-id}: | |
| get: | |
| description: 'Get post by ID' | |
| parameters: | |
| - $ref: '#/components/parameters/post-id' | |
| responses: | |
| '200': | |
| description: OK | |
| content: | |
| application/json: | |
| schema: | |
| $ref: '#/components/schemas/post' | |
| patch: | |
| description: 'Update post' | |
| requestBody: | |
| required: true | |
| content: | |
| application/json: | |
| schema: | |
| $ref: '#/components/schemas/post' | |
| parameters: | |
| - $ref: '#/components/parameters/post-id' | |
| responses: | |
| '200': | |
| description: OK | |
| content: | |
| application/json: | |
| schema: | |
| $ref: '#/components/schemas/post' | |
| delete: | |
| description: 'Delete post' | |
| parameters: | |
| - $ref: '#/components/parameters/post-id' | |
| responses: | |
| '200': | |
| description: OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment