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

# PixVerse V6 t2v



## OpenAPI

````yaml openapi-spec/pixverse-v6-t2v.json POST /v1/video/generations
openapi: 3.1.0
info:
  description: >-
    PixVerse V6 t2v is PixVerse's latest text-to-video model with improved
    generation quality. Create stunning videos from text prompts with enhanced
    motion and visual coherence.
  summary: API for PixVerse V6 t2v model
  title: PixVerse V6 t2v API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      PixVerse V6 t2v - PixVerse V6 t2v is PixVerse's latest text-to-video model
      with improved generation quality. Create stunning videos from text prompts
      with enhanced motion and visual coherence.
    name: PixVerse V6 t2v
paths:
  /v1/video/generations:
    post:
      tags:
        - PixVerse V6 t2v
      summary: Generate video
      description: Generate a video using the PixVerse V6 t2v model
      operationId: video_model-xipvfzsjmxggctnh
      requestBody:
        content:
          application/json:
            example:
              aspect_ratio: '16:9'
              audio_enable: false
              duration: 1
              model: pixverse/pixverse-v6-t2v
              multi_clip: false
              negative_prompt: example_value
              prompt: example_value
              seed: -1
              size: 360p
              thinking_type: enabled
            schema:
              description: Request format for video generation models
              properties:
                aspect_ratio:
                  description: Aspect ratio
                  enum:
                    - '16:9'
                    - '4:3'
                    - '1:1'
                    - '3:4'
                    - '9:16'
                    - '2:3'
                    - '3:2'
                    - '21:9'
                  type: string
                audio_enable:
                  description: Whether to generate audio along with video
                  type: boolean
                duration:
                  description: Fixed duration
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                    - 5
                    - 6
                    - 7
                    - 8
                    - 9
                    - 10
                    - 11
                    - 12
                    - 13
                    - 14
                    - 15
                  type: integer
                model:
                  description: Model name to use for the request
                  enum:
                    - pixverse/pixverse-v6-t2v
                  type: string
                multi_clip:
                  description: Whether to enable multi-clip generation mode
                  type: boolean
                negative_prompt:
                  description: >-
                    Negative prompt to specify what should not appear in the
                    generation
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
                seed:
                  description: Random seed for generation
                  maximum: 2147483647
                  minimum: -1
                  type: integer
                size:
                  description: Size
                  enum:
                    - 360p
                    - 540p
                    - 720p
                    - 1080p
                  type: string
                thinking_type:
                  description: Thinking mode for the model
                  enum:
                    - enabled
                    - disabled
                    - auto
                  type: string
              required:
                - model
                - prompt
                - duration
                - size
                - aspect_ratio
              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

````