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

# Get item

> Returns a single inventory item with its full detail including metadata.

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

<ParamField path="vendorId" type="string" required>
  Vendor UUID.
</ParamField>

<ParamField path="itemId" type="string" required>
  Item UUID.
</ParamField>

<ResponseField name="id" type="string">BOH-assigned UUID.</ResponseField>
<ResponseField name="account_id" type="string">Account UUID.</ResponseField>
<ResponseField name="external_item_id" type="string | null">Your system's identifier.</ResponseField>
<ResponseField name="code" type="string | null">Short alphanumeric code.</ResponseField>
<ResponseField name="name" type="string">Display name.</ResponseField>
<ResponseField name="type" type="string">`INGREDIENT`, `PACKAGING`, `SUPPLY`, `PREPARED_ITEM`, `FINISHED_GOOD`.</ResponseField>
<ResponseField name="procurement_type" type="string">`PURCHASED`, `PRODUCED`, `PURCHASED_AND_PRODUCED`.</ResponseField>
<ResponseField name="unit_group_id" type="string">UUID of the unit group.</ResponseField>
<ResponseField name="base_unit_id" type="string">UUID of the base unit.</ResponseField>
<ResponseField name="is_inventory_tracked" type="boolean">Whether stock movements are recorded.</ResponseField>
<ResponseField name="is_active" type="boolean">`false` when archived.</ResponseField>
<ResponseField name="count_frequency" type="string | null">Suggested count cycle.</ResponseField>
<ResponseField name="metadata" type="object">Free-form extra data.</ResponseField>
<ResponseField name="created_at" type="string">ISO 8601 creation timestamp.</ResponseField>
<ResponseField name="updated_at" type="string">ISO 8601 last-update timestamp.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "itm_01j5k...",
    "account_id": "acc_01j...",
    "external_item_id": "SKU-001",
    "code": "FLOUR-KG",
    "name": "All-purpose flour",
    "type": "INGREDIENT",
    "procurement_type": "PURCHASED",
    "unit_group_id": "ug_mass_01...",
    "base_unit_id": "unit_g_01...",
    "is_inventory_tracked": true,
    "is_active": true,
    "count_frequency": "WEEKLY",
    "metadata": {},
    "created_at": "2026-01-10T09:00:00.000Z",
    "updated_at": "2026-07-01T12:00:00.000Z"
  }
  ```

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