> ## 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 体验3



## OpenAPI

````yaml /apidoc/toopen-new.json post /workflow/seedanceDiscountChannel3
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相关接口
paths:
  /workflow/seedanceDiscountChannel3:
    post:
      tags:
        - 视频生成-Seedance2.0 体验3
      summary: Seedance2.0 体验3
      operationId: createSeedanceExperience3Video
      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：满血-支持人脸-933-720p；2：满血-不支持人脸-900-720p；3：满血-支持人脸-903-1080p）
                  example: 1
                  enum:
                    - 1
                    - 2
                    - 3
                resolution_option:
                  type: integer
                  description: 分辨率（2：720p；3：1080p）
                  example: 2
                  enum:
                    - 2
                    - 3
                duration:
                  type: integer
                  description: 生成视频时长（4–15 秒）
                  minimum: 4
                  maximum: 15
                  example: 15
                reference_urls:
                  type: array
                  description: >-
                    参考素材 URL
                    列表。模型1支持最多9张参考图、3段参考视频、3段参考音频；模型2支持最多9张参考图；模型3支持最多9张参考图、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
                - 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 头的 API 密钥，例如：Bearer xxxxxx 
        [如何获取 API 密钥？](/dev/open/get-bearer-token)

````