Skip to main content
Model IDgoogle-veo-3-fast
ProviderGoogle
Cost$3.00/video
Duration4/6/8s
Speed~1-2 min
Best forBudget Veo

Example

curl -X POST https://ninjachat.ai/api/v1/video \
  -H "Authorization: Bearer nj_sk_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "google-veo-3-fast", "prompt": "A drone ascending over a misty mountain valley at golden hour, revealing a river below", "duration": 6}'
import requests, os

r = requests.post("https://ninjachat.ai/api/v1/video",
    headers={"Authorization": f"Bearer {os.environ['NINJACHAT_API_KEY']}"},
    json={"model": "google-veo-3-fast", "prompt": "A drone ascending over a misty mountain valley at golden hour, revealing a river below", "duration": 6}
)
print(f"Poll: {r.json()['request_id']}")

Guides: Video Generation | All Models | Pricing | Error Handling