Get Finetune Status
const url = 'https://example.com/v1/finetune/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/finetune/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0Get the status of a finetune job from the pipeline API.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”Job status retrieved successfully
Detailed status of a finetune job.
object
Unique job identifier
Project associated with the training run
Current phase name
Overall job status: queued, scheduled, running, completed, failed, cancelled
Fixed public projection of durable pipeline inputs.
Storage locations, read capabilities, internal principals, compute overrides, and the raw run snapshot are deliberately not representable.
object
object
object
Phase history in chronological order
A training phase with its events.
object
Phase name
Phase status: pending, queued, in_progress, completed, failed
When phase started
When phase completed
Events in this phase
A single event within a phase.
object
Event status: started, completed, failed
Event message
Error details if failed
Event timestamp
Retry attempt number
Additional event data
object
Error message if phase failed
Training telemetry points (loss, gradient norm, learning rate, …) recorded so far, oldest first. Replayed from persisted events so a page load reconstructs the full series without the live SSE stream.
object
Example
{ "metadata": { "vla_type": "act", "job_type": "vla", "use_rabc": false }, "phases": [ { "events": [ { "retry_attempt": 0 } ] } ]}Invalid or missing API key
Standard error response.
object
Error message describing what went wrong
Example generated
{ "detail": "example"}Finetune job not found
Standard error response.
object
Error message describing what went wrong
Example generated
{ "detail": "example"}Validation error