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.comAuth: Authorization: Bearer sk_...

FieldNotes
modelsora-2 / sora-2-pro
prompt✅ Description
durationSeconds (e.g. 4 / 8 / 12 / 16 / 20)
resolutionsora-2: 720p; sora-2-pro: 720p / 1024p / 1080p
aspect_ratioFor text-to-video, e.g. 16:9 / 9:16
image_urlsImage-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

402 at 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.