This is a sample Pet Store Server based on the OpenAPI 3.0 specification. You can find out more about
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/
https://{server1}/v1/
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/ingredients
https://cloud.kitchen.fake.com/v1/ingredients
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/ingredients \
-H 'authorization: YOUR_API_KEY_HERE'
{ "object": "list", "page": { "endCursor": "ZG9uJ3QgZGVjb2RlIG1l", "startCursor": "ZG9uJ3QgZGVjb2RlIG1l", "hasNextPage": true, "hasPrevPage": false, "limit": 100, "total": 100 }, "total": 100, "items": [ { … } ] }
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/ingredients
https://cloud.kitchen.fake.com/v1/ingredients
curl -i -X POST \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/ingredients \
-H 'Content-Type: application/json' \
-H 'authorization: YOUR_API_KEY_HERE' \
-d '{
"kitchenId": "altman-family",
"name": "broccoli",
"quantity": 10,
"unit": "cups",
"useBefore": "2019-08-24T14:15:22Z"
}'
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "object": "ingredient", "kitchenId": "altman-family", "name": "broccoli", "quantity": 10, "unit": "cups", "useBefore": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/ingredients/{id}
https://cloud.kitchen.fake.com/v1/ingredients/{id}
curl -i -X GET \
'https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/kitchen/openapi/ingredients/{id}' \
-H 'authorization: YOUR_API_KEY_HERE'
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "object": "ingredient", "kitchenId": "altman-family", "name": "broccoli", "quantity": 10, "unit": "cups", "useBefore": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }