> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pureclarity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# product_view event

> The product_view tracking event tells PureClarity that the user has viewed a product with the given id. Optionally it can also include product information.

The product\_view tracking event tells PureClarity that the user has viewed a product with the given id. Optionally it can also include product information.

## Properties

<ParamField body="id" type="string" required>
  Specifies the product that has been viewed

  **Example:** `P41923`
</ParamField>

<ParamField body="product" type="object">
  Optional product information. See the product feed for details of the properties to send
</ParamField>

## Example

```json theme={null}
{
  "id": "P41923"
}
```

### With Optional Product Information

```json theme={null}
{
  "id": "P41923",
  "product": {
    "title": "Example Product",
    "price": 29.99,
    "image": "https://example.com/images/product.jpg"
  }
}
```
