---
title: "Create Character"
method: POST
path: "/characters/create"
tags: ["characters"]
---

# Create Character

`POST /characters/create`

## Request body

- CharacterCreate
  - `space_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `system_instruction` string, nullable
  - `first_message` string, nullable
  - `model` string, nullable
  - `image_url` string, nullable
  - `tags` string[]
  - `age` string, nullable
  - `gender` string, nullable
  - `rating` string, nullable
  - `visibility` string, nullable
  - `scenario` string, nullable
  - `example_dialogue` string, nullable
  - `user_first_messages` string[]
  - `recommended_models` string[]
  - `emotional_values` object
  - `images` string[]
  - `quality_report` object, nullable
  - `lorebook_ids` string[]
  - `assets` CharacterAsset[]
    - `type` string, required
    - `uri` string, required
    - `name` string, required
    - `ext` string, required
    - `label` string, nullable
  - `blueprint` object, nullable
  - `tagline` string, nullable
  - `personality` string, nullable
  - `post_history_instructions` string, nullable
  - `creator_notes` string, nullable
  - `alternate_greetings` string[]

## Response `200`

Successful Response

- Character
  - `space_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `system_instruction` string, nullable
  - `first_message` string, nullable
  - `model` string, nullable
  - `image_url` string, nullable
  - `tags` string[]
  - `age` string, nullable
  - `gender` string, nullable
  - `rating` string, nullable
  - `visibility` string, nullable
  - `scenario` string, nullable
  - `example_dialogue` string, nullable
  - `user_first_messages` string[]
  - `recommended_models` string[]
  - `emotional_values` object
  - `images` string[]
  - `quality_report` object, nullable
  - `lorebook_ids` string[]
  - `assets` CharacterAsset[]
    - `type` string, required
    - `uri` string, required
    - `name` string, required
    - `ext` string, required
    - `label` string, nullable
  - `blueprint` object, nullable
  - `tagline` string, nullable
  - `personality` string, nullable
  - `post_history_instructions` string, nullable
  - `creator_notes` string, nullable
  - `alternate_greetings` string[]
  - `id` string, uuid, required
  - `created_by` string, uuid, nullable
  - `version` integer, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, nullable
  - `message_total` integer
  - `chat_total` integer
  - `is_explicit_image` boolean
  - `under_review` boolean
  - `last_review_id` string, uuid, nullable
  - `review_status` string, nullable
  - `review_reason` string, nullable

## 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)
