Get Augmentation Status
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 ”Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”Job status retrieved successfully
Detailed status of an augmentation 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 augmentation 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
HuggingFace dataset ID of the augmented output (set when completed)
Job creation timestamp
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"}Augmentation job not found
Standard error response.
object
Error message describing what went wrong
Example generated
{ "detail": "example"}Validation error