Skip to main content
GET
/
v1
/
resume
List Resumes
curl --request GET \
  --url https://api.mokaru.ai/v1/resume \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "template": "<string>",
      "isDefault": true,
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "total": 123,
  "hasMore": true,
  "limit": 123,
  "offset": 123
}

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

The List Resumes endpoint returns all resumes in your Mokaru account. Use this to find the right resume before exporting or updating it. Common use cases:
  • AI agent resume selection - let your AI agent browse your resumes and pick the best one for a specific job application.
  • Resume inventory - see all your resumes at a glance with their templates and which one is set as default.
  • Automation workflows - fetch your resume list in n8n or Make, then trigger exports or updates based on conditions.
Scope required: resume:read | Rate limit: 60 requests/min

Request

GET /v1/resume

Query Parameters

limit
number
default:"25"
Results per page (max 100)
offset
number
default:"0"
Number of results to skip for pagination

Example

curl "https://api.mokaru.ai/v1/resume?limit=10" \
  -H "Authorization: Bearer mk_your_key"

Response

data
array
Array of resumes
total
number
Total number of resumes
hasMore
boolean
Whether more pages are available
limit
number
Current page size
offset
number
Current offset
{
  "data": [
    {
      "id": "clx1234...",
      "name": "Software Engineer Resume",
      "template": "classic",
      "isDefault": true,
      "createdAt": "2026-01-15T10:00:00.000Z",
      "updatedAt": "2026-03-20T14:30:00.000Z"
    }
  ],
  "total": 3,
  "hasMore": false,
  "limit": 25,
  "offset": 0
}