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

# Wan 2.6 t2v



## OpenAPI

````yaml openapi-spec/wan-2.6-t2v.json POST /v1/video/generations
openapi: 3.1.0
info:
  description: >-
    Wan 2.6 t2v by Alibaba Cloud is a text-to-video AI model for text-to-video
    storytelling. It delivers high-quality results for rapid iteration and
    dependable production workflows.
  summary: API for Wan 2.6 t2v model
  title: Wan 2.6 t2v API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Wan 2.6 t2v - Wan 2.6 t2v by Alibaba Cloud is a text-to-video AI model for
      text-to-video storytelling. It delivers high-quality results for rapid
      iteration and dependable production workflows.
    name: Wan 2.6 t2v
paths:
  /v1/video/generations:
    post:
      tags:
        - Wan 2.6 t2v
      summary: Generate video
      description: Generate a video using the Wan 2.6 t2v model
      operationId: video_model-mox86tda7xie4nvo
      requestBody:
        content:
          application/json:
            example:
              duration: 5
              model: alibaba/wan-2.6-t2v
              prompt: example_value
              size: 1920x1080
            schema:
              description: Request format for video generation models
              properties:
                duration:
                  description: Fixed duration
                  enum:
                    - 5
                    - 10
                    - 15
                  type: integer
                model:
                  description: Model name to use for the request
                  enum:
                    - alibaba/wan-2.6-t2v
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
                size:
                  description: Fixed size
                  enum:
                    - 1920x1080
                    - 1080x1920
                    - 1440x1440
                    - 1632x1248
                    - 1248x1632
                    - 1280x720
                    - 720x1280
                    - 960x960
                    - 1088x832
                    - 832x1088
                  type: string
              required:
                - model
                - prompt
                - duration
                - size
              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

````