Video
SeaCloud provides various video generation models including Google Veo, Hailuo, Wanx, and more. Each model has its own dedicated API endpoint and parameters.
Important: Each video generation model has its own API endpoint and parameter structure. Please visit the Models page to see the calling method for specific models.
How to Use Video Generation Models
3
Example: Using Google Veo 3.1
Here is an example of generating a video using Google Veo 3.1:
curl --location 'https://cloud.seaart.ai/api/v1/google_veo_31/generate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "google_veo_31",
"input": [
{
"params": {
"prompt": "A drone flying over a futuristic city at sunset",
"durationSeconds": 8,
"aspectRatio": "16:9",
"resolution": "720p",
"compressionQuality": "optimized",
"personGeneration": "allow_adult"
}
}
]
}'Recommended: Visit the Models page to see all available video generation models, each with complete API examples.
Last updated