Skip to content

Search Registered Models within a project

GET
/api/v4/projects/{id}/ml/mlflow/api/2.0/mlflow/registered-models/search
id
required
One of:
string

The ID or URL-encoded path of the project

Example
1
filter
string
nullable

Filter to search models. must be in the format name='value'. Only filtering by name is supported

max_results
integer
default: 200 nullable

Maximum number of models desired. Default is 200. Max threshold is 1000.

order_by
string
default: name ASC nullable

Order criteria. Can be by name or last_updated_timestamp, with optional DESC or ASC (default)Valid examples: name, name DESC, last_updated_timestamp DESCSorting by model metadata is not supported.

page_token
string
nullable

Token for pagination

OK

Media type application/json
object
name
string
creation_timestamp
integer
last_updated_timestamp
integer
description
string
user_id
string
tags
Array<object>
object
key
string
value
string
latest_versions
Array<object>
object
name
string
version
string
creation_timestamp
integer
last_updated_timestamp
integer
user_id
string
current_stage
string
description
string
source
string
run_id
string
status
string
status_message
string
tags
Array<object>
object
key
string
value
string
run_link
string
aliases
Array<string>
Example
{
"latest_versions": [
{
"current_stage": "development",
"status": "READY"
}
]
}

Bad Request

Not Found