> ## 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.

# Get Education

> Get full education detail

## 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.

<Note>
  **Scope required:** `education:read` | **Rate limit:** 30 requests/min
</Note>

## Request

```bash theme={null}
GET /v1/education/{id}
```

### Example

```bash theme={null}
curl "https://api.mokaru.ai/v1/education/clx1234" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="data" type="object">
  Education detail

  <Expandable>
    <ResponseField name="id" type="string">Unique education ID</ResponseField>
    <ResponseField name="school" type="string">School or institution name</ResponseField>
    <ResponseField name="degree" type="string">Degree type</ResponseField>
    <ResponseField name="field" type="string">Field of study</ResponseField>
    <ResponseField name="startDate" type="string">ISO 8601 start date</ResponseField>
    <ResponseField name="endDate" type="string">ISO 8601 end date (null if current)</ResponseField>
    <ResponseField name="isCurrent" type="boolean">Whether currently enrolled</ResponseField>
    <ResponseField name="description" type="string">Additional details</ResponseField>
    <ResponseField name="createdAt" type="string">ISO 8601 creation date</ResponseField>
    <ResponseField name="updatedAt" type="string">ISO 8601 last update date</ResponseField>
  </Expandable>
</ResponseField>

```json theme={null}
{
  "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"
  }
}
```
