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

Retrieve a Data Product

Get a single data product by its unique ID or fully qualified name.

Get by ID

id
string
required
UUID of the data product to retrieve.
fields
string
Comma-separated list of fields to include (e.g., owners,domain,experts,assets).
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/dataProducts/name/{fqn} to retrieve by fully qualified name.
fqn
string
required
Fully qualified name of the data product (e.g., Marketing.CustomerInsights).
fields
string
Comma-separated list of fields to include: owners, domain, experts, assets.
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/dataProducts/{id}

Returns

Returns a data product object with all requested fields populated.

Response

id
string
Unique identifier for the data product (UUID format).
name
string
Data product name.
fullyQualifiedName
string
Fully qualified name in format domain.dataProductName.
displayName
string
Human-readable display name.
description
string
Description of the data product in Markdown format.
domain
object
Reference to the parent domain.
owners
array
List of owners. Only included when fields contains owners.
experts
array
Subject matter experts. Only included when fields contains experts.
assets
array
Associated data assets. Only included when fields contains assets.
version
number
Version number for the entity.

Error Handling