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

# Obtener receta

> Devuelve detalle completo de una receta incluyendo todos los ingredientes.

<ParamField header="x-api-key" type="string" required>
  API key de BOH con scope `recipes:read`.
</ParamField>

<ParamField path="vendorId" type="string" required>UUID del vendor.</ParamField>
<ParamField path="recipeId" type="string" required>UUID de la receta.</ParamField>

<ResponseField name="id" type="string">UUID de la receta.</ResponseField>
<ResponseField name="name" type="string">Nombre.</ResponseField>
<ResponseField name="status" type="string">`DRAFT`, `PUBLISHED`, o `ARCHIVED`.</ResponseField>
<ResponseField name="yield_quantity" type="number">Cantidad producida.</ResponseField>
<ResponseField name="yield_unit_id" type="string">UUID de la unidad de producción.</ResponseField>
<ResponseField name="ingredients" type="object[]">Ingredientes con cantidad, unidad y factor de merma.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "rec_01...",
    "name": "Salsa 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>
