> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create project

> Create a new project within an organization.

Creates a new project in the specified organization.

<Note>
  Requires authentication. The user must be an organization admin or owner.
</Note>

## Request body

<ParamField body="name" type="string" required>
  Project name. Max 255 characters.
</ParamField>

<ParamField body="organization_id" type="string" required>
  UUID of the organization this project belongs to.
</ParamField>

<ParamField body="description" type="string">
  Optional project description.
</ParamField>

<ResponseExample>
  ```json 201 theme={null}
  {
    "success": true,
    "data": {
      "id": "770e8400-e29b-41d4-a716-446655440002",
      "name": "Client Website Redesign",
      "organization_id": "660e8400-e29b-41d4-a716-446655440001",
      "created_at": "2026-03-02T12:00:00Z"
    }
  }
  ```
</ResponseExample>
