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

# seedance



## OpenAPI

````yaml /apidoc/toopen-new.json post /workflow/seedanceAiVideo
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/seedanceAiVideo:
    post:
      tags:
        - 视频生成
      summary: seedance
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                prompt:
                  type: string
                resolution_option:
                  type: integer
                  enum:
                    - 1
                    - 2
                    - 3
                  description: 可选值（1：480p；2：720p；3：1080p）
                duration:
                  type: integer
                aspect_ratio:
                  type: integer
                  enum:
                    - 1
                    - 2
                    - 3
                    - 4
                    - 5
                  description: 可选值（1：16:9；2：9:16；3：1:1；4：4:3；5：3:4）
                reference_urls:
                  type: array
                  items:
                    oneOf:
                      - type: integer
                        description: 素材库资源 ID
                      - type: string
                        format: uri
                        description: 资源 URL
                channel_option:
                  type: integer
                  enum:
                    - 1
                  description: 可选值（1：渠道一）
              required:
                - prompt
                - resolution_option
                - duration
                - aspect_ratio
                - reference_urls
                - channel_option
            example:
              prompt: >-
                景别：中景\n画面内容：小青背对镜头站在展馆前，随后转身回头，脱掉衣服，朝镜头招手打招呼；接着再朝镜头外挥手。\n表演/动作：先回头微笑，再自然挥手。\n镜头建议：镜头稳定，中景构图保留建筑背景。
              resolution_option: 1
              duration: 5
              aspect_ratio: 3
              reference_urls:
                - 17
                - >-
                  https://p3-bot-workflow-sign.byteimg.com/tos-cn-i-mdko3gqilj/db4da158ef7b49369ad258ba25b47dc2.jpg~tplv-mdko3gqilj-image.image?rk3s=81d4c505&x-expires=1808445522&x-signature=vdujF9FoBAwSe88%2Fv5uc4eXbCQU%3D&x-wf-file_name=20260428-095824.jpg
              channel_option: 1
      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)

````