GET /v1/tables/{id}
Retrieve a Table
Get a table by ID or fully qualified name
GET
GET /v1/tables/{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 Table
Get a single table by its unique ID or fully qualified name.Get by ID
UUID of the table to retrieve.
Comma-separated list of fields to include. Valid fields:
tableConstraints, tablePartition, usageSummary, owners, customMetrics, columns, sampleData, tags, followers, joins, schemaDefinition, dataModel, extension, testSuite, domains, dataProducts, lifeCycle, sourceHash.Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/tables/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the table (e.g.,
snowflake_prod.analytics.public.customers).Comma-separated list of fields to include. Valid fields:
tableConstraints, tablePartition, usageSummary, owners, customMetrics, columns, sampleData, tags, followers, joins, schemaDefinition, dataModel, extension, testSuite, domains, dataProducts, lifeCycle, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/tables/{id}
Returns
Returns a table object with all requested fields populated.Response
Unique identifier for the table (UUID format).
Table name.
Fully qualified name in format
service.database.schema.table.Human-readable display name.
Description of the table in Markdown format.
Type of table.
Column definitions with fully qualified names.
Reference to the parent database schema.
Reference to the parent database service.
Type of database service.
Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this table |
404 | NOT_FOUND | Table with given ID or FQN does not exist |