ApiModels
Sora 2 Models
Sora 2 and Sora 2 Pro modes, credit pricing, and Vidrush API examples.
Overview
Vendor: OpenAI. sora-2 provides cinematic text- and image-guided video with native audio. sora-2-pro is the higher-fidelity option for polished cinematic scenes.
Supported modes
| Model | Mode | Durations | Resolutions | Aspect ratios | Audio |
|---|---|---|---|---|---|
sora-2 | text-to-video, image-to-video | 4s, 8s, 12s | 720p, 1080p | 16:9, 9:16 | Yes |
sora-2-pro | text-to-video, image-to-video | 12s | 720p, 1080p | 16:9, 9:16 | Yes |
Credit pricing
The matrix is identical for text-to-video and image-to-video. Audio is a supported toggle and does not have a separate configured multiplier.
sora-2
| Resolution | 4s | 8s | 12s |
|---|---|---|---|
| 720p | 10 | 20 | 30 |
| 1080p | 20 | 40 | 60 |
sora-2-pro
| Resolution | 12s |
|---|---|
| 720p | 60 |
| 1080p | 120 |
All values are credits per generation.
cURL
curl -X POST https://vidrush-ai.com/api/v1/videos \
-H "Authorization: Bearer $VIDRUSH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "sora-2",
"mode": "text-to-video",
"prompt": "A paper kite crossing a bright summer sky",
"options": {
"duration": "8s",
"resolution": "720p",
"aspect_ratio": "16:9",
"audio": true
}
}'CLI
vidrush generate -m sora-2 -p "A paper kite crossing a bright summer sky" \
--duration 8s --resolution 720p --aspect-ratio 16:9 --audio --waitMCP
Ask the connected MCP client to call generate_video with model: "sora-2"; it returns the credit cost and task ID.
Notes
- Send a public image URL in
image_urlsforimage-to-video. - Only use the duration, resolution, and aspect-ratio combinations listed above.