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

# List Publications

> List publications on your career profile

## Overview

Retrieve all publications on the authenticated user's base resume.

<Note>
  **Scope required:** `publications:read` | **Rate limit:** 60 requests/min
</Note>

## Request

```bash theme={null}
GET /v1/publications?limit=25&offset=0
```

### Query Parameters

<ParamField query="limit" type="number" default="25">
  Results per page (max 100)
</ParamField>

<ParamField query="offset" type="number" default="0">
  Pagination offset
</ParamField>

<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}
{
  "data": [
    {
      "id": "clx...",
      "name": "Scaling React Apps to Millions of Users",
      "publisher": "Smashing Magazine",
      "date": "2024-05-10T00:00:00.000Z",
      "url": "https://smashingmagazine.com/...",
      "description": "Patterns for code splitting and lazy loading",
      "createdAt": "2026-01-15T10:00:00.000Z",
      "updatedAt": "2026-01-15T10:00:00.000Z"
    }
  ],
  "total": 2,
  "hasMore": false,
  "limit": 25,
  "offset": 0
}
```
