Overview
The Create Education endpoint lets you add a new education entry to your Mokaru account.
Common use cases:
- AI agent profile building - automatically add education extracted from a LinkedIn profile or resume.
- Profile completion - add education details to strengthen your career profile.
- Bulk import - add education entries from a spreadsheet or external system.
Scope required: education:write | Rate limit: 20 requests/min
Request
Body Parameters
School or institution name (max 200 characters)
Degree type, e.g. “Bachelor of Science” (max 200 characters)
Field of study, e.g. “Computer Science” (max 200 characters)
ISO 8601 date string (e.g. “2018-09-01”)
ISO 8601 date string (null or omit if currently enrolled)
Whether currently enrolled (default: false)
Additional details (max 5000 characters)
Example
curl -X POST "https://api.mokaru.ai/v1/education" \
-H "Authorization: Bearer mk_your_key" \
-H "Content-Type: application/json" \
-d '{
"school": "Stanford University",
"degree": "Bachelor of Science",
"field": "Computer Science",
"startDate": "2018-09-01",
"endDate": "2022-06-15",
"description": "Graduated with honors"
}'
Response
Whether the education was created
The new education entry’s unique ID
{
"success": true,
"id": "clx1234..."
}