Skip to main content
GET
/
v1
/
education
List Education
curl --request GET \
  --url https://api.mokaru.ai/v1/education \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "school": "<string>",
      "degree": "<string>",
      "field": "<string>",
      "startDate": "<string>",
      "endDate": "<string>",
      "isCurrent": true,
      "description": "<string>",
      "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 Education endpoint returns all education entries in your Mokaru account. Use this to review your education history or sync data with external tools. Common use cases:
  • AI agent career review - let your AI agent consider your education when recommending jobs.
  • Resume building - pull education data to populate resumes or applications.
  • Profile sync - export education history to an external tool or spreadsheet.
Scope required: education:read | Rate limit: 60 requests/min

Request

GET /v1/education

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/education?limit=10" \
  -H "Authorization: Bearer mk_your_key"

Response

data
array
Array of education entries
total
number
Total number of education entries
hasMore
boolean
Whether more pages are available
limit
number
Current page size
offset
number
Current offset
{
  "data": [
    {
      "id": "clx1234...",
      "school": "Stanford University",
      "degree": "Bachelor of Science",
      "field": "Computer Science",
      "startDate": "2018-09-01T00:00:00.000Z",
      "endDate": "2022-06-15T00:00:00.000Z",
      "isCurrent": false,
      "description": "Graduated with honors, focus on distributed systems",
      "createdAt": "2026-01-10T10:00:00.000Z",
      "updatedAt": "2026-03-15T14:30:00.000Z"
    }
  ],
  "total": 2,
  "hasMore": false,
  "limit": 10,
  "offset": 0
}