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

fetch('https://api.phaseo.ai/v1/videos/models', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
import requests

url = "https://api.phaseo.ai/v1/videos/models"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
curl --request GET \
--url https://api.phaseo.ai/v1/videos/models \
--header 'Authorization: Bearer <token>'
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.phaseo.ai/v1/videos/models"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.phaseo.ai/v1/videos/models")
.header("Authorization", "Bearer <token>")
.asString();
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.phaseo.ai/v1/videos/models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
require 'uri'
require 'net/http'

url = URI("https://api.phaseo.ai/v1/videos/models")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "object": "list",
  "data": [
    {
      "model": "<string>",
      "name": "<string>",
      "status": "<string>",
      "input_types": [
        "<string>"
      ],
      "output_types": [
        "<string>"
      ],
      "supported_params": [
        "<string>"
      ],
      "supported_parameters": [
        "<string>"
      ],
      "supported_params_detail": {},
      "supported_parameters_detail": {},
      "providers": [
        {
          "id": "<string>",
          "supported_params": [
            "<string>"
          ],
          "supported_parameters": [
            "<string>"
          ],
          "supported_params_detail": {},
          "supported_parameters_detail": {}
        }
      ],
      "pricing": {}
    }
  ]
}
Each item includes capability metadata such as:
  • model
  • name
  • status
  • input_types
  • output_types
  • supported_params
  • supported_parameters
  • supported_params_detail
  • supported_parameters_detail
  • providers, each with provider-level supported parameter detail
  • pricing
supported_parameters is the OpenRouter-compatible alias for supported_params. supported_params_detail and supported_parameters_detail are aliases for the same structured metadata. New clients should prefer supported_parameters and supported_parameters_detail; existing clients can continue reading supported_params and supported_params_detail. These detail maps expose structured constraints such as allowed durations, resolutions, qualities, aspect ratios, voice or audio options when relevant, and provider-specific parameter support when that metadata is available. You can filter models by supported parameter with the params query parameter. Repeat it or pass a comma-separated list. The filter accepts canonical names and aliases from supported_parameters_detail, so params=size can match models whose canonical parameter is resolution, and params=duration_seconds can match duration.
curl "https://api.phaseo.ai/v1/videos/models?params=size,duration_seconds" \
  -H "Authorization: Bearer $PHASEO_API_KEY"
{
  "object": "list",
  "data": [
    {
      "model": "openai/sora",
      "status": "active",
      "input_types": ["text", "image"],
      "output_types": ["video"],
      "supported_params": ["duration", "resolution", "aspect_ratio"],
      "supported_parameters": ["duration", "resolution", "aspect_ratio"],
      "supported_parameters_detail": {
        "duration": {
          "supported": true,
          "values": [4, 8, 12],
          "providers": ["openai"]
        },
        "resolution": {
          "supported": true,
          "values": ["720p", "1080p"],
          "providers": ["openai"]
        }
      },
      "providers": [
        {
          "id": "openai",
          "supported_params": ["duration", "resolution", "aspect_ratio"],
          "supported_parameters": ["duration", "resolution", "aspect_ratio"],
          "supported_parameters_detail": {
            "duration": {
              "supported": true,
              "values": [4, 8, 12]
            }
          }
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

params
string[]

Optional supported-parameter filter. Repeat the parameter or pass a comma-separated list. Canonical names and aliases are accepted, for example resolution, size, duration, or duration_seconds.

Response

200 - application/json

Video model capability list

object
string
Example:

"list"

data
object[]
Last modified on July 9, 2026