Video Generationtextimage
Veo 3
Google Veo 3 video generation model。
Input
Generation mode
Describe the video with text only, no images required.
Seed
-14294967295
Duration
Resolution
Aspect ratio
Generate audio
Ready to generateAPI Reference
POSThttps://api.token360.ai/v1/videos# Step 1: Create video generation task
curl https://api.token360.ai/v1/videos \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-api-key" \
-d '{
"model": "veo-3.0-generate-001",
"prompt": "A cat walking across a room",
"duration": 6,
"resolution": "720p",
"resize_mode": "crop",
"aspect_ratio": "16:9",
"sample_count": 1,
"generate_audio": false,
"person_generation": "allow_all",
"compression_quality": "optimized"
}'
# Step 2: Poll for completion (replace VIDEO_ID with the id from step 1)
curl https://api.token360.ai/v1/videos/VIDEO_ID \
-H "Authorization: Bearer your-api-key"