---
title: "Get user media collection for a specific model"
method: GET
path: "/v1/collection/models/{modelId}"
tags: ["Collection"]
---

# Get user media collection for a specific model

`GET /v1/collection/models/{modelId}`

Returns paginated list of all media (images and videos) received by the user from a specific model

## Path parameters

- `modelId` string, required

## Query parameters

- `page` number
- `limit` number
- `type` 'image' | 'video'
- `sort` 'newest_first' | 'oldest_first'

## Response `200`

Model collection retrieved successfully

- CollectionListResponseDto
  - `items` CollectionItemDto[], required
    - `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
  - `total` number, required — Total number of items
  - `page` number, required — Current page number
  - `limit` number, required — Number of items per page
  - `totalPages` number, required — Total number of pages

---

[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)
