Skip to main content
GET
/
v3
/
universal-ai
/
async
/
{job_id}
Get Async Job
curl --request GET \
  --url https://api.edenai.run/v3/universal-ai/async/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "public_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "success",
  "cost": "<string>",
  "provider": "<string>",
  "feature": "<string>",
  "subfeature": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "output": "<unknown>",
  "error": {},
  "original_response": "<unknown>",
  "model": "<string>"
}

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

The job ID returned from POST /v3/universal-ai/async

Response

Successful Response

Response from the async universal-ai endpoint. Used for both job creation (202) and job status polling (GET).

public_id
string<uuid>
required

Job ID for polling status

status
enum<string>
required

Job status: processing (still running), success, or fail

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., audio, ocr, image)

subfeature
string
required

Specific subfeature (e.g., speech_to_text_async, ocr_async)

created_at
string<date-time>
required

Job creation timestamp

output
any | null

Normalized output from the provider (null while processing)

error
Error · object

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