> ## 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.

# Obter receita

> Retorna detalhes completos de uma receita incluindo todos os ingredientes.

<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>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "rec_01...",
    "name": "Molho de Tomate",
    "status": "PUBLISHED",
    "yield_quantity": 1,
    "yield_unit_id": "unit_lt_01...",
    "ingredients": [
      {
        "id": "ri_01...",
        "item_id": "itm_01...",
        "quantity": 0.8,
        "unit_id": "unit_kg_01...",
        "waste_factor": 0.05
      }
    ]
  }
  ```

  ```json 404 theme={null}
  {
    "error": {
      "kind": "recipe_not_found",
      "message": "Recipe not found"
    }
  }
  ```
</ResponseExample>
