Skip to main content
GET
/
v1
/
results
/
{job_id}
Get Job Result
curl --request GET \
  --url https://api.example.com/v1/results/{job_id}
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "result_data": {},
  "result_uri": "<string>",
  "error_message": "<string>",
  "completed_at": "2023-11-07T05:31:56Z"
}

Headers

authorization
string | null
refresh-token
string | null

Path Parameters

job_id
string<uuid>
required

Response

Successful Response

Returned by GET /v1/results/{job_id}.

The envelope is generic across job types. Per-type fields live inside result_data — trainer jobs put {"model_id": ..., "winner_uris": [...]}, pattern-tracker jobs put their tracker-specific fields, and inference jobs put the durable result_uri plus a temporary presigned_url for the persisted result artifact. Call GET /v1/results/{job_id} again to mint a fresh URL. The SDK subclass (TrainerJob, ReasoningFitJob, PatternTrackerJob) decides how to interpret the dict.

job_id
required
status
enum<string>
required
Available options:
completed,
failed
result_data
Result Data · object

Per-job-type result payload. None when status='failed'.

result_uri
string | null

S3 URI of the persisted result.json (breadcrumb).

error_message
string | null
completed_at
string<date-time> | null