---
title: "Create a project"
method: POST
path: "/projects/"
tags: ["Project"]
---

# Create a project

`POST /projects/`

Create a project and add the current user as its owner.

## Query parameters

- `cookie_name` string, nullable

## Request body

- ProjectIn
  - `name` string, required — Display name of the project.
  - `description_show_in_chat` boolean — Whether the project description is shown to users in chat.
  - `description` string, nullable — Optional longer description of the project's purpose.

## Response `201`

Successful Response

- Project
  - `id` integer, nullable — Primary key for the project.
  - `tenant_id` integer, required — ID of the tenant that owns the project.
  - `created_at` string, date-time — Timestamp when the project was created.
  - `creator_user_id` integer, required — ID of the user who created the project.
  - `name` string, required — Name of the project.
  - `description` string, nullable, required — Optional description of the project.
  - `description_show_in_chat` boolean — Whether the project description is shown in the chat UI.

## Other responses

- `401` — Missing or invalid authentication.
- `422` — Validation Error

---

[API](https://skmtc.net/neulandai/apis/neuland-ai-hub-api.md) · [All operations](https://skmtc.net/neulandai/apis/neuland-ai-hub-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/neulandai/neuland-ai-hub-api/versions/b53e89b98c2b/schema)
