Pricing

Video model

veo 3 1080

Veo 3 in 1080p for ad and product videos that need higher detail.

API status: under development

Generation cost

$0.320 / sec

Request limit

20 QPS

Billing type

Per video duration

Updated

2026-03-12

Billing information

  • Generation cost: $0.320 / sec
  • Billing unit: 1 second of video
  • Settlement model: Per video duration
  • Minimum charge: From 3 seconds
  • Free tier: Trial credits on request
  • Execution queue: Fast/Standard priority

API documentation

Endpoint: /v1/videos/generations

Method: POST

Authorization: `Authorization: Bearer $APISTOR_API_KEY`

Error types: /errors

ParameterTypeRequiredDescription
modelstringYesVideo model ID from catalog (for example, veo-3-1080).
promptstringYesText scenario/prompt for video generation.
resolutionstringNoVideo resolution: 720p, 1080p, or 4k.
durationnumberNoVideo duration in seconds.
fpsnumberNoFrame rate (usually 24 or 30).

Request example (cURL)

curl -X POST "https://api.apistor.io/v1/videos/generations" \
  -H "Authorization: Bearer $APISTOR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "veo-3-1080",
  "prompt": "Cinematic ad shot: product on a floating stage, moving camera, dramatic lighting",
  "resolution": "1080p",
  "duration": 8,
  "fps": 24
}'

Response example (JSON)

{
  "id": "vid_01JY7B9Y15YB7EE2T96T8FA5R6",
  "model": "veo-3-1080",
  "status": "processing",
  "price": "$0.320 / sec",
  "eta_seconds": 42,
  "output": [
    {
      "url": "https://cdn.apistor.io/output/video_01JY7B9Y.mp4",
      "resolution": "1080p",
      "duration": 8
    }
  ],
  "created_at": "2026-03-17T10:26:19Z"
}

For production integrations, we will add webhooks, idempotency keys, and SDKs in the next stage.

Open error catalog