> ## 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 视频生成及结果查询接口
  - name: 视频生成-Seedance2.0体验版
  - name: 视频生成-Seedance2.0渠道2
  - name: 视频生成-seedance 2.0-限时折扣（支持人脸）
  - name: 视频生成-谷歌omni
  - name: 视频生成-获取生成结果
  - name: 视频生成-seedance
  - name: 视频生成-seedance2.0（支持人脸）
paths:
  /workflow/seedanceDiscountChannel2:
    post:
      tags:
        - 视频生成-seedance2.0渠道2
      summary: Seedance2.0 渠道2
      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）
                  example: 2
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                model_option:
                  type: integer
                  description: '模型（1：模型1，2: 模型2）'
                  example: 1
                  enum:
                    - 1
                    - 2
                resolution_option:
                  type: integer
                  description: 分辨率（2：720p）
                  example: 2
                  enum:
                    - 2
                reference_urls:
                  type: array
                  description: 参考素材 URL 列表，支持9张参考图，3段参考视频，3段参考音频
                  items:
                    type: string
                    format: uri
                  example:
                    - >-
                      https://ark-project.tos-cn-beijing.volces.com/doc_image/r2v_tea_pic1.jpg
                    - >-
                      https://ark-project.tos-cn-beijing.volces.com/doc_image/r2v_tea_pic2.jpg
                    - >-
                      https://ark-project.tos-cn-beijing.volces.com/doc_audio/r2v_tea_audio1.mp3
                    - >-
                      https://ark-project.tos-cn-beijing.volces.com/doc_video/r2v_tea_video1.mp4
              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 头的 API 密钥，例如：Bearer xxxxxx 
        [如何获取 API 密钥？](/dev/open/get-bearer-token)

````