Skip to main content
POST
/
jobs
/
{job_id}
/
start
{
  "job_id": "<string>",
  "status": "<string>",
  "started_at": {},
  "estimated_completion": {}
}

Overview

Starts execution of a created training job. This endpoint triggers the actual training process for judge improvement.

Path Parameters

job_id
string
required
Unique identifier of the training job to start

Response

job_id
string
required
ID of the started training job
status
string
required
Updated job status (started, queued, processing)
started_at
datetime
required
Job start timestamp
estimated_completion
datetime
Estimated completion time

Examples

curl -X POST https://api.judge.example.com/jobs/train_job_123/start \
  -H "Authorization: Bearer YOUR_API_KEY"