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

string
required
UUID of the ML model to retrieve.
string
Comma-separated list of fields to include (e.g., owners,tags,followers,votes,extension,domains,sourceHash).
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.
string
required
Fully qualified name of the ML model (e.g., mlflow_svc.customer_segmentation).
string
Comma-separated list of fields to include: owners, tags, followers, votes, extension, domains, sourceHash.
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

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

Error Handling