---
title: "Get a single collection item by ID"
method: GET
path: "/v1/collection/{id}"
tags: ["Collection"]
---

# Get a single collection item by ID

`GET /v1/collection/{id}`

Returns a single collection item if it belongs to the user

## Path parameters

- `id` string, required

## Response `200`

Collection item retrieved successfully

- CollectionItemDto
  - `id` string, required — Unique identifier of the collection item
  - `type` 'image' | 'video' | 'audio' | 'gift', required — Type of media
  - `url` string, required — CDN URL of the media
  - `videoUrl` string — CDN URL of the video (for video type)
  - `explicit` boolean, required — Whether the content is explicit
  - `status` 'IN_QUEUE' | 'IN_PROGRESS' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'TIMED_OUT', required — Status of the media generation
  - `model` CollectionModelDto, required
    - `id` string, required — Model ID
    - `name` string, required — Model name
    - `photo` string, required — Model photo CDN URL

## Other responses

- `404` — Collection item not found

---

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