---
title: "Get a Collection"
method: GET
path: "/v3/collections/items"
tags: ["Collections"]
---

# Get a Collection

`GET /v3/collections/items`

## Query parameters

- `collectionName` string, required
- `page` integer
- `limit` integer
- `includeSubcollections` boolean

## Response `200`

The request has succeeded.

- CollectionResponseV3 — Collection details
  - `collectionID` string, required — Unique identifier for the collection
  - `collectionName` string, required — The collection name/path. Only letters, digits, underscores, and dots are allowed.
  - `itemCount` integer, required — Number of items in the collection
  - `items` CollectionItemV3[] — List of items in the collection (when fetching collection details)
    - `collectionItemID` string, required — Unique identifier for the item
    - `data` union, required — The data stored in this item
      - string
      - object
    - `createdAt` string, date-time, required — When the item was created
    - `updatedAt` string, date-time, required — When the item was last updated
  - `page` integer — Current page number
  - `limit` integer — Number of items per page
  - `totalPages` integer — Total number of pages
  - `createdAt` string, date-time, required — When the collection was created
  - `updatedAt` string, date-time — When the collection was last updated

## Other responses

- `404` — The server cannot find the requested resource.

---

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