List Models
GET https://api.wavespeed.ai/api/v3/models
Gets a list of available models.
Headers
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer your_access_key |
Example Request
curl https://api.wavespeed.ai/api/v3/models \
-H "Authorization: Bearer your_access_key"Example Response
{
"code": 200,
"message": "success",
"data": [
{
"model_id": "wavespeed-ai/hunyuan-video/t2v",
"name": "wavespeed-ai/hunyuan-video/t2v",
"base_price": 0.4,
"formula": "",
"description": "The advanced text-to-video model for generating high-definition videos with realistic motions",
"type": "text-to-video",
"api_schema": {
"api_schemas": [
{
"type": "model_run",
"method": "POST",
"server": "https://api.wavespeed.ai",
"api_path": "/api/v3/wavespeed-ai/hunyuan-video/t2v",
"request_schema": {
"properties": {
"num_inference_steps": {
"default": 30,
"description": "The number of inference steps to perform.",
"maximum": 30,
"minimum": 2,
"type": "integer"
},
"prompt": {
"description": "The positive prompt for the generation.",
"type": "string"
},
"seed": {
"default": -1,
"description": "The random seed to use for the generation. -1 means a random seed will be used.",
"type": "integer"
},
"size": {
"default": "1280*720",
"description": "The size of the generated media in pixels (width*height).",
"enum": [
"1280*720",
"720*1280"
],
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object",
"x-order-properties": [
"prompt",
"size",
"seed",
"num_inference_steps"
]
}
}
]
}
}
]
}