Skip to main content
GET
Get Async Job

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string<uuid>
required

Response

Successful Response

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.

status
enum<string>
required

Request status: success, fail, or processing (async only)

Available options:
success,
fail,
processing
cost
string
required

Cost in credits for this request

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
provider
string
required

Provider name that processed the request

feature
string
required

Feature category (e.g., text, ocr, image)

subfeature
string
required

Specific subfeature (e.g., ai_detection, sentiment)

public_id
string
required

Job ID for polling status

created_at
string<date-time>
required

Job creation timestamp

output
any | null

Normalized output from the provider

error
Error · object | null

Error details from the provider (only present when status is 'fail')

original_response
any | null

Raw response from the provider (if show_original_response=true)

model
string | null

Model name if specified in the request