AI Video Generation
Generate stunning videos from text prompts and images. Multiple models, one API. OpenAI-compatible β migrate from Sora in minutes.
No spam. Just a one-time launch notification.
β‘ Sora 1 shutting down March 13?
CreativeAI's video API is OpenAI-compatible. When we launch, you can migrate with a single line change β just swap the base URL. Same format, better reliability, multiple models.
What's Coming
Text to Video
Describe your scene in natural language and watch it come to life with cinematic quality.
Image to Video
Animate any still image into a fluid, dynamic video. Perfect for product shots and art.
OpenAI-Compatible API
Drop-in replacement for existing video APIs. Switch from Sora with minimal code changes.
Multi-Model Routing
Access Kling, Seedance, and more through a single endpoint. Best model, every time.
Supported Models at Launch
| Model | Provider | Strength |
|---|---|---|
| Kling v3.0 / O3 | Kuaishou | Cinematic motion, text/image/reference-to-video, video editing |
| Seedance | ByteDance | Fast generation with audio, 4-12s duration |
| Veo 3.1 | 1080p high-quality output, reference images | |
| More coming | β | We're always adding models |
API Preview
Same format you already know. Works with any OpenAI SDK.
# Text-to-Video with Kling v3.0
curl -X POST https://api.creativeai.run/v1/video/generations \
-H "Authorization: Bearer $CREATIVEAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-v3",
"prompt": "A golden retriever running through autumn leaves in slow motion",
"size": "16:9",
"duration": 5
}'
# Poll for result
curl https://api.creativeai.run/v1/video/generations/{id} \
-H "Authorization: Bearer $CREATIVEAI_API_KEY"