Built for Developers. Ready to Integrate.
Access the full power of our video generation engine through a clean, well-documented REST API. Test endpoints in our interactive playground and get up and running in minutes.
# Example: Generate a video via API
const response = await fetch(
'https://.../api/v1/generate', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: 'A futuristic cityscape at sunset, flying cars, neon lights.',
scenes: 3
})
}
);
const data = await response.json();
// { video_url: '...' }