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



## OpenAPI

````yaml openapi-spec/wan-2.7-i2v-uncensored.json POST /v1/video/generations
openapi: 3.1.0
info:
  description: >-
    WAN 2.7 I2V animates static images into high-resolution videos while
    preserving visual structure and style.
  summary: API for Wan 2.7 i2v Uncensored model
  title: Wan 2.7 i2v Uncensored API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Wan 2.7 i2v Uncensored - WAN 2.7 I2V animates static images into
      high-resolution videos while preserving visual structure and style.
    name: Wan 2.7 i2v Uncensored
paths:
  /v1/video/generations:
    post:
      tags:
        - Wan 2.7 i2v Uncensored
      summary: Generate video
      description: Generate a video using the Wan 2.7 i2v Uncensored model
      operationId: video_model-je0ce91ndxlixqvo
      requestBody:
        content:
          application/json:
            example:
              audio: example_value
              duration: 2
              end_image: example_value
              image: example_value
              model: alibaba/wan-2.7-i2v-uncensored
              negative_prompt: example_value
              prompt: example_value
              seed: -1
              size: 720p
              video: example_value
            schema:
              description: Request format for video generation models
              properties:
                audio:
                  description: Input audio URL
                  type: string
                duration:
                  description: Fixed duration
                  enum:
                    - 2
                    - 3
                    - 4
                    - 5
                    - 6
                    - 7
                    - 8
                    - 9
                    - 10
                    - 11
                    - 12
                    - 13
                    - 14
                    - 15
                  type: integer
                end_image:
                  description: End frame image URL for image-to-video generation
                  type: string
                image:
                  description: Input image for generation, it can be data URL or image URL
                  type: string
                model:
                  description: Model name to use for the request
                  enum:
                    - alibaba/wan-2.7-i2v-uncensored
                  type: string
                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:
                    - 720p
                    - 1080p
                  type: string
                video:
                  description: Input video URL
                  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

````