---
title: "Get Custom Enum"
method: GET
path: "/custom-enums/{enum_id}"
tags: ["custom-enums"]
---

# Get Custom Enum

`GET /custom-enums/{enum_id}`

Get a specific custom enum by ID.

Args:
    enum_id: Custom enum primary key.
    auth: Authenticated caller (read-only).
    service: Custom-enum service.

Returns:
    CustomEnumResponse for the owned enum.

Raises:
    HTTPException: 404 when the enum is missing or not owned.

## Path parameters

- `enum_id` string, required

## Response `200`

Successful Response

- CustomEnumResponse — Response model for a single custom enum.
  - `id` string, required
  - `user_id` string, required
  - `name` string, required
  - `values` string[], required
  - `description` string, nullable
  - `created_at` string, required
  - `updated_at` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/pioneer/apis/brain-api.md) · [All operations](https://skmtc.net/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pioneer/brain-api/revisions/31dfe831e079/schema)
