(Preview) List experiment runs

post

/20260430/aiDataPlatforms/{aiDataPlatformId}/workspaces/{workspaceKey}/mlops/api/2.0/mlflow/runs/search

(Preview) Returns a list of experiment runs in a workspace.

Request

Path Parameters
Header Parameters
  • The DH User Principal Header .
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Body ()
Details of experiment runs to fetch.
Root Schema : ListExperimentRunsDetails
Type: object
Details of experiment runs to fetch.
Show Source
  • experiment_ids
    List of experiment IDs to search over.
  • A filter expression over params, metrics, and tags, that allows returning a subset of runs. The syntax is a subset of SQL that supports ANDing together binary operations between a param, metric, or tag and a constant. Example: metrics.rmse < 1 and params.model_class = 'LogisticRegression' You can select columns with special characters (hyphen, space, period, etc.) by using double quotes: metrics."model class" = 'LinearRegression' and tags."user-name" = 'Tomas' Supported operators are =, !=, >, >=, <, and <="." div>
  • Maximum number of runs desired. If unspecified, defaults to 1000. All servers are guaranteed to support a max_results threshold of at least 50,000 but may support more. Callers are encouraged to pass max_results explicitly and leverage page_token to iterate.
  • order_by
    List of columns to be ordered by, including attributes, params, metrics, and tags with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Example: ["params.input DESC", "metrics.alpha ASC", "metrics.rmse"] Tiebreaks are done by start_time DESC followed by run_id for runs with the same start time (and this is the default ordering criterion if order_by is not provided).
  • Token indicating the page of experiment runs to fetch.
  • Allowed Values: [ "ACTIVE_ONLY", "DELETED_ONLY", "ALL" ]
    Qualifier for type of runs to be returned. If unspecified, returns only active runs.
Nested Schema : experiment_ids
Type: array
List of experiment IDs to search over.
Show Source
Nested Schema : order_by
Type: array
List of columns to be ordered by, including attributes, params, metrics, and tags with an optional "DESC" or "ASC" annotation, where "ASC" is the default. Example: ["params.input DESC", "metrics.alpha ASC", "metrics.rmse"] Tiebreaks are done by start_time DESC followed by run_id for runs with the same start time (and this is the default ordering criterion if order_by is not provided).
Show Source
Back to Top

Response

Supported Media Types

200 Response

Successful operation. List of experiment runs is retrieved.
Headers
  • For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items.
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : ExperimentRunCollection
Type: object
Result of listing experiment runs.
Show Source
Nested Schema : runs
Type: array
Runs that match the search criteria.
Show Source
Nested Schema : ExperimentRun
Type: object
Details of an experiment run.
Show Source
Nested Schema : ExperimentRunData
Type: object
Run data.
Show Source
Nested Schema : ExperimentRunInfo
Type: object
Run metadata.
Show Source
Nested Schema : ExperimentRunInputs
Type: object
Run inputs.
Show Source
Nested Schema : ExperimentRunOutputs
Type: object
Run outputs.
Show Source
Nested Schema : metrics
Type: array
Metrics logged for the run.
Show Source
Nested Schema : params
Type: array
Parameters logged for the run.
Show Source
Nested Schema : tags
Type: array
Tags to log.
Show Source
Nested Schema : ExperimentRunMetric
Type: object
Run metric.
Show Source
Nested Schema : ExperimentRunParam
Type: object
Run param.
Show Source
Nested Schema : ExperimentRunTag
Type: object
Run tag.
Show Source
Nested Schema : dataset_inputs
Type: array
Dataset inputs for the run.
Show Source
Nested Schema : model_inputs
Type: array
Model inputs for the run.
Show Source
Nested Schema : DatasetInput
Type: object
DatasetInput
Show Source
Nested Schema : Dataset
Type: object
Dataset. Represents a reference to data used for training, testing, or evaluation during the model development process.
Show Source
Nested Schema : tags
Type: array
Tags for the dataset input.
Show Source
Nested Schema : InputTag
Type: object
Run tag.
Show Source
Nested Schema : ModelInput
Type: object
Model input.
Show Source
Nested Schema : model_outputs
Type: array
Model outputs for the run.
Show Source
Nested Schema : ModelOutput
Type: object
Model output.
Show Source

400 Response

Bad Request (invalid query parameters, malformed headers, and so on).
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

401 Response

Unauthorized (missing or expired credentials, and so on).
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

404 Response

Not Found. The requested resource was not found.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

429 Response

Too Many Requests. Too many requests sent to the server in a short period.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

500 Response

Internal Server Error. The server encountered an unexpected condition preventing fulfilment of the request.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source

Default Response

Unknown Error. Error is not recognized by the system.
Headers
  • Unique Oracle-assigned ID for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error information.
Show Source
Back to Top