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.
Returns the current phase and phase history of the specified training job.
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
Current phase name
Overall job status: queued, running, completed, failed, cancelled
GPU instance type provisioned for this job
Cloud region where the training instance is running
Phase history in chronological order
A training phase with its events.
object
Phase name
Phase status: pending, 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
Example
{ "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