# Get category details by ID Retrieves detailed information about a specific category including its name, description, allowed tags, and metadata. Public access allowed. Endpoint: GET /api/v1/groups/{groupId}/categories/{categoryId} Version: 1.0 Security: ## Path parameters: - `categoryId` (string, required) The unique identifier of the category to retrieve Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `groupId` (string, required) The unique identifier of the group Example: "us_01hxcvk1hjexere4pvtrj0ymqq" ## Response 200 fields (application/json): - `id` (string, required) UUID with type prefix Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `forumId` (string, required) UUID with type prefix Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `name` (string, required) - `displayName` (string, required) - `description` (string, required) - `meta` (object, required) Category additional data - `meta.color` (string, required) Category color in HEX format Example: "#FF5733" - `tagsAllowed` (array, required) ## Response 404 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation