Skip to main content
POST
/
v1
/
summaries
Create Summary
curl --request POST \
  --url https://api.mokaru.ai/v1/summaries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "title": "<string>"
}
'

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.

Overview

Add a new professional summary to the authenticated user’s profile. Summaries are reusable - one resume can pick which summary to display.
Scope required: summaries:write | Rate limit: 20 requests/min

Request

POST /v1/summaries
Content-Type: application/json

Body Parameters

content
string
required
Summary content
title
string
Optional short label (max 100 characters), e.g. “Technical” or “Leadership”

Response

{
  "success": true,
  "id": "clx..."
}