Quick Start
Get up and running in 5 minutes
- Installation
- Authentication
- Your First Video
Text to Video
Generate videos from text prompts
- Basic Generation
- Advanced Prompting
- Model Selection
Image to Video
Animate your images with AI
- Uploading Images
- Motion Settings
- Best Practices
API Reference
Complete API documentation
- Authentication
- Endpoints
- Webhooks
Simple Integration
Generate your first video with just a few lines of code
index.js
import Seezoi from 'seezoi';
const client = new Seezoi({
apiKey: 'your-api-key'
});
// Generate with Veo 3.1 (Google's premium model)
const video = await client.generate({
prompt: 'Cinematic drone shot over mountains',
model: 'veo-3.1-720' // Options: veo-3.1-720, sora-2-pro-720, hailuo-pro, kling, wan-2.5-video, ltx-2-fast
});
console.log(video.url);Ready to build?
Get your API key and start generating in minutes