AI-powered CV extraction — structured candidate data from any CV
The CV Parser API accepts a PDF or DOCX file and returns structured candidate data in JSON format. Powered by AI, it extracts names, contact details, employment history, education, skills, and more — regardless of CV layout or format.
POST /api/cv-parse?apiKey={key}
Upload a CV as multipart/form-data. Returns structured JSON with extracted fields.
{
"candidate": {
"firstName": "Jane",
"lastName": "Smith",
"email": "jane.smith@example.com",
"phone": "+44 7700 900123",
"location": "London, UK",
"summary": "Senior software engineer with 8 years...",
"skills": ["TypeScript", "React", "Node.js", "AWS"],
"experience": [
{
"title": "Senior Developer",
"company": "Tech Corp",
"startDate": "2020-03",
"endDate": "present",
"description": "Led a team of 5 engineers..."
}
],
"education": [
{
"qualification": "BSc Computer Science",
"institution": "University of London",
"year": "2016"
}
]
},
"tokensUsed": 5,
"confidence": 0.94
}
DOCX
TBD (announced at launch)
PDF, DOCX
Structured JSON
Yes — multi-model
API key (query param)
Swagger / OpenAPI