# Veo 3.1 Lite > Veo 3.1 Lite balances practical utility with professional capabilities. ## Overview - **Endpoint**: `https://api.runflow.io/v1/run/google/veo3.1/lite` - **Model ID**: `google/veo3.1/lite` - **Provider**: Google - **License**: commercial - **Last Updated**: 2026-04-08 ## Pricing - **Base price**: $0.03/second - **Note**: 720p no audio ## Input Schema ### `prompt` (string, required) ### `aspect_ratio` (string, optional) - **Default**: `16:9` - **Options**: `16:9`, `9:16` ### `duration` (string, optional) - **Default**: `8s` - **Options**: `4s`, `6s`, `8s` ### `negative_prompt` (string, optional) ### `resolution` (string, optional) - **Default**: `720p` - **Options**: `720p`, `1080p` ### `generate_audio` (boolean, optional) - **Default**: `true` ### `seed` (integer, optional) ### `auto_fix` (boolean, optional) - **Default**: `true` ### `safety_tolerance` (string, optional) - **Default**: `4` - **Options**: `1`, `2`, `3`, `4`, `5`, `6` ## Usage Examples ### cURL ```bash curl -X POST https://api.runflow.io/v1/run/google/veo3.1/lite \ -H "Authorization: Bearer $RUNFLOW_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "prompt": "A professional headshot, soft studio lighting" }' ``` ### Python ```python import requests response = requests.post( "https://api.runflow.io/v1/run/google/veo3.1/lite", headers={"Authorization": "Bearer RUNFLOW_API_KEY"}, json={ "prompt": "A professional headshot, soft studio lighting", }, ) data = response.json() print(data["video"]["url"]) ``` ### JavaScript ```javascript const response = await fetch( "https://api.runflow.io/v1/run/google/veo3.1/lite", { method: "POST", headers: { "Authorization": "Bearer RUNFLOW_API_KEY", "Content-Type": "application/json", }, body: JSON.stringify({ prompt: "A professional headshot, soft studio lighting", }), } ); const data = await response.json(); console.log(data.video.url); ``` ## Additional Resources - [Playground](https://www.runflow.io/models/google/veo3.1/lite) - [API Reference](https://www.runflow.io/models/google/veo3.1/lite/api) - [Documentation](https://www.runflow.io/docs)