Retrieve async chat job
/v1/async/chat/completions/{job_id}Retrieve an async chat job created by POST /v1/async/chat/completions. There is no list endpoint.
Authentication
Authorization Bearer
Path Parameters
job_idstringrequiredJob ID (chatjob_ prefix).
Response
idstringJob ID.
objectstringchat.completion.job
statusenum<string>modelstringPublic model name.
request_idstringBilling correlation id.
resultobjectChat completion object when status=completed.
errorobjectError payload when failed.
error.messagestringHuman-readable error message.
error.codestringMachine-readable error code.
error.typestringError category when returned.
error.stagestringProcessing stage where the error occurred.
error.upstream_http_statusintegerProvider HTTP status when the error came from upstream.
error.upstream_messagestringProvider error message when available.
usageobjectToken usage when available.
usage.prompt_tokensintegerInput token count when returned.
usage.completion_tokensintegerOutput token count when returned.
usage.total_tokensintegerTotal token count when returned.
usage.input_tokensintegerInput token count for providers that use input/output names.
usage.output_tokensintegerOutput token count for providers that use input/output names.
usage.generated_imagesintegerGenerated image count when returned.
usage.audio_duration_secondsnumberAudio duration used for billing when returned.
usage.video_duration_secondsnumberVideo duration used for billing when returned.
usage.provider_request_idstringProvider request ID used for upstream correlation.