curl --request GET \
--url https://api.example.com/api/interview/{
"message": "<string>",
"interviewReports": [
{
"_id": "<string>",
"user": "<string>",
"title": "<string>",
"matchScore": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}curl --request GET \
--url https://api.example.com/api/interview/{
"message": "<string>",
"interviewReports": [
{
"_id": "<string>",
"user": "<string>",
"title": "<string>",
"matchScore": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}token. This is automatically handled by the browser after successful login.
curl -X GET https://api.example.com/api/interview/ \
-b "token=YOUR_JWT_TOKEN"
fetch('https://api.example.com/api/interview/', {
method: 'GET',
credentials: 'include' // Important: Include cookies
});
Show interviewReports[]
{
"message": "Interview reports fetched successfully.",
"interviewReports": [
{
"_id": "507f1f77bcf86cd799439011",
"user": "507f191e810c19729de860ea",
"title": "Senior Software Engineer",
"matchScore": 85,
"createdAt": "2026-03-03T10:30:00.000Z",
"updatedAt": "2026-03-03T10:30:00.000Z"
},
{
"_id": "507f1f77bcf86cd799439012",
"user": "507f191e810c19729de860ea",
"title": "Full Stack Developer",
"matchScore": 78,
"createdAt": "2026-03-02T15:20:00.000Z",
"updatedAt": "2026-03-02T15:20:00.000Z"
},
{
"_id": "507f1f77bcf86cd799439013",
"user": "507f191e810c19729de860ea",
"title": "Frontend Engineer",
"matchScore": 92,
"createdAt": "2026-03-01T09:15:00.000Z",
"updatedAt": "2026-03-01T09:15:00.000Z"
}
]
}
resume, selfDescription, jobDescription, technicalQuestions, behavioralQuestions, skillGaps, preparationPlan, __v