---
title: "List Collection Items"
method: GET
path: "/api/collection/{collection_id}/items"
tags: ["Collections"]
---

# List Collection Items

`GET /api/collection/{collection_id}/items`

Lists the reports (Cards) and dashboards inside your collection. Use the `id` from any Card to download its data.

## Path parameters

- `collection_id` unknown, required

## Query parameters

- `models` 'card' | 'dashboard' | 'document'
- `limit` unknown
- `offset` unknown

## Response `200`

A paginated list of items in the Collection.

- CollectionItemsResponse — The list of reports and dashboards in your collection.
  - `total` integer, nullable — Total number of items.
  - `data` CollectionItem[] — Your reports and dashboards.
    - `id` integer — Report or dashboard ID. Use this to download data or get more details.
    - `name` string — Report or dashboard name.
    - `model` 'card' | 'dashboard' | 'document' — `"card"` = a report you can download, `"dashboard"` = a dashboard.
    - `description` string, nullable — What this report covers.

## Other responses

- `401` — Unauthorized — `x-api-key` header is missing or invalid.
- `403` — Forbidden — your API key doesn't have access to this Collection.
- `404` — Collection not found.

---

[API](https://skmtc.net/livelike/apis/engagement-suite.md) · [All operations](https://skmtc.net/livelike/apis/engagement-suite/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/livelike/engagement-suite/revisions/f3171d1c30f7/schema)
