> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neural4d.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve generation result

> Query the generation result by UUID. This is a query-only operation and does not consume points.



## OpenAPI

````yaml /openapi.old.json post /api/queryGenerationResult
openapi: 3.0.3
info:
  title: Neural4D Management API
  description: Management endpoints for Neural4D, including request and response examples.
  version: 1.5.4
servers:
  - url: https://alb.neural4d.com:3000
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: text-to-3d
    description: Create 3D models from text prompts.
    x-group: Text to 3D
  - name: image-to-3d
    description: Create 3D models from uploaded images.
    x-group: Image to 3D
  - name: model-management
    description: Retrieve finished models, track jobs, and convert model formats.
    x-group: Model management
  - name: media-generation
    description: Generate pictures and videos and query their results.
    x-group: Picture and video generation
  - name: account-and-validation
    description: Check portrait inputs and query remaining points.
    x-group: Account and validation
paths:
  /api/queryGenerationResult:
    post:
      tags:
        - media-generation
      summary: Retrieve generation result
      description: >-
        Query the generation result by UUID. This is a query-only operation and
        does not consume points.
      operationId: queryGenerationResult
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UuidRequest'
            examples:
              default:
                value:
                  uuid: 16be86d7-210a-4d22-a00b-62935c1900d2
      responses:
        '200':
          description: Generation result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryGenerationResultResponse'
              examples:
                completedVideo:
                  value:
                    success: true
                    data:
                      uuid: 4d0f8188-3fdd-4596-9d31-ceb6eab831655
                      status: completed
                      resultType: video
                      resultUrl: https://example.mp4
components:
  schemas:
    UuidRequest:
      type: object
      required:
        - uuid
      properties:
        uuid:
          type: string
          description: >-
            Unique job or model identifier returned by a previous create
            endpoint.
          example: f47ac10b-58cc-4372-a567-0e02b2c3d479
    QueryGenerationResultResponse:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
          description: Whether the generation result query succeeded.
        data:
          $ref: '#/components/schemas/QueryGenerationResultData'
          description: Current status and result data for the requested generation UUID.
    QueryGenerationResultData:
      type: object
      required:
        - uuid
        - status
        - resultType
        - resultUrl
      properties:
        uuid:
          type: string
          description: Generation UUID supplied in the query.
        status:
          type: string
          description: >-
            Current generation state such as `completed`, `queued`,
            `processing`, or `failed`.
        resultType:
          type: string
          nullable: true
          description: >-
            Result type when the generation has completed, usually `image` or
            `video`.
        resultUrl:
          type: string
          format: uri
          nullable: true
          description: Download URL for the generated asset when available.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Use the bearer token provided through the Neural4D website.
      x-default: YOUR_TOKEN

````