Sora2

OpenAI's Sora 2 for video generation

Features
  • Text-to-video generation
  • Image-to-video animation
  • Multiple durations
  • Optional watermark removal
Pricing
DurationWatermarkNo Watermark
10 frames8 (~$0.09)10 (~$0.11)
15 frames10 (~$0.11)12 (~$0.13)

Sora2 standard version

Sora2-pro version

DurationStandardHigh
10 frames125 (~$1.39)275 (~$3.06)
15 frames225 (~$2.50)475 (~$5.28)
Endpoint
POST/api/v1/videos/generate
Parameters
ParameterTypeRequiredDescription
modelstringRequired"sora2" or "sora2-pro"
typestringOptional"text-to-video" or "image-to-video"
promptstringRequiredText description of the video
n_framesstringOptional"10" or "15"
remove_watermarkbooleanOptionalRemove watermark (sora2 only)
sizestringOptional"standard" or "high" (sora2-pro only)
aspect_ratiostringOptional"landscape", "portrait", or "square"
input_imagestringOptionalURL for image-to-video
Request Example
{
  "model": "sora2",
  "type": "text-to-video",
  "prompt": "A cat walking on the beach",
  "n_frames": "10",
  "remove_watermark": true,
  "aspect_ratio": "landscape"
}
Response Example
{
  "success": true,
  "data": {
    "task_id": "task_sora123",
    "credits_used": 10,
    "remaining_credits": 490,
    "model": "sora2"
  }
}
Code Examples
curl -X POST https://gateway.nanobananapro.site/api/v1/videos/generate \
  -H "Authorization: Bearer sk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sora2",
    "type": "text-to-video",
    "prompt": "A cat walking on the beach",
    "n_frames": "10",
    "remove_watermark": true
  }'
Nano Banana Pro API