Skip to content

Search experiments

POST
/api/v4/projects/{id}/ml/mlflow/api/2.0/mlflow/experiments/search
id
required
One of:
string

The ID or URL-encoded path of the project

Example
1
Media type application/json
object
max_results

Maximum number of experiments to fetch in a page. Default is 200, maximum is 1000.

integer
default: 200 nullable
order_by

Order criteria. Can be by a column of the experiment (created_at, name).

string
default: created_at DESC nullable
page_token

Token for pagination

string
nullable
filter

This parameter is ignored

string
nullable

Created

Media type application/json
object
experiments
Array<object>
object
experiment_id
string
name
string
lifecycle_stage
string
artifact_location
string
tags
Array<object>
object
key
string
value
string
Example
{
"experiments": [
{
"experiment_id": "1",
"name": "my_experiment",
"lifecycle_stage": "active"
}
]
}

Bad Request

Not Found