GET /v1/dataProducts/{id}
Retrieve a Data Product
Get a data product by ID or fully qualified name
GET
GET /v1/dataProducts/{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 a Data Product
Get a single data product by its unique ID or fully qualified name.Get by ID
UUID of the data product to retrieve.
Comma-separated list of fields to include (e.g.,
owners,domain,experts,assets).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/dataProducts/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the data product (e.g.,
Marketing.CustomerInsights).Comma-separated list of fields to include:
owners, domain, experts, assets.Include
all, deleted, or non-deleted entities.GET /v1/dataProducts/{id}
Returns
Returns a data product object with all requested fields populated.Response
Unique identifier for the data product (UUID format).
Data product name.
Fully qualified name in format
domain.dataProductName.Human-readable display name.
Description of the data product in Markdown format.
Reference to the parent domain.
List of owners. Only included when
fields contains owners.Subject matter experts. Only included when
fields contains experts.Associated data assets. Only included when
fields contains assets.Version number for the entity.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this data product |
404 | NOT_FOUND | Data product with given ID or FQN does not exist |