Get Augmentation Status
GET
/v1/augmentation/{job_id}
const url = 'https://example.com/v1/augmentation/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/augmentation/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0Get the status of an augmentation job.
Returns the current phase, phase history, and augmented dataset ID (once the job has completed).
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” job_id
required
Job Id
string format: uuid
Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”Job status retrieved successfully
Media type application/json
AugmentationStatusResponse
Detailed status of an augmentation job.
object
job_id
required
Job Id
Unique job identifier
string format: uuid
current_phase
required
Current Phase
Current phase name
string
status
required
Status
Overall job status: queued, running, completed, failed, cancelled
string
phases
Phases
Phase history in chronological order
Array<object>
PhaseA training phase with its events.
object
name
required
Name
Phase name
string
status
required
Status
Phase status: pending, in_progress, completed, failed
string
events
Events
Events in this phase
Array<object>
PhaseEventA single event within a phase.
object
timestamp
required
Timestamp
Event timestamp
string format: date-time
retry_attempt
Retry Attempt
Retry attempt number
integer
Example
{ "phases": [ { "events": [ { "retry_attempt": 0 } ] } ]}Invalid or missing API key
Media type application/json
ErrorResponse
Standard error response.
object
detail
required
Detail
Error message describing what went wrong
string
Example generated
{ "detail": "example"}Augmentation job not found
Media type application/json
ErrorResponse
Standard error response.
object
detail
required
Detail
Error message describing what went wrong
string
Example generated
{ "detail": "example"}Validation error