Skip to main content
GET
/
v1
/
education
/
{id}
Get Education
curl --request GET \
  --url https://api.mokaru.ai/v1/education/{id} \
  --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>"
  }
}

Overview

The Get Education endpoint returns the full details of a specific education entry. Common use cases:
  • Resume tailoring - pull specific education details to customize for a job application.
  • Qualification matching - check if your degree matches a job’s requirements.
  • Profile review - review education details before updating.
Scope required: education:read | Rate limit: 30 requests/min

Request

GET /v1/education/{id}

Example

curl "https://api.mokaru.ai/v1/education/clx1234" \
  -H "Authorization: Bearer mk_your_key"

Response

data
object
Education detail
{
  "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"
  }
}