Runs

List runs

GET /runs

Get list of runs.

Query Parameters

Name
Type
Description

project_id

integer

Project id

experiment_id

string

Experiment id

_sort

string

Sort key

_order

string

Sorting order (ASC or DESC)

_start

integer

Start index

_end

integer

End index

[
  {
    "id": "string",
    "info": {
      "run_id": "string",
      "experiment_id": 0,
      "user_id": "string",
      "status": "running",
      "start_time": "string",
      "end_time": "string",
      "artifact_uri": "string",
      "lifecycle_stage": "active",
      "project_id": 0
    },
    "data": {
      "metrics": [
        {
          "key": "string",
          "value": 0,
          "timestamp": "string",
          "step": "string"
        }
      ],
      "params": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "tags": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  }
]

Get run

GET /runs/{run_id}

Get run.

Path Parameters

Name
Type
Description

run_id

string

Run id

Query Parameters

Name
Type
Description

project_id

integer

Project id

Delete run

DELETE /runs​/{run_id}

Delete run (mark as deleted).

Path Parameters

Name
Type
Description

run_id

string

Run id

Query Parameters

Name
Type
Description

project_id

integer

Project id

Last updated

Was this helpful?