Manage your kitchen ingredients
API Catalog/Train Travel API//
- Get single ingredient
Get all ingredients
Add new ingredients
Get single ingredient
Kitchen API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://vlad.redocly.xyz/_mock/apis/kitchen/openapi
API server for kitchenApi
https://{tenant}.redoc.ly
- Mock serverhttps://vlad.redocly.xyz/_mock/apis/kitchen/openapi/ingredients
- API server for kitchenApihttps://app.redoc.ly/ingredients
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://vlad.redocly.xyz/_mock/apis/kitchen/openapi/ingredients \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "object": "list", "page": { "endCursor": "ZG9uJ3QgZGVjb2RlIG1l", "startCursor": "ZG9uJ3QgZGVjb2RlIG1l", "hasNextPage": false, "hasPrevPage": false, "limit": 10, "total": 0 }, "items": [ { … } ], "total": 1 }
- Mock serverhttps://vlad.redocly.xyz/_mock/apis/kitchen/openapi/ingredients
- API server for kitchenApihttps://app.redoc.ly/ingredients
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vlad.redocly.xyz/_mock/apis/kitchen/openapi/ingredients \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"kitchenId": "altman-family",
"name": "broccoli",
"quantity": 2,
"unit": "cups",
"useBefore": "2019-08-24T14:15:22Z"
}'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "object": "ingredient", "kitchenId": "altman-family", "name": "broccoli", "quantity": 2, "unit": "cups", "useBefore": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }
- Mock serverhttps://vlad.redocly.xyz/_mock/apis/kitchen/openapi/ingredients/{id}
- API server for kitchenApihttps://app.redoc.ly/ingredients/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vlad.redocly.xyz/_mock/apis/kitchen/openapi/ingredients/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "object": "ingredient", "kitchenId": "altman-family", "name": "broccoli", "quantity": 2, "unit": "cups", "useBefore": "2019-08-24T14:15:22Z", "createdAt": "2019-08-24T14:15:22Z" }