> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fire.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# Expandir receita (resolução de ingredientes)

> Resolve recursivamente todos os ingredientes da receita (incluindo sub-receitas) até os itens base.

<ParamField header="x-api-key" type="string" required>
  API key do BOH com escopo `recipes:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID do vendor.</ParamField>
<ParamField path="recipeId" type="string" required>UUID da receita.</ParamField>
<ParamField query="yield_multiplier" type="number">Fator para escalar os ingredientes (padrão 1).</ParamField>

<ResponseField name="expanded_ingredients" type="object[]">Lista de ingredientes base com quantidades consolidadas.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "expanded_ingredients": [
      {
        "item_id": "itm_01...",
        "item_name": "Tomate",
        "quantity_needed": 0.84,
        "unit_id": "unit_kg_01...",
        "unit_abbreviation": "kg"
      }
    ]
  }
  ```
</ResponseExample>
