curl --request GET \
--url https://api-service.fribl.co/api/v1/cvs/{id} \
--header 'X-API-KEY: <api-key>'{
"message": "<string>",
"status": "COMPLETED",
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"information": {
"first_name": "John",
"last_name": "Doe",
"email": [
"john@example.com"
],
"phone": [
"+31612345678"
],
"linkedin": "https://linkedin.com/in/johndoe",
"github": "https://github.com/johndoe",
"website": "https://johndoe.com",
"address": {
"city": "Amsterdam",
"country": "Netherlands"
}
},
"experience": [
{
"title": "Senior Software Engineer",
"activity_sector": "Technology",
"description": "Led development of microservices architecture",
"duration": 36,
"start_date": "2020-01",
"end_date": "2023-01"
}
],
"education": [
{
"degree": "Master of Science",
"major": "Computer Science",
"score": "Cum Laude",
"institution_name": "University of Amsterdam",
"start_date": "2015-09",
"end_date": "2017-06"
}
],
"skill_descriptions": [
"<string>"
],
"skills": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"skill": "JavaScript",
"type": "hard-skill",
"relationship": "SATISFIES",
"explanation": "Candidate demonstrates strong JavaScript proficiency"
}
],
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z"
}
}Retrieve a single CV by its unique identifier. Returns the full CV object including extracted information, experience, education, skills, and metadata.
curl --request GET \
--url https://api-service.fribl.co/api/v1/cvs/{id} \
--header 'X-API-KEY: <api-key>'{
"message": "<string>",
"status": "COMPLETED",
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"information": {
"first_name": "John",
"last_name": "Doe",
"email": [
"john@example.com"
],
"phone": [
"+31612345678"
],
"linkedin": "https://linkedin.com/in/johndoe",
"github": "https://github.com/johndoe",
"website": "https://johndoe.com",
"address": {
"city": "Amsterdam",
"country": "Netherlands"
}
},
"experience": [
{
"title": "Senior Software Engineer",
"activity_sector": "Technology",
"description": "Led development of microservices architecture",
"duration": 36,
"start_date": "2020-01",
"end_date": "2023-01"
}
],
"education": [
{
"degree": "Master of Science",
"major": "Computer Science",
"score": "Cum Laude",
"institution_name": "University of Amsterdam",
"start_date": "2015-09",
"end_date": "2017-06"
}
],
"skill_descriptions": [
"<string>"
],
"skills": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"skill": "JavaScript",
"type": "hard-skill",
"relationship": "SATISFIES",
"explanation": "Candidate demonstrates strong JavaScript proficiency"
}
],
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z"
}
}API key in UUID format. Include this header with every authenticated request.
Unique identifier of the CV.