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

# Seedance2.0体验版



## OpenAPI

````yaml /apidoc/toopen-new.json post /workflow/seedanceDiscountChannel1
openapi: 3.0.0
info:
  title: AI智能助手
  description: ''
  version: 1.0.0
servers:
  - url: https://open251124.ai.jko.cc
security:
  - BearerAuth: []
tags:
  - name: 视频生成
    description: AI 视频生成及结果查询接口
paths:
  /workflow/seedanceDiscountChannel1:
    post:
      tags:
        - 视频生成
      summary: Seedance2.0体验版
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                prompt:
                  type: string
                  description: 提示词
                  example: 生成一段科幻世界的视频
                  default: ''
                aspect_ratio:
                  type: integer
                  description: >-
                    画面比例（1:【16:9】。2:【9:16】。3:【1:1】）【注意：当模型选择了seedance2.0-满血高清
                    ，画面比例只能使用16:9和9:16】（1：16:9；2：9:16；3：1:1）
                  example: 2
                  default: ''
                  enum:
                    - 1
                    - 2
                    - 3
                model_option:
                  type: integer
                  description: >-
                    模型（1：seedance2.0-fast 2：seedance2.0-满血 3：seedance2.0-满血高清
                    4：seedance2.0-卡人脸）（1：seedance2.0-fast；2：seedance2.0-满血；3：seedance2.0-满血高清；4：seedance2.0-卡人脸）
                  example: 4
                  default: ''
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                resolution_option:
                  type: integer
                  description: >-
                    分辨率（1：480p、2：720p、3：1080p
                    4:4k）【注意：当模型选择seedance2.0-fast和seedance2.0-满血,分辨率只支持，480p和720p，seedance2.0-满血高清
                    分辨率支支持，720p、1080p和4k】（1：480p；2：720p；3：1080p；4：4K）
                  example: 2
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                duration:
                  type: integer
                  description: ''
                  example: 15
              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
        '404':
          description: 失败
          content:
            application/json:
              schema:
                type: object
                properties: {}
components:
  schemas:
    VideoTaskResponse:
      type: object
      required:
        - status
        - message
        - data
      properties:
        status:
          type: integer
          example: 100
        message:
          type: string
          example: 操作成功
        data:
          $ref: '#/components/schemas/VideoTaskData'
    VideoTaskData:
      type: object
      required:
        - id
        - status
        - amount
      properties:
        id:
          type: integer
          example: 11
        status:
          type: string
          enum:
            - Running
            - Success
            - Failed
          example: Running
        amount:
          type: number
          example: 100
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        在 Authorization 请求头中传入 Bearer Token，例如：Bearer xxxxxx 
        [如何获取 Token？](/dev/open/get-bearer-token)

````