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

# List videos



## OpenAPI

````yaml /openapi.yaml get /v1/videos
openapi: 3.1.0
info:
  title: VTurb API
  version: v1
  description: |
    Public REST API for VTurb. Dev-first and agents-first: every documented
    response is recorded from the API's real behavior.
  contact:
    name: VTurb API
    url: https://vturb.com
servers:
  - url: https://api.vturb.com
security:
  - bearerAuth: []
paths:
  /v1/videos:
    get:
      tags:
        - Videos
      summary: List videos
      parameters:
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          example: nonsense
        - name: folder_id
          in: query
          required: false
          schema:
            type: string
          example: 66a0c1d2e3f4a5b6c7d8e9f0
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
          example: 20
      responses:
        '200':
          description: >-
            Optional query params: folder_id scopes to a folder; cursor +
            per_page drive the cursor pagination. A video created seconds ago
            may take a moment to appear in the list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  videos:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        status:
                          type: string
                        name:
                          type: string
                        folder_id:
                          type:
                            - string
                            - 'null'
                        created_at:
                          type: string
                        updated_at:
                          type: string
                      required:
                        - id
                        - status
                        - name
                        - folder_id
                        - created_at
                        - updated_at
                required:
                  - videos
              example:
                videos:
                  - id: 652f2b1e8f1b2c3d4e5f6a7b
                    status: ready
                    name: Landing hero
                    folder_id: 66a0c1d2e3f4a5b6c7d8e9f0
                    created_at: '2026-09-01T12:00:00.000Z'
                    updated_at: '2026-09-02T12:00:00.000Z'
        '401':
          description: Missing API credential.
          content:
            application/problem+json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  code:
                    type: string
                  message:
                    type: string
                  request_id:
                    type: string
                required:
                  - type
                  - code
                  - message
                  - request_id
              example:
                type: https://docs.vturb.com/errors/unauthorized
                code: unauthorized
                message: >-
                  Missing or invalid API credential. Send a vt_ token in the
                  Authorization header.
                request_id: 00000000-0000-0000-0000-000000000000
        '403':
          description: The credential is missing the videos:read scope.
          content:
            application/problem+json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  code:
                    type: string
                  message:
                    type: string
                  request_id:
                    type: string
                required:
                  - type
                  - code
                  - message
                  - request_id
              example:
                type: https://docs.vturb.com/errors/forbidden
                code: forbidden
                message: The credential is missing the scope this action requires.
                request_id: 00000000-0000-0000-0000-000000000000
        '422':
          description: The cursor is not a valid pagination cursor.
          content:
            application/problem+json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  code:
                    type: string
                  message:
                    type: string
                  request_id:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        field:
                          type: string
                        message:
                          type: string
                      required:
                        - field
                        - message
                required:
                  - type
                  - code
                  - message
                  - request_id
                  - errors
              example:
                type: https://docs.vturb.com/errors/unprocessable_content
                code: unprocessable_content
                message: Invalid cursor.
                request_id: 00000000-0000-0000-0000-000000000000
                errors:
                  - field: cursor
                    message: is not a valid cursor
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Paste your VTurb API token (vt_...). Sent as `Authorization: Bearer
        <token>`.

````