🍕🔥 Pizza is great! 🔥🍕

Pizza

Pizza creation and baking operations

Creates virtual pizza foundations

post
Body
thicknessstring · enumrequiredAvailable options:
sizestring · enumrequiredAvailable options:
stylestring · enumrequiredAvailable options:
hydrationnumber · max: 1optional
fermentation_timestringoptional
flour_typestringoptional
salt_contentnumber · max: 1optional
Responses
post
curl -L \
  --request POST \
  --url 'https://api.tomatopy.example.com/v1/pizza/base' \
  --header 'Content-Type: application/json' \
  --data '{
    "thickness": "thin",
    "size": "8inch",
    "style": "neapolitan",
    "hydration": 1,
    "fermentation_time": "text",
    "flour_type": "text",
    "salt_content": 1
  }'
{
  "id": "text",
  "thickness": "text",
  "size": "text",
  "style": "text",
  "hydration": 1,
  "fermentation_time": "text",
  "flour_type": "text",
  "salt_content": 1
}

Simulates baking a pizza

post
Body
pizza_idstringrequired
temperaturenumberrequired
durationstringrequired
rotation_frequencystringoptional
steam_injectionbooleanoptional
crust_developmentstring · enumoptionalAvailable options:
Responses
post
curl -L \
  --request POST \
  --url 'https://api.tomatopy.example.com/v1/pizza/bake' \
  --header 'Content-Type: application/json' \
  --data '{
    "pizza_id": "text",
    "temperature": 1,
    "duration": "text",
    "rotation_frequency": "text",
    "steam_injection": true,
    "crust_development": "low"
  }'
{
  "id": "text",
  "base": {
    "id": "text",
    "thickness": "text",
    "size": "text",
    "style": "text",
    "hydration": 1,
    "fermentation_time": "text",
    "flour_type": "text",
    "salt_content": 1
  },
  "toppings": [
    {
      "id": "text",
      "name": "text",
      "amount": 1,
      "unit": "text",
      "distribution": "text"
    }
  ],
  "baking_parameters": {
    "temperature": 1,
    "duration": "text",
    "rotation_frequency": "text",
    "steam_injection": true,
    "crust_development": "text"
  },
  "quality_metrics": {
    "overall_score": 1,
    "crust_crispness": 1,
    "cheese_melt": 1,
    "topping_distribution": 1
  }
}

Was this helpful?