More modelsWavespeed aiHunyuan video t2v

Generate video with wavespeed-ai/hunyuan-video/t2v

Generates a video using the wavespeed-ai/hunyuan-video/t2v model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

seed?integer

The random seed to use for the generation. -1 means a random seed will be used.

Default-1
size?string

The size of the generated media in pixels (width*height).

Value in"1280*720" | "720*1280"
promptstring

The prompt to generate the video from.

num_inference_steps?integer

The number of inference steps to perform.

Default30
Range2 <= value <= 30
enable_safety_checker?boolean

If set to true, the safety checker will be enabled.

Defaulttrue

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "wavespeed-ai/hunyuan-video/t2v",    "prompt": "A playful, fluffy orange kitten wearing sunglasses skateboarding smoothly through a neon-lit futuristic cityscape at night, passing robots, flying cars, and holographic advertisements."  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}