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

# Seedance 2.0 ref2v Spicy



## OpenAPI

````yaml openapi-spec/seedance-2.0-ref2v-spicy.json POST /v1/video/generations
openapi: 3.1.0
info:
  description: >-
    Seedance 2.0 i2v is ByteDance's next-generation image-to-video model with
    major quality improvements. Transform images into stunning videos with
    enhanced motion and visual fidelity.
  summary: API for Seedance 2.0 ref2v Spicy model
  title: Seedance 2.0 ref2v Spicy API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Seedance 2.0 ref2v Spicy - Seedance 2.0 i2v is ByteDance's next-generation
      image-to-video model with major quality improvements. Transform images
      into stunning videos with enhanced motion and visual fidelity.
    name: Seedance 2.0 ref2v Spicy
paths:
  /v1/video/generations:
    post:
      tags:
        - Seedance 2.0 ref2v Spicy
      summary: Generate video
      description: Generate a video using the Seedance 2.0 ref2v Spicy model
      operationId: video_model-tmqajjwrusfawx6d
      requestBody:
        content:
          application/json:
            example:
              aspect_ratio: adaptive
              audio_enable: false
              audios:
                - example_value
              duration: 4
              images:
                - example_value
              model: bytedance/seedance-2.0-ref2v-spicy
              prompt: example_value
              seed: -1
              size: 480p
              videos:
                - example_value
            schema:
              description: Request format for video generation models
              properties:
                aspect_ratio:
                  description: Aspect ratio
                  enum:
                    - adaptive
                    - '16:9'
                    - '4:3'
                    - '1:1'
                    - '3:4'
                    - '9:16'
                    - '21:9'
                  type: string
                audio_enable:
                  description: Whether to generate audio along with video
                  type: boolean
                audios:
                  description: Array of input audio URLs
                  items:
                    type: string
                  maxItems: 3
                  type: array
                duration:
                  description: Fixed duration
                  enum:
                    - 4
                    - 5
                    - 6
                    - 7
                    - 8
                    - 9
                    - 10
                    - 11
                    - 12
                    - 13
                    - 14
                    - 15
                  type: integer
                images:
                  description: Array of input images, which can be data URL or image URL
                  items:
                    type: string
                  maxItems: 9
                  type: array
                model:
                  description: Model name to use for the request
                  enum:
                    - bytedance/seedance-2.0-ref2v-spicy
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
                seed:
                  description: Random seed for generation
                  maximum: 9999999999
                  minimum: -1
                  type: integer
                size:
                  description: Size
                  enum:
                    - 480p
                    - 720p
                    - 1080p
                    - 4k
                  type: string
                videos:
                  description: Array of input video URLs
                  items:
                    type: string
                  maxItems: 3
                  type: array
              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

````