Skip to main content
GET
/
ml
/
training
/
jobs
List training jobs
curl --request GET \
  --url https://acusight.io/api/ml/training/jobs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "completed_at": "<string>",
      "created_at": "<string>",
      "id": 123,
      "model_type": "<string>",
      "name": "<string>",
      "progress": 123,
      "project_id": 123,
      "started_at": "<string>",
      "status": "<string>",
      "version_id": 123
    }
  ],
  "error": {
    "code": "<string>",
    "details": "<string>",
    "message": "<string>"
  },
  "meta": {
    "count": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "success": true
}

Authorizations

Authorization
string
header
required

JWT access token. Paste the token only; the Bearer prefix is added automatically.

Query Parameters

project_id
integer

Project ID filter

version_id
integer

Dataset version ID filter

status
string

Training status filter

limit
integer

Page size (default 50, max 100)

offset
integer

Result offset

Response

Paginated training jobs

data
object[]
error
object
meta
object
success
boolean