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

# Get Summary

> Get a single professional summary by id

## Overview

Retrieve a single professional summary by id.

<Note>
  **Scope required:** `summaries:read` | **Rate limit:** 30 requests/min
</Note>

## Request

```bash theme={null}
GET /v1/summaries/clx...
```

### Path Parameters

<ParamField path="id" type="string" required>
  Summary id (from `list-summaries`)
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "id": "clx...",
    "title": "Technical Leadership",
    "content": "Senior engineer with 10+ years...",
    "displayOrder": 0,
    "createdAt": "2026-01-15T10:00:00.000Z",
    "updatedAt": "2026-01-15T10:00:00.000Z"
  }
}
```
