---
title: "Create Project"
method: POST
path: "/api/v2/projects"
tags: ["Configuration"]
---

# Create Project

`POST /api/v2/projects`

Create a new project in your workspace. Use to organize prompts, datasets, and observability data by team or application.

## Request body

- object
  - `name` string, required
  - `is_private` boolean
  - `id` string, uuid, nullable
  - `freeplay_spend_limit_usd` integer, nullable
  - `data_retention_days` integer, nullable
  - `enable_eval_insights` boolean
  - `enable_review_insights` boolean

## Response `201`

ProjectDetail(id: uuid.UUID, name: str, is_private: bool, freeplay_spend_limit_usd: Optional[int], data_retention_days: Optional[int], enable_eval_insights: bool, enable_review_insights: bool)

- object
  - `id` string, uuid, required
  - `name` string, required
  - `is_private` boolean, required
  - `freeplay_spend_limit_usd` integer, nullable, required
  - `data_retention_days` integer, nullable, required
  - `enable_eval_insights` boolean, required
  - `enable_review_insights` boolean, required

---

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