Skip to main content
GET
Get Profile By ID

Endpoint

Base URL: http://localhost:3000/api/v1
This endpoint is public and does not require authentication.

Path Parameters

string
required
The unique identifier (UUID) of the job seeker profile to retrieve.

Request Example

Response

Success Response (200 OK)

Response Fields

string
User’s first name.
string
User’s last name.
string | null
URL to profile image.
object
Detailed profile information.
array
List of education records.
array
List of work experiences.
array
List of skills.

Error Responses

400 Bad Request - Invalid ID Format

404 Not Found - Profile Not Found

Notes

Public Profile: This endpoint currently returns the same profile shape as GET /job-seekers/me from backend service mapping.
View Other Profiles: Use this endpoint to view other job seekers’ public profiles when researching candidates or networking.