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

# 获取生成结果



## OpenAPI

````yaml /apidoc/toopen-new.json post /workflow/getResult
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/getResult:
    post:
      tags:
        - 视频生成-获取生成结果
      summary: 获取生成结果
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: number
                  description: 会话ID
                  example: '1'
              required:
                - id
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                $ref: 3ee64d46-e308-432b-91f2-379a58dd19f5
              example:
                status: 100
                message: 操作成功
                data:
                  id: 20
                  status: Success
                  response_json: Example content.
        '404':
          description: 失败
          content:
            application/json:
              schema:
                type: object
                properties: {}
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        在 Authorization 请求头中传入带 Bearer 头的 API 密钥，例如：Bearer xxxxxx 
        [如何获取 API 密钥？](/dev/open/get-bearer-token)

````