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

# Create Project

> Add a new project to your career profile

## Overview

Add a new project to the authenticated user's base resume.

<Note>
  **Scope required:** `projects:write` | **Rate limit:** 20 requests/min
</Note>

## Request

```bash theme={null}
POST /v1/projects
Content-Type: application/json
```

### Body Parameters

<ParamField body="name" type="string" required>
  Project name (max 200 characters)
</ParamField>

<ParamField body="description" type="string" required>
  Project description
</ParamField>

<ParamField body="organisation" type="string">
  Organisation behind the project (max 200 characters)
</ParamField>

<ParamField body="startDate" type="string">
  ISO 8601 date string
</ParamField>

<ParamField body="endDate" type="string">
  ISO 8601 date string (omit for ongoing projects)
</ParamField>

<ParamField body="isCurrent" type="boolean" default="false">
  Set to true for ongoing projects
</ParamField>

<ParamField body="url" type="string">
  Project URL (max 500 characters)
</ParamField>

### Query Parameters

<ParamField query="cvId" type="string">
  Target a specific resume by its id (from `list-resumes`). Omit to use your base/default resume; the resume must be self-contained.
</ParamField>

## Response

```json theme={null}
{
  "success": true,
  "id": "clx..."
}
```
