Skip to main content
GET
Get All Work Experiences

Endpoint

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

Authentication

Include the access token in the Authorization header:

Description

Retrieve all work experience entries for the authenticated job seeker. The results are ordered by start date (most recent first).

Response

Success Response (200 OK)

Response Fields

string
Unique identifier for the work experience entry.
string
Name of the company.
string
Title of the position.
string | null
Job description and responsibilities.
string | null
Work location.
string
Start date (ISO 8601 format).
string | null
End date (ISO 8601 format). Null if currently working.
boolean
Whether this is the current job.

Error Responses

401 Unauthorized

403 Forbidden

Notes

Empty Array: If no work experiences exist, an empty array is returned.
Sorting: Results are automatically sorted by start date in descending order (most recent first).