Documentation Index
Fetch the complete documentation index at: https://docs.ninjachat.ai/llms.txt
Use this file to discover all available pages before exploring further.
| |
|---|
| Model ID | runway-gen4.5 |
| Provider | Runway |
| Cost | $5.00/video |
| Duration | 5s or 10s |
| Speed | ~1-3 min |
| Best for | Highest quality, cinematic motion |
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": "runway-gen4.5", "prompt": "A cinematic drone shot soaring over a vast turquoise ocean at golden hour, film grain", "duration": 10}'
import requests, os
r = requests.post("https://ninjachat.ai/api/v1/video",
headers={"Authorization": f"Bearer {os.environ['NINJACHAT_API_KEY']}"},
json={"model": "runway-gen4.5", "prompt": "A cinematic drone shot soaring over a vast turquoise ocean at golden hour, film grain", "duration": 10}
)
print(f"Poll: {r.json()['request_id']}")
Guides: Video Generation | All Models | Pricing | Error Handling