get
https://fountondev.datapoem.ai/api/v1/status
Get detailed status information for a specific training job.Returns information including job status, resource configuration,hyperparameters, and status transition history.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Check the current status of a training, tuning, or inference job. Pass the task_id returned by the Training, Tuning, or Inference endpoint to get a full status update including the job name, current state, any status messages, input dataset details, and model configuration.
Use this endpoint to poll for job completion. When status returns "completed", the job is done and results are available. When it returns "failed", check message for the reason.
Authentication: Include your API key in the X-API-KEY request header.
Query parameter description:
| Parameter | Description |
|---|---|
task_id | The job identifier returned by the Training, Tuning, or Inference endpoint. Used to look up the current state and details of that specific job. |
Response field descriptions:
| Field | Description |
|---|---|
name | The name of the job as registered in the system. |
status | Current state of the job. Possible values: "pending", "running", "completed", "failed". |
message | A human-readable status message. When the job fails, this field contains the reason for the failure. |
input_dataset | Details about the dataset used for this job, including the dataset ID and configuration passed at submission. |
model_details | Details about the model involved in this job, including the model name and configuration used for training, tuning, or inference. |