> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goenhance.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Veo 3.1 Lite Reference

> ### Veo 3.1 Lite Reference

Veo 3.1 Lite driven by 1-3 reference images. Text-only and first / last frame generation are not supported on this endpoint.

> Duration is fixed at 8 seconds on this endpoint. 4K output is not available on the Lite tier.

#### Pricing

Billed **per second** of output. Resolution changes the rate; 720p and 1080p are the same price.

| Resolution | Tokens / s | USD / s |
|---|---|---|
| 720p / 1080p | 4.03 | $0.0806 |

1 token = $0.02.

Example: a clip costs 32.24 tokens at 720p / 1080p.

#### Duration

Fixed at **8 seconds** — the upstream model does not accept any other value on this endpoint.




## OpenAPI

````yaml api-reference/video-generations/openapi-veo-3-1-lite-refs.json POST /api/v1/videos/generations
openapi: 3.1.0
info:
  title: GoEnhance API - Veo 3.1 Fast
  description: Video generation with Google Veo 3.1 Fast.
  version: 1.0.0
servers:
  - url: https://api.goenhance.ai
security: []
paths:
  /api/v1/videos/generations:
    post:
      tags:
        - VideoGenerations
      summary: Veo 3.1 Lite Reference
      description: >
        ### Veo 3.1 Lite Reference


        Veo 3.1 Lite driven by 1-3 reference images. Text-only and first / last
        frame generation are not supported on this endpoint.


        > Duration is fixed at 8 seconds on this endpoint. 4K output is not
        available on the Lite tier.


        #### Pricing


        Billed **per second** of output. Resolution changes the rate; 720p and
        1080p are the same price.


        | Resolution | Tokens / s | USD / s |

        |---|---|---|

        | 720p / 1080p | 4.03 | $0.0806 |


        1 token = $0.02.


        Example: a clip costs 32.24 tokens at 720p / 1080p.


        #### Duration


        Fixed at **8 seconds** — the upstream model does not accept any other
        value on this endpoint.
      parameters:
        - name: Authorization
          in: header
          description: ''
          required: false
          example: '{{Authorization}}'
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                model:
                  type: string
                  enum:
                    - veo-3-1-lite-refs
                  description: Model name. Must be `veo3_1_fast`.
                  default: veo-3-1-lite-refs
                prompt:
                  type: string
                  description: >-
                    Text prompt describing the video. Max 2000 tokens.
                    Translated to English automatically.
                ref_imgs:
                  type: array
                  items:
                    type: string
                    format: uri
                  maxItems: 3
                  description: >-
                    1-3 reference images that drive the generation. Required on
                    this endpoint. First / last frame inputs are not accepted
                    here.
                duration:
                  type: integer
                  enum:
                    - 8
                  default: 8
                  description: >-
                    Fixed at 8 seconds on this endpoint; any other value is
                    rejected.
                quality:
                  type: string
                  enum:
                    - 720p
                    - 1080p
                  default: 720p
                  description: >-
                    Output resolution. Changes the price — see the pricing table
                    above.
                ratio:
                  type: string
                  enum:
                    - '16:9'
                    - '9:16'
                    - Auto
                  default: '16:9'
                  description: >-
                    Output aspect ratio. `auto` lets the model pick from the
                    input image, or from the prompt for text-to-video. ⚠️ Fixed
                    at 16:9 when `ref_imgs` is used. `aspect_ratio` is accepted
                    as a compatible alias.
                custom_callback_url:
                  type: string
                  format: uri
                  description: >-
                    Optional. A publicly accessible HTTPS URL. When the task
                    status changes (processing / success / failed), GoEnhance
                    sends a POST request to this URL. The request body is
                    identical to the response of GET /api/v1/jobs/detail. If
                    your server does not respond with HTTP 200, the notification
                    is retried up to 3 times, with a 3-second timeout per
                    attempt.
                  example: https://your-server.com/goenhance/callback
              required:
                - model
                - prompt
                - ref_imgs
            example:
              model: veo3_1_fast
              prompt: A cat playing piano in a jazz bar, cinematic
              duration: 6
              quality: 1080p
              ratio: '16:9'
              generate_audio: true
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      img_uuid:
                        type: string
                    required:
                      - img_uuid
                required:
                  - code
                  - msg
                  - data
              examples:
                '1':
                  summary: Success
                  value:
                    code: 0
                    msg: Success
                    data:
                      img_uuid: c12b656c-747a-44fd-9c80-add79b0c52d5
                '2':
                  summary: Insufficient tokens
                  value:
                    code: 100
                    msg: tokens is not enough
                quota:
                  summary: API key quota exceeded
                  value:
                    code: 101
                    msg: 'API key quota exceeded: 4990 of 5000 tokens used (monthly)'
          headers: {}
        '401':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                required:
                  - code
                  - msg
          headers: {}
      deprecated: false

````