> ## 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 models (Beta)

> List active public video model capabilities.

Returns the DB-backed public video model catalogue for the video surface.

Each item includes capability metadata such as:

* `model`
* `name`
* `status`
* `input_types`
* `output_types`
* `supported_params`
* `providers`
* `pricing`

Use this endpoint when you need a video-specific capability list for:

* playground model selectors
* SDK/runtime validation
* product surfaces that should only expose active public video models


## OpenAPI

````yaml GET /videos/models
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/models:
    get:
      tags:
        - Gateway
      summary: List video model capabilities
      description: >-
        Returns DB-backed video model/provider capability metadata for the video
        playground and SDK validation.
      operationId: listVideoModels
      responses:
        '200':
          description: Video model capability list
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    example: list
                  data:
                    type: array
                    items:
                      type: object
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication

````