> ## 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 uploads

> Paginated list of your uploaded media assets, including file type, size, and URLs, ready to attach to posts and generation jobs.

Returns your uploaded assets (newest first), paginated with `page` and `limit`
(max 100). Only uploads are returned — generated media lives on its own
generation endpoints.


## OpenAPI

````yaml GET /uploads
openapi: 3.1.0
info:
  title: Unsora API
  version: 1.2.0
  description: >-
    Public API for Unsora integrations. Use Bearer token from Clerk in
    Authorization header.
servers:
  - url: /api/v1
    description: Versioned API
security: []
tags:
  - name: User
  - name: Connect
  - name: Stripe
  - name: Video
  - name: Image
  - name: Influencer
  - name: Thumbnail
  - name: Clipping
  - name: Music
  - name: Voiceover
  - name: Uploads
paths:
  /uploads:
    get:
      tags:
        - Uploads
      summary: List your uploaded media
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 12
            maximum: 100
      responses:
        '200':
          description: Paginated uploads
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      uploads:
                        type: array
                        items:
                          $ref: '#/components/schemas/UploadAsset'
                      pagination:
                        type: object
                        properties:
                          page:
                            type: integer
                          limit:
                            type: integer
                          total:
                            type: integer
                          totalPages:
                            type: integer
      security:
        - bearerAuth: []
components:
  schemas:
    UploadAsset:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
          description: Public URL of the stored file.
        mimeType:
          type: string
        type:
          type: string
          enum:
            - IMAGE
            - VIDEO
            - AUDIO
            - DOCUMENT
        fileSize:
          type: integer
          nullable: true
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````