Skip to main content
GET
Retrieve the result of a completed async job. Only available when job status is succeeded.
job_id
string
required
The unique job identifier (e.g., run_abc123).

Response

job_id
string
required
Unique job identifier.
status
string
required
Job status (should be succeeded for results to be available).
result
string
required
The output/result from the agent execution.
duration_seconds
number
required
Total execution time in seconds.
created_at
string
required
ISO 8601 timestamp of job creation.
completed_at
string
required
ISO 8601 timestamp of job completion.

Complete Workflow Example

Error Responses

StatusDescription
400Job not complete or failed
404Job not found
500Internal server error

See Also