Sample - Swagger Petstore OpenAPI 3
SSample - Swagger Petstore OpenAPI 3
API ReferenceSDKs
POSTCreate a new pet/petPUTReplace an existing pet/petGETGet a pet by ID/pet/{petId}POSTUpdate a pet with form data/pet/{petId}DELETEDelete a pet/pet/{petId}GETFinds Pets by status./pet/findByStatusGETFinds Pets by tags./pet/findByTags
POSTUpload a pet image/pet/{petId}/uploadImage
GETGet pet inventory by status/store/inventoryPOSTPlace a pet order/store/order
GETFind purchase order by ID./store/order/{orderId}DELETEDelete purchase order by identifier./store/order/{orderId}
POSTCreate a user/userGETGet a user by username/user/{username}PUTUpdate a user/user/{username}DELETEDelete a user/user/{username}POSTCreate users from a list/user/createWithListGETLog in a user/user/loginGETLog out the authenticated user/user/logout
llms.txt Powered by Octri

Sample - Swagger Petstore OpenAPI 3

Base URLhttps://petstore3.swagger.io/api/v3

01

Pet

8 endpoints

  • GET/pet/{petId}Get a pet by ID
  • GET/pet/findByStatusFinds Pets by status.
  • GET/pet/findByTagsFinds Pets by tags.
  • POST/petCreate a new pet
  • POST/pet/{petId}Update a pet with form data
  • POST/pet/{petId}/uploadImageUpload a pet image
  • PUT/petReplace an existing pet
  • DELETE/pet/{petId}Delete a pet

02

Store

4 endpoints

  • GET/store/inventoryGet pet inventory by status
  • GET/store/order/{orderId}Find purchase order by ID.
  • POST/store/orderPlace a pet order
  • DELETE/store/order/{orderId}Delete purchase order by identifier.

03

User

7 endpoints

  • GET/user/{username}Get a user by username
  • GET/user/loginLog in a user
  • GET/user/logoutLog out the authenticated user
  • POST/userCreate a user
  • POST/user/createWithListCreate users from a list
  • PUT/user/{username}Update a user
  • DELETE/user/{username}Delete a user