> ## 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.

# Google Veo 2

> google-veo-2 — Fastest generation with high visual quality. $3.00/video.

|              |                        |
| ------------ | ---------------------- |
| **Model ID** | `google-veo-2`         |
| **Provider** | Google                 |
| **Cost**     | \$3.00/video           |
| **Duration** | 5-8s                   |
| **Speed**    | \~40s                  |
| **Best for** | Fastest + high quality |

## Example

```bash theme={null}
curl -X POST https://www.ninjachat.ai/api/v1/video \
  -H "Authorization: Bearer nj_sk_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "google-veo-2", "prompt": "Underwater camera glides through a bioluminescent coral reef, neon creatures pulse with light", "duration": 5}'
```

```python theme={null}
import requests, os

r = requests.post("https://www.ninjachat.ai/api/v1/video",
    headers={"Authorization": f"Bearer {os.environ['NINJACHAT_API_KEY']}"},
    json={"model": "google-veo-2", "prompt": "Underwater camera glides through a bioluminescent coral reef, neon creatures pulse with light", "duration": 5}
)
print(f"Poll: {r.json()['request_id']}")
```

***

**Guides:** [Video Generation](/video-generation) | [All Models](/models) | [Pricing](/pricing) | [Error Handling](/error-handling)
