> ## 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 artículo

> Devuelve detalle completo de un artículo de catálogo por su UUID.

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

<ParamField path="vendorId" type="string" required>UUID del vendor.</ParamField>
<ParamField path="itemId" type="string" required>UUID del artículo.</ParamField>

<ResponseField name="id" type="string">UUID del artículo.</ResponseField>
<ResponseField name="account_id" type="string">UUID de la cuenta.</ResponseField>
<ResponseField name="name" type="string">Nombre del artículo.</ResponseField>
<ResponseField name="status" type="string">`ACTIVE` o `INACTIVE`.</ResponseField>
<ResponseField name="base_unit_id" type="string">UUID de la unidad de medida base.</ResponseField>
<ResponseField name="unit_group_id" type="string">UUID del grupo de unidades.</ResponseField>
<ResponseField name="external_item_id" type="string">Identificador en tu sistema.</ResponseField>

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

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