get
https://fountondev.datapoem.ai/api/v1/jobs
Get all jobs for a project.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve all jobs of a specific type for your project. Returns a list of jobs with their names, current status, creation timestamps, and configuration. Use this endpoint to get an overview of all training, tuning, inference, or attribution jobs submitted under your project, or to look up a job_name to pass to the Get Artifacts, Get Predictions, or Get Metrics endpoints.
Authentication: Include your API key in the X-API-KEY request header.
Query parameter description:
| Parameter | Description |
|---|---|
job_type | The type of jobs to retrieve. Required. Accepted values: "training", "inference", "tuning", "attribution". Only one type can be queried per request. |
Response field descriptions:
| Field | Description |
|---|---|
job_name | The unique identifier for the job. Use this value with the Get Artifacts, Get Predictions, Get Metrics, Check Job Status, and Stop Task endpoints. |
status | The current state of the job. Possible values: "pending", job is queued and not yet started; "InProgress", job is actively running; "completed", job finished successfully; "failed", job encountered an error; "cancelled", job was stopped before completion. |
task_config | The configuration used when the job was submitted, includes the dataset, model name, column definitions, and training parameters passed at the time of submission. |
created_at | The date and time the job was created, in ISO 8601 format. |