GET /v1/mlmodels/{id}
Retrieve an ML Model
Get an ML model by ID or fully qualified name
GET
GET /v1/mlmodels/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve an ML Model
Get a single ML model by its unique ID or fully qualified name.Get by ID
UUID of the ML model to retrieve.
Comma-separated list of fields to include (e.g.,
owners,tags,followers,votes,extension,domains,sourceHash).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/mlmodels/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the ML model (e.g.,
mlflow_svc.customer_segmentation).Comma-separated list of fields to include:
owners, tags, followers, votes, extension, domains, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/mlmodels/{id}
Returns
Returns an ML model object with all requested fields populated.Response
Unique identifier for the ML model (UUID format).
ML model name.
Fully qualified name in format
service.modelName.Human-readable display name.
Description of the ML model in Markdown format.
Algorithm used by the ML model.
Features used by the ML model.
Hyperparameters used by the ML model.
Target variable or objective.
Reference to the parent ML model service.
Type of ML model service (e.g., Mlflow, Sklearn, SageMaker).
Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Domain assignments. Only included when
fields contains domains.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this ML model |
404 | NOT_FOUND | ML model with given ID or FQN does not exist |