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

> Retorna detalhes completos de um item do catálogo.

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

<ParamField path="vendorId" type="string" required>UUID do vendor.</ParamField>
<ParamField path="itemId" type="string" required>UUID do item.</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "itm_01...",
    "name": "Tomate",
    "status": "ACTIVE",
    "base_unit_id": "unit_kg_01...",
    "unit_group_id": "ug_peso_01...",
    "external_item_id": "tomate"
  }
  ```

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