> ## 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 Publication

> Add a new publication to your career profile

## Overview

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

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

## Request

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

### Body Parameters

<ParamField body="name" type="string" required>
  Publication title (max 300 characters)
</ParamField>

<ParamField body="publisher" type="string">
  Publisher name (max 200 characters)
</ParamField>

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

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

<ParamField body="description" type="string">
  Free-text description
</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..."
}
```
