---
title: "List Item Detail Views"
method: GET
path: "/{databaseId}/items/{itemId}/detailviews/"
tags: ["User-Item Interactions"]
---

# List Item Detail Views

`GET /{databaseId}/items/{itemId}/detailviews/`

Lists all the detail views of the given item ever made by different users.

## Path parameters

- `databaseId` string, required
- `itemId` string, required

## Response `200`

Successful operation.

- DetailView[]
  - `userId` string, required — User who viewed the item
  - `itemId` string, required — Viewed item
  - `timestamp` union — UTC timestamp of the view as ISO8601-1 pattern or UTC epoch time. The default value is the current time.
    - string, double
    - number, double
  - `duration` integer — Duration of the view
  - `cascadeCreate` boolean — Sets whether the given user/item should be created if not present in the database.
  - `recommId` string — If this detail view is based on a recommendation request, `recommId` is the id of the clicked recommendation.
  - `additionalData` object — A dictionary of additional data for the interaction.
  - `autoPresented` boolean — Indicates whether the item was automatically presented to the user (e.g., in a swiping feed) or explicitly requested by the user (e.g., by clicking on a link). Defaults to `false`.

## Other responses

- `400` — The `itemId` does not match ^[a-zA-Z0-9_\-:@\.]+$.
- `404` — Given `itemId` not found in the database. If there is no additional info in the JSON response, you probably have an error in your URL.

---

[API](https://skmtc.dev/recombee/apis/recombee-api.md) · [All operations](https://skmtc.dev/recombee/apis/recombee-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/recombee/recombee-api/revisions/a9c9c33eb2e8/schema)
