> ## 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 recepción de mercancía

> Devuelve detalle completo de una recepción de mercancía incluyendo todas las líneas.

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

<ParamField path="vendorId" type="string" required>UUID del vendor.</ParamField>
<ParamField path="receiptId" type="string" required>UUID de la recepción.</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "gr_01...",
    "status": "COMPLETED",
    "store_id": "str_principal_01...",
    "supplier_id": "sup_01...",
    "occurred_at": "2026-08-07T09:00:00.000Z",
    "reference": "FAC-2026-001",
    "notes": null,
    "lines": [
      {
        "id": "grl_01...",
        "item_id": "itm_01...",
        "quantity": 10,
        "unit_id": "unit_kg_01...",
        "unit_cost": 25.00
      }
    ]
  }
  ```

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