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

# Video list (Beta)

> List owned video generation jobs for the authenticated workspace.

Returns the authenticated workspace's owned video jobs in reverse chronological order.

Use query parameters to narrow the response:

* `limit` to cap the number of returned jobs
* repeated `status` values to filter by lifecycle state

The response is a standard `list` envelope whose `data` array contains the same public `video` objects returned by `POST /videos` and `GET /videos/{video_id}`.

This is useful for building:

* async job dashboards
* recent-generation history views
* status-filtered polling views for completed, failed, or in-progress jobs


## OpenAPI

````yaml GET /videos
openapi: 3.0.3
info:
  title: AI Stats Gateway API
  description: >-
    A gateway API for accessing various AI models with OpenAI-compatible
    endpoints.
  version: 1.0.0
  contact:
    name: AI Stats
    url: https://docs.ai-stats.phaseo.app
    email: danielbutler500@gmail.com
servers:
  - url: https://api.phaseo.app/v1
security:
  - BearerAuth: []
tags:
  - name: Gateway
    description: Core AI Stats Gateway operations.
paths:
  /videos:
    get:
      tags:
        - Gateway
      summary: List videos
      description: Lists async video generation jobs for the authenticated team.
      operationId: listVideos
      responses:
        '200':
          description: Video list response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication

````