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

# Veo 3.1 t2v



## OpenAPI

````yaml openapi-spec/veo-3.1-t2v.json POST /v1/video/generations
openapi: 3.1.0
info:
  description: >-
    Google DeepMind's Veo 3.1 t2v is a state-of-the-art Text-to-Video model,
    generating high-fidelity, cinematic 1080p video with synchronized, native
    audio and dialogue.
  summary: API for Veo 3.1 t2v model
  title: Veo 3.1 t2v API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Veo 3.1 t2v - Google DeepMind's Veo 3.1 t2v is a state-of-the-art
      Text-to-Video model, generating high-fidelity, cinematic 1080p video with
      synchronized, native audio and dialogue.
    name: Veo 3.1 t2v
paths:
  /v1/video/generations:
    post:
      tags:
        - Veo 3.1 t2v
      summary: Generate video
      description: Generate a video using the Veo 3.1 t2v model
      operationId: video_model-xfqiuigbxgyy7zfv
      requestBody:
        content:
          application/json:
            example:
              duration: 8
              model: google/veo-3.1-t2v
              prompt: example_value
            schema:
              description: Request format for video generation models
              properties:
                duration:
                  description: Fixed duration
                  enum:
                    - 8
                  type: integer
                model:
                  description: Model name to use for the request
                  enum:
                    - google/veo-3.1-t2v
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
              required:
                - model
                - prompt
                - duration
              title: Video Generation Request
              type: object
        description: Request payload
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskResponse'
          description: Successful response
      security:
        - bearerAuth: []
components:
  schemas:
    TaskResponse:
      description: Standard async task creation response
      properties:
        code:
          description: Status code returned by the service
          example: success
          type: string
        data:
          description: Response payload containing task details
          properties:
            task_id:
              description: Identifier of the created task
              type: string
          required:
            - task_id
          type: object
        message:
          description: Additional information about the request result
          type: string
      required:
        - data
        - code
        - message
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: Bearer authentication using API key
      scheme: bearer
      type: http

````