> ## Documentation Index
> Fetch the complete documentation index at: https://edenai-docs-github-copilot-integration.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Async Job

> Get details for a specific async job.



## OpenAPI

````yaml /api-reference/v3-openapi.json get /v3/universal-ai/async/{job_id}
openapi: 3.1.0
info:
  title: Eden AI API V3
  version: 3.0.0
servers:
  - url: https://api.edenai.run
    description: Production server
security: []
paths:
  /v3/universal-ai/async/{job_id}:
    get:
      tags:
        - universal-ai
        - universal-ai
      summary: Get Async Job
      description: Get details for a specific async job.
      operationId: get_async_job_v3_universal_ai_async__job_id__get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UniversalAIAsyncResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - AuthBearer: []
components:
  schemas:
    UniversalAIAsyncResponse:
      properties:
        status:
          type: string
          enum:
            - success
            - fail
            - processing
          title: Status
          description: 'Request status: success, fail, or processing (async only)'
        cost:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Cost
          description: Cost in credits for this request
        provider:
          type: string
          title: Provider
          description: Provider name that processed the request
        feature:
          type: string
          title: Feature
          description: Feature category (e.g., text, ocr, image)
        subfeature:
          type: string
          title: Subfeature
          description: Specific subfeature (e.g., ai_detection, sentiment)
        output:
          anyOf:
            - {}
            - type: 'null'
          title: Output
          description: Normalized output from the provider
        error:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Error
          description: Error details from the provider (only present when status is 'fail')
        original_response:
          anyOf:
            - {}
            - type: 'null'
          title: Original Response
          description: Raw response from the provider (if show_original_response=true)
        public_id:
          type: string
          title: Public Id
          description: Job ID for polling status
        model:
          anyOf:
            - type: string
            - type: 'null'
          title: Model
          description: Model name if specified in the request
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Job creation timestamp
      type: object
      required:
        - status
        - cost
        - provider
        - feature
        - subfeature
        - public_id
        - created_at
      title: UniversalAIAsyncResponse
      description: >-
        Async response from universal-ai/async endpoint.


        Inherits base fields and adds job-specific fields for tracking async
        operations.

        Used for both job creation (202 Accepted) and job detail (GET)
        responses.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    AuthBearer:
      type: http
      scheme: bearer

````