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

# MiniMax H3 t2v Spicy



## OpenAPI

````yaml openapi-spec/minimax-h3-t2v-spicy.json POST /v1/video/generations
openapi: 3.1.0
info:
  description: >-
    MiniMax H3 t2v by MiniMax 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 MiniMax H3 t2v Spicy model
  title: MiniMax H3 t2v Spicy API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      MiniMax H3 t2v Spicy - MiniMax H3 t2v by MiniMax 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: MiniMax H3 t2v Spicy
paths:
  /v1/video/generations:
    post:
      tags:
        - MiniMax H3 t2v Spicy
      summary: Generate video
      description: Generate a video using the MiniMax H3 t2v Spicy model
      operationId: video_model-wui1khmvfytog5am
      requestBody:
        content:
          application/json:
            example:
              aspect_ratio: '21:9'
              duration: 5
              model: minimax/minimax-h3-t2v-spicy
              prompt: example_value
              size: 768p
            schema:
              description: Request format for video generation models
              properties:
                aspect_ratio:
                  description: Aspect ratio
                  enum:
                    - '21:9'
                    - '16:9'
                    - '4:3'
                    - '1:1'
                    - '3:4'
                    - '9:16'
                  type: string
                duration:
                  description: Fixed duration
                  enum:
                    - 5
                    - 6
                    - 7
                    - 8
                    - 9
                    - 10
                    - 11
                    - 12
                    - 13
                    - 14
                    - 15
                  type: integer
                model:
                  description: Model name to use for the request
                  enum:
                    - minimax/minimax-h3-t2v-spicy
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
                size:
                  description: Size
                  enum:
                    - 768p
                    - 2k
                    - 4k
                  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

````