> ## 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 渠道2



## OpenAPI

````yaml /apidoc/toopen-new.json post /workflow/seedanceDiscountChannel2
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/seedanceDiscountChannel2:
    post:
      tags:
        - 视频生成
      summary: Seedance2.0 渠道2
      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；4：3:4）
                  example: 2
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                model_option:
                  type: integer
                  description: 模型（1：模型1）
                  example: 1
                  enum:
                    - 1
                resolution_option:
                  type: integer
                  description: 分辨率（2：720p）
                  example: 2
                  enum:
                    - 2
                reference_urls:
                  type: array
                  description: 参考素材 URL 列表
                  items:
                    type: string
                    format: uri
                  example:
                    - https://example.com/reference.jpg
              required:
                - prompt
                - aspect_ratio
                - model_option
                - resolution_option
      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)

````