Everything about your Pet
API showdown///
- Pet Store
Train Travel API
- Delete purchase order by ID
Returns pet inventories by status
Place an order for a pet
Find purchase order by ID
Delete purchase order by...
Swagger Petstore - OpenAPI 3.0 (1.0.20-SNAPSHOT)
This is a sample Pet Store Server based on the OpenAPI 3.0 specification. You can find out more about Swagger at http://swagger.io. In the third iteration of a pet store, we've switched to the design first approach! You can now help us improve the API whether it's by making changes to the definition itself or to the code. That way, with time, we can improve the API in general, and expose some of the new features in OAS3.
Some useful links:
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi
https://innovario.apishowdown.com/v3
- Mock serverhttps://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/inventory
- https://innovario.apishowdown.com/v3/store/inventory
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/inventory \
-H 'api_key: YOUR_API_KEY_HERE'Response
application/json
{ "property1": 0, "property2": 0 }
- Mock serverhttps://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order
- https://innovario.apishowdown.com/v3/store/order
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- application/json
- application/xml
- application/x-www-form-urlencoded
curl -i -X POST \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order \
-H 'Content-Type: application/json' \
-d '{
"id": 10,
"petId": 198772,
"quantity": 7,
"shipDate": "2019-08-24T14:15:22Z",
"status": "approved",
"complete": true
}'Response
application/json
{ "id": 10, "petId": 198772, "quantity": 7, "shipDate": "2019-08-24T14:15:22Z", "status": "approved", "complete": true }
- Mock serverhttps://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order/{orderId}
- https://innovario.apishowdown.com/v3/store/order/{orderId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order/{orderId}'Response
- application/xml
- application/json
<order>
<id>10</id>
<petId>198772</petId>
<quantity>7</quantity>
<shipDate>2019-08-24T14:15:22Z</shipDate>
<status>approved</status>
<complete>true</complete>
</order>- Mock serverhttps://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order/{orderId}
- https://innovario.apishowdown.com/v3/store/order/{orderId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order/{orderId}'