🍕🔥 Pizza is great! 🔥🍕

Cook

Cooking process operations

Simulates simmering process

post
Body
ingredientsobject[]required

temperaturenumberrequired
durationstringrequired
stirring_frequencystringoptional
Responses
post
curl -L \
  --request POST \
  --url 'https://api.tomatopy.example.com/v1/cook/simmer' \
  --header 'Content-Type: application/json' \
  --data '{
    "ingredients": [
      {
        "id": "text",
        "name": "text",
        "amount": 1,
        "unit": "text",
        "properties": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      }
    ],
    "temperature": 1,
    "duration": "text",
    "stirring_frequency": "text"
  }'
{
  "id": "text",
  "name": "text",
  "ingredients": [
    {
      "id": "text",
      "name": "text",
      "amount": 1,
      "unit": "text",
      "properties": {
        "ANY_ADDITIONAL_PROPERTY": "anything"
      }
    }
  ],
  "temperature": 1,
  "duration": "text",
  "properties": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  }
}

Virtually roasts ingredients

post
Body
ingredientsobject[]required

temperaturenumberrequired
durationstringrequired
turning_frequencystringoptional
Responses
post
curl -L \
  --request POST \
  --url 'https://api.tomatopy.example.com/v1/cook/roast' \
  --header 'Content-Type: application/json' \
  --data '{
    "ingredients": [
      {
        "id": "text",
        "name": "text",
        "amount": 1,
        "unit": "text",
        "properties": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      }
    ],
    "temperature": 1,
    "duration": "text",
    "turning_frequency": "text"
  }'
[
  {
    "id": "text",
    "name": "text",
    "ingredients": [
      {
        "id": "text",
        "name": "text",
        "amount": 1,
        "unit": "text",
        "properties": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      }
    ],
    "temperature": 1,
    "duration": "text",
    "properties": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    }
  }
]

Was this helpful?