Skip to main content
GET
Get Education By ID

Endpoint

Base URL: http://localhost:3000/api/v1
This endpoint requires authentication and Job Seeker role.

URL Parameters

Authentication

Include the access token in the Authorization header:

Description

Retrieve a specific education entry by its ID. Only returns educations belonging to the authenticated job seeker.

Response

Success Response (200 OK)

Response Fields

string
Unique identifier for the education entry.
string
Name of the educational institution.
enum
Type of degree obtained. Values: HIGH_SCHOOL, ASSOCIATE, BACHELOR, MASTER, PHD, BOOTCAMP, CERTIFICATION, OTHER
string
Field of study or major.
string | null
Additional education details.
number | null
Grade Point Average (0-4 scale).
string
Start date (ISO 8601 format).
string | null
End date (ISO 8601 format). Null if currently studying.
boolean
Whether currently studying at this institution.

Error Responses

401 Unauthorized

403 Forbidden

404 Not Found

Example Request