> ## 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 视频生成及结果查询接口
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: '#/components/schemas/VideoResultResponse'
              example:
                status: 100
                message: 操作成功
                data:
                  id: 20
                  status: Success
                  response_json: Example content.
        '404':
          description: 失败
          content:
            application/json:
              schema:
                type: object
                properties: {}
components:
  schemas:
    VideoResultResponse:
      type: object
      required:
        - status
        - message
        - data
      properties:
        status:
          type: integer
          example: 100
        message:
          type: string
          example: 操作成功
        data:
          $ref: '#/components/schemas/VideoResultData'
    VideoResultData:
      type: object
      required:
        - id
        - status
        - response_json
      properties:
        id:
          type: integer
          example: 20
        status:
          type: string
          enum:
            - Running
            - Success
            - Failed
          example: Success
        response_json:
          type: string
          example: Example content.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        在 Authorization 请求头中传入 Bearer Token，例如：Bearer xxxxxx 
        [如何获取 Token？](/dev/open/get-bearer-token)

````