---
title: "Get Character Preview"
method: GET
path: "/characters/preview/{character_id}"
tags: ["characters"]
---

# Get Character Preview

`GET /characters/preview/{character_id}`

Get extended preview info for a character.

Returns additional fields like personality summary and first message preview,
while still protecting sensitive system prompts.

## Path parameters

- `character_id` string, uuid, required

## Response `200`

Successful Response

- CharacterPreview — Extended preview data for character detail modal. Includes some additional fields that help users decide to chat, but still hides system_instruction and other sensitive prompt data.
  - `id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `tagline` string, nullable
  - `image_url` string, nullable
  - `tags` string[]
  - `rating` string, nullable
  - `is_explicit_image` boolean
  - `message_total` integer
  - `chat_total` integer
  - `created_by` string, uuid, nullable
  - `creator_name` string, nullable
  - `creator_avatar` string, nullable
  - `is_favorite` boolean
  - `created_at` string, date-time, required
  - `personality_summary` string, nullable
  - `first_message_preview` string, nullable
  - `age` string, nullable
  - `gender` string, nullable
  - `scenario_preview` string, nullable
  - `version` integer
  - `similar_character_ids` string[]

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/meganova/apis/fastapi.md) · [All operations](https://skmtc.net/meganova/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/meganova/fastapi/revisions/2b2bab8b9017/schema)
