Skip to main content
GET
GET /v1/mlmodels/{id}

Retrieve an ML Model

Get a single ML model by its unique ID or fully qualified name.

Get by ID

id
string
required
UUID of the ML model to retrieve.
fields
string
Comma-separated list of fields to include (e.g., owners,tags,followers,votes,extension,domains,sourceHash).
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/mlmodels/name/{fqn} to retrieve by fully qualified name.
fqn
string
required
Fully qualified name of the ML model (e.g., mlflow_svc.customer_segmentation).
fields
string
Comma-separated list of fields to include: owners, tags, followers, votes, extension, domains, sourceHash.
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/mlmodels/{id}

Returns

Returns an ML model object with all requested fields populated.

Response

id
string
Unique identifier for the ML model (UUID format).
name
string
ML model name.
fullyQualifiedName
string
Fully qualified name in format service.modelName.
displayName
string
Human-readable display name.
description
string
Description of the ML model in Markdown format.
algorithm
string
Algorithm used by the ML model.
mlFeatures
array
Features used by the ML model.
mlHyperParameters
array
Hyperparameters used by the ML model.
target
string
Target variable or objective.
service
object
Reference to the parent ML model service.
serviceType
string
Type of ML model service (e.g., Mlflow, Sklearn, SageMaker).
version
number
Version number for the entity.
owners
array
List of owners. Only included when fields contains owners.
tags
array
Classification tags. Only included when fields contains tags.
domains
array
Domain assignments. Only included when fields contains domains.

Error Handling