> ## Documentation Index
> Fetch the complete documentation index at: https://help.jeekmind.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MiniMax



## OpenAPI

````yaml /apidoc/toopen-new.json post /workflow/seedanceDiscountChannel6
openapi: 3.1.0
info:
  title: AI智能助手
  description: ''
  version: 1.0.0
servers:
  - url: https://open251124.ai.jko.cc
security:
  - BearerAuth: []
tags:
  - name: 视频生成
    description: AI 视频生成及结果查询接口
  - name: 临时储存
    description: 临时文件上传接口
  - name: 视频生成-Seedance2.0（支持人脸）
    description: Seedance2.0（支持人脸）相关接口
  - name: 视频生成-Seedance 原价
    description: Seedance 原价相关接口
  - name: 视频生成-获取生成结果
    description: 获取生成结果相关接口
  - name: 视频生成-谷歌 Omni
    description: 谷歌 Omni相关接口
  - name: 视频生成-Seedance2.0 限时折扣（支持人脸）
    description: Seedance2.0 限时折扣（支持人脸）相关接口
  - name: 视频生成-Seedance2.0 体验1
    description: Seedance2.0 体验1相关接口
  - name: 视频生成-Seedance2.0 体验2
    description: Seedance2.0 体验2相关接口
  - name: 视频生成-Seedance2.0 体验3
    description: Seedance2.0 体验3相关接口
  - name: Seedance 官方-素材库列表
    description: Seedance 官方-素材库列表相关接口
  - name: Seedance 官方-上传素材
    description: Seedance 官方-上传素材相关接口
  - name: Seedance 官方-删除素材
    description: Seedance 官方-删除素材相关接口
  - name: Seedance 官方-更新素材名
    description: Seedance 官方-更新素材名相关接口
  - name: Seedance 官方-获取素材审核结果
    description: Seedance 官方-获取素材审核结果相关接口
paths:
  /workflow/seedanceDiscountChannel6:
    post:
      tags:
        - 视频生成-MiniMax
      summary: MiniMax
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                prompt:
                  type: string
                  description: 提示词
                  example: >-
                    全程使用视频1的第一视角构图，全程使用音频1作为背景音乐。第一人称视角果茶宣传广告，seedance牌「苹苹安安」苹果果茶限定款；首帧为图片1，你的手摘下一颗带晨露的阿克苏红苹果，轻脆的苹果碰撞声；2-4
                    秒：第一人称手持举杯，你将图片2中的果茶举到镜头前（模拟递到观众面前的视角），杯身标签清晰可见，背景音「来一口鲜爽」，尾帧定格为图片2。背景声音统一为女生音色。
                  default: ''
                aspect_ratio:
                  type: integer
                  description: |-
                    画面比例
                    1:【16:9】
                    2:【9:16】
                    3:【1:1】
                    4:【3:4】
                    5:【4:3】
                  example: 2
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                    - 5
                model_option:
                  type: integer
                  description: 模型选择。请使用 `1`
                  example: 1
                  enum:
                    - 1
                resolution_option:
                  type: integer
                  description: |-
                    图像分辨率
                    4：2K、
                    5：3K、
                    6：4K、
                    7：768p、
                    8：1440p
                  example: 4
                  enum:
                    - 4
                    - 5
                    - 6
                    - 7
                    - 8
                duration:
                  type: integer
                  description: 生成视频时长
                  example: 4
                reference_urls:
                  type: array
                  description: 参考素材
                  items:
                    type: string
                    format: uri
                context_ir_enabled:
                  type: boolean
                  description: 是否开启提示词优化（true ：开启，false ：关闭）默认开启
                  default: true
                  example: true
              required:
                - prompt
                - aspect_ratio
                - model_option
                - resolution_option
                - duration
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoTaskResponse'
              example:
                status: 100
                message: 操作成功
                data:
                  id: 11
                  status: Running
                  amount: 100
components:
  schemas:
    VideoTaskResponse:
      type: object
      required:
        - status
        - message
        - data
      properties:
        status:
          type: integer
          description: 状态码，100 表示成功，其他表示失败。
          example: 100
        message:
          type: string
          description: 操作结果的提示消息。
          example: 操作成功
        data:
          $ref: '#/components/schemas/VideoTaskData'
    VideoTaskData:
      type: object
      required:
        - id
        - status
        - amount
      properties:
        id:
          type: integer
          description: 任务的 ID 记录
          example: 11
        status:
          type: string
          enum:
            - Running
            - Success
            - Failed
          description: 状态（Success：执行成功。Running：执行中。Fail：执行失败）
          example: Running
        amount:
          type: number
          description: 任务预计扣除算力
          example: 100
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        在 Authorization 请求头中传入带 Bearer 头的 API 密钥，例如：Bearer xxxxxx 
        [如何获取 API 密钥？](/dev/open/get-bearer-token)

````