team petstore
This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
team petstore endpoints
| Method | Endpoint | Description |
|---|---|---|
| pet | ||
| GET |
findPetsByStatus /pet/findByStatus |
Multiple status values can be provided with comma separated strings |
| PUT |
updatePet /pet |
Update an existing pet |
| GET |
getPetById /pet/{petId} |
Returns a single pet |
| POST |
updatePetWithForm /pet/{petId} |
Updates a pet in the store with form data |
| DELETE |
deletePet /pet/{petId} |
Deletes a pet |
| POST |
addPet /pet |
Add a new pet to the store |
| POST |
uploadFile /pet/{petId}/uploadImage |
uploads an image |
| GET |
findPetsByTags /pet/findByTags |
Muliple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing. |
| store | ||
| POST |
placeOrder /store/order |
Place an order for a pet |
| DELETE |
deleteOrder /store/order/{orderId} |
For valid response try integer IDs with positive integer value. Negative or non-integer values will generate API errors |
| GET |
getInventory /store/inventory |
Returns a map of status codes to quantities |
| GET |
getOrderById /store/order/{orderId} |
For valid response try integer IDs with value >= 1 and |
| user | ||
| POST |
createUsersWithArrayInput /user/createWithArray |
Creates list of users with given input array |
| POST |
createUsersWithListInput /user/createWithList |
Creates list of users with given input array |
| GET |
logoutUser /user/logout |
Logs out current logged in user session |
| DELETE |
deleteUser /user/{username} |
This can only be done by the logged in user. |
| GET |
loginUser /user/login |
Logs user into the system |
| POST |
createUser /user |
This can only be done by the logged in user. |
| PUT |
updateUser /user/{username} |
This can only be done by the logged in user. |
| GET |
getUserByName /user/{username} |
Get user by user name |
team petstore pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | Free | — |
|
| ULTRA | $20 / month | — |
|