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

# List Videos

> List all videos in the authenticated org. Filter by collection or processing status (comma-separated).



## OpenAPI

````yaml /openapi.json get /v1/videos
openapi: 3.1.0
info:
  title: Pureframe API
  version: v1
  description: >-
    The Pureframe API lets you upload videos, index them for semantic search,
    and retrieve timestamped clips matching text queries or reference images.
    All endpoints require a Bearer API key (`Authorization: Bearer pf_...`).
  contact:
    url: https://pureframe.ai
    email: hello@pureframe.ai
  x-logo:
    url: https://pureframe.ai/logo.png
servers:
  - url: https://api.pureframe.ai
    description: Production
security: []
tags: []
paths:
  /v1/videos:
    get:
      tags:
        - Videos
      summary: List Videos
      description: >-
        List all videos in the authenticated org. Filter by collection or
        processing status (comma-separated).
      operationId: list_videos_v1_videos_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Per Page
        - name: collection_id
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            title: Collection Id
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_list_VideoListItem__'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiResponse_list_VideoListItem__:
      properties:
        data:
          items:
            $ref: '#/components/schemas/VideoListItem'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/Meta'
      type: object
      required:
        - data
        - meta
      title: ApiResponse[list[VideoListItem]]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    VideoListItem:
      properties:
        id:
          type: string
          title: Id
        filename:
          type: string
          title: Filename
        collection_id:
          type: string
          title: Collection Id
        status:
          type: string
          title: Status
        thumbnail_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail Url
        duration_secs:
          anyOf:
            - type: number
            - type: 'null'
          title: Duration Secs
        width:
          anyOf:
            - type: integer
            - type: 'null'
          title: Width
        height:
          anyOf:
            - type: integer
            - type: 'null'
          title: Height
        fps:
          anyOf:
            - type: number
            - type: 'null'
          title: Fps
        file_size_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: File Size Bytes
        codec:
          anyOf:
            - type: string
            - type: 'null'
          title: Codec
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Mime Type
        storage_bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Storage Bytes
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        progress_pct:
          anyOf:
            - type: integer
            - type: 'null'
          title: Progress Pct
      type: object
      required:
        - id
        - filename
        - collection_id
        - status
      title: VideoListItem
    Meta:
      properties:
        request_id:
          type: string
          title: Request Id
        took_ms:
          type: number
          title: Took Ms
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
        page:
          anyOf:
            - type: integer
            - type: 'null'
          title: Page
        per_page:
          anyOf:
            - type: integer
            - type: 'null'
          title: Per Page
        facets:
          anyOf:
            - additionalProperties:
                additionalProperties:
                  type: integer
                type: object
              type: object
            - type: 'null'
          title: Facets
      type: object
      required:
        - request_id
        - took_ms
      title: Meta
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````