> ## Documentation Index
> Fetch the complete documentation index at: https://careerk.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Education API - Manage job seeker education records

# Education API

The Education API provides endpoints for managing job seeker education records.

## Base URL

```
http://localhost:3000/api/v1
```

## Endpoints Overview

| Method | Endpoint                                  | Description         | Auth Required       |
| ------ | ----------------------------------------- | ------------------- | ------------------- |
| GET    | `/job-seekers/me/educations`              | Get all educations  | Yes (Authenticated) |
| GET    | `/job-seekers/me/educations/:educationId` | Get education by ID | Yes (Authenticated) |
| POST   | `/job-seekers/me/educations`              | Create education    | Yes (Authenticated) |
| PATCH  | `/job-seekers/me/educations/:educationId` | Update education    | Yes (Authenticated) |
| DELETE | `/job-seekers/me/educations/:educationId` | Delete education    | Yes (Authenticated) |

## Fields

| Field             | Type    | Required | Description                  |
| ----------------- | ------- | -------- | ---------------------------- |
| `institutionName` | string  | Yes      | Name of the institution      |
| `degreeType`      | enum    | Yes      | Type of degree obtained      |
| `fieldOfStudy`    | string  | Yes      | Field of study               |
| `description`     | string  | No       | Additional education details |
| `gpa`             | number  | No       | GPA (0-4 scale)              |
| `startDate`       | string  | Yes      | Start date (ISO 8601 format) |
| `endDate`         | string  | No       | End date (ISO 8601 format)   |
| `isCurrent`       | boolean | Yes      | Currently studying here      |

## Degree Type Enum

| Value           | Description                 |
| --------------- | --------------------------- |
| `HIGH_SCHOOL`   | High school diploma         |
| `ASSOCIATE`     | Associate degree            |
| `BACHELOR`      | Bachelor's degree           |
| `MASTER`        | Master's degree             |
| `PHD`           | Doctorate/PhD               |
| `BOOTCAMP`      | Coding bootcamp certificate |
| `CERTIFICATION` | Professional certification  |
| `OTHER`         | Other type of education     |

See detailed documentation for each endpoint in the API Reference section.
