Skip to main content
GET
/
v1
/
cover-letter
/
{id}
Get Cover Letter
curl --request GET \
  --url https://api.mokaru.ai/v1/cover-letter/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "cvId": "<string>",
    "title": "<string>",
    "content": "<string>",
    "templateId": "<string>",
    "isDefault": true,
    "variables": {},
    "showName": true,
    "showEmail": true,
    "showPhone": true,
    "showAddress": true,
    "headerAlignment": "<string>",
    "fontFamily": "<string>",
    "fontSize": 123,
    "lineSpacing": 123,
    "pdfUrl": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<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

Returns the full cover letter row: title, body content, template variables, header visibility settings, typography, and the linked resume id.
Scope required: cover-letter:read | Rate limit: 30 requests/min

Request

GET /v1/cover-letter/{id}

Example

curl "https://api.mokaru.ai/v1/cover-letter/clx_cl_abc" \
  -H "Authorization: Bearer mk_your_key"

Response

data
object
Cover letter detail.