cURL
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>" } }
Get full education detail
education:read
GET /v1/education/{id}
curl "https://api.mokaru.ai/v1/education/clx1234" \ -H "Authorization: Bearer mk_your_key"
Show child attributes
{ "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" } }
Was this page helpful?