> ## Documentation Index
> Fetch the complete documentation index at: https://tryunsora.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List thumbnails

> All thumbnail generations for the authenticated user.

Returns thumbnail jobs for the authenticated user, newest first.

**`GET /thumbnails`**

## Response

```json theme={null}
{
  "success": true,
  "data": [
    {
      "id": "cm123abc",
      "userId": "user_...",
      "title": "How to grow on YouTube in 2026",
      "description": null,
      "image": "https://files.tryunsora.com/....jpg",
      "link": null,
      "jobId": "task_...",
      "status": "COMPLETED",
      "error": null,
      "completedAt": "2026-06-02T12:01:00.000Z",
      "createdAt": "2026-06-02T12:00:00.000Z",
      "updatedAt": "2026-06-02T12:01:00.000Z"
    }
  ]
}
```

## Example

```bash theme={null}
curl "https://mvp.tryunsora.com/api/v1/thumbnails" \
  -H "Authorization: Bearer uns_live_YOUR_API_KEY"
```


## OpenAPI

````yaml GET /thumbnails
openapi: 3.1.0
info:
  title: Unsora API
  version: 1.2.0
  description: >-
    Public API for Unsora integrations. Authenticate with Clerk JWT or
    uns_live_* API key. API keys are rate-limited to 60 requests/minute and
    support idempotency keys. Async jobs complete via polling GET
    /image/status/{id}.
servers:
  - url: https://mvp.tryunsora.com/api/v1
    description: Versioned API (recommended)
security: []
tags:
  - name: Clippings
  - name: Connect
  - name: Image Generations
  - name: Music Generations
  - name: Influencer Studio
  - name: Posts
  - name: Thumbnails
  - name: User
  - name: Video Generations
paths:
  /thumbnails:
    get:
      tags:
        - Thumbnails
      summary: List thumbnail generations
      responses:
        '200':
          description: List
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThumbnailListResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ThumbnailListResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/ThumbnailRecord'
      required:
        - success
        - data
    ThumbnailRecord:
      type: object
      properties:
        id:
          type: string
        userId:
          type: string
        title:
          anyOf:
            - type: string
            - type: 'null'
        description:
          anyOf:
            - type: string
            - type: 'null'
        image:
          type: string
        link:
          anyOf:
            - type: string
            - type: 'null'
        jobId:
          anyOf:
            - type: string
            - type: 'null'
        status:
          type: string
        error:
          anyOf:
            - type: string
            - type: 'null'
        completedAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - status
        - createdAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Clerk session JWT or Unsora API key (uns_live_*)

````