OpenAI Sora 2
Sora 2 / Sora 2 Pro video generation
Via the unified POST /api/v2/video/generate, set model to a Sora variant.
Base URL:
https://api.aiclonevoicefree.com| Auth:Authorization: Bearer sk_...
| Field | Notes |
|---|---|
model | sora-2 / sora-2-pro |
prompt | ✅ Description |
duration | Seconds (e.g. 4 / 8 / 12 / 16 / 20) |
resolution | sora-2: 720p; sora-2-pro: 720p / 1024p / 1080p |
aspect_ratio | For text-to-video, e.g. 16:9 / 9:16 |
image_urls | Image-to-video (max 1) |
Billing (per second): sora-2 720p=34; sora-2-pro 720p=102 / 1024p=171 / 1080p=239.
Examples: cost = ceil(duration × rate)
- sora-2 720p 8s = 34 × 8 = 272 credits
- sora-2-pro 1080p 12s = 239 × 12 = 2868 credits
402at submit if insufficient; auto-refunded on failure.
curl -X POST https://api.aiclonevoicefree.com/api/v2/video/generate \
-H "Authorization: Bearer sk_your_api_key" -H "Content-Type: application/json" \
-d '{ "model": "sora-2", "prompt": "a corgi running, cinematic", "resolution": "720p", "duration": 8, "aspect_ratio": "16:9" }'Poll GET /api/v2/tasks/{task_id} for result.videoUrl. See Tasks.