Skip to main content
GET
/
videos
/
models
List available video models
curl --request GET \
  --url https://api.smartlyq.com/v1/videos/models \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "model": "kling-v2-1",
      "type": "text_to_video",
      "params": {
        "duration": [
          5,
          10
        ],
        "resolution": [],
        "mode": [
          "Standard",
          "Professional"
        ],
        "aspect_ratio": [
          "16:9",
          "9:16",
          "1:1"
        ],
        "style": [],
        "movement": [],
        "supports_negative_prompt": true,
        "supports_seed": false,
        "supports_generate_audio": false,
        "supports_camera_fixed": false,
        "prompt_max_length": 2500
      }
    },
    {
      "model": "pixverse-v4-5",
      "type": "text_to_video",
      "params": {
        "duration": [
          5,
          8
        ],
        "resolution": [
          "360p",
          "540p",
          "720p",
          "1080p"
        ],
        "mode": [
          "Normal",
          "Fast"
        ],
        "aspect_ratio": [
          "16:9",
          "9:16",
          "1:1",
          "4:3",
          "3:4"
        ],
        "style": [
          "Auto",
          "Anime",
          "3D Animation",
          "Comic",
          "Clay",
          "Cyberpunk"
        ],
        "movement": [],
        "supports_negative_prompt": false,
        "supports_seed": true,
        "supports_generate_audio": false,
        "supports_camera_fixed": false,
        "prompt_max_length": 2000
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.smartlyq.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from Developer dashboard (Bearer token).

Response

List of available models with their capabilities

success
enum<boolean>
Available options:
true
data
object[]
meta
object