GET /v1/topics/{id}
Retrieve a Topic
Get a topic by ID or fully qualified name
GET
GET /v1/topics/{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 Topic
Get a single topic by its unique ID or fully qualified name.Get by ID
UUID of the topic 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/topics/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the topic (e.g.,
sample_kafka.address_book).Comma-separated list of fields to include:
owners, tags, followers, votes, extension, domains, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/topics/{id}
Returns
Returns a topic object with all requested fields populated.Response
Unique identifier for the topic (UUID format).
Topic name.
Fully qualified name in format
service.topicName.Human-readable display name.
Description of the topic in Markdown format.
Reference to the parent messaging service.
Schema definition for messages. Only included when
fields contains messageSchema.Type of messaging service (e.g., Kafka, Redpanda, Kinesis).
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 topic |
404 | NOT_FOUND | Topic with given ID or FQN does not exist |