Skip to main content
GET
/
videos
/
models
List video model capabilities
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/videos/models', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "object": "list",
  "data": [
    {}
  ]
}

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.

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

Authorizations

Authorization
string
header
required

Bearer token authentication

Response

200 - application/json

Video model capability list

object
string
Example:

"list"

data
object[]
Last modified on May 6, 2026