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

# Create Project

`POST /projects`

Create a new project within a namespace.

## Request body

- CreateProjectRequest — Request model for creating a project.
  - `description` string, nullable — Optional project description.
  - `name` string, required — Project name (unique within namespace).
  - `namespace_id` string, required — The namespace this project belongs to.

## Response `201`

Successful Response

- Project — Response model for project.
  - `created_at` string, date-time, nullable — When the project was created.
  - `created_by` string, required — member_id of the creator.
  - `description` string, nullable — Optional project description.
  - `id` string, required — The unique identifier of the project.
  - `name` string, required — Project name.
  - `namespace_id` string, required — The namespace this project belongs to.

## Other responses

- `422` — Validation Error

---

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