Resume parsing, skills & background
HR and talent management APIs for resume parsing, skills assessment, and background checks.
Parse resumes and extract structured data. Supports PDF, DOCX, and image formats with high accuracy.
POST /api/v1/hr/parse-resume
{ "document": "base64...",
"format": "pdf" }
// Response
{ "name": "Jane Doe",
"email": "jane@example.com",
"skills": ["Python", "React", "SQL"],
"experience": [{"company": "TechCorp"}] }
Analyze skills and match to jobs. Identify skill gaps and recommend training paths.
POST /api/v1/hr/assess-skills
{ "skills": ["JavaScript", "Node.js"],
"target_role": "Senior Developer" }
// Response
{ "skill_score": 78,
"gaps": ["TypeScript", "AWS"],
"match_level": "intermediate",
"recommendations": ["AWS Cert"] }
Match candidates to job requirements. AI-powered matching based on skills, experience, and preferences.
POST /api/v1/hr/match-jobs
{ "candidate_id": "cand_123",
"job_requirements": {
"skills": ["Python", "ML"],
"experience_years": 3 }}
// Response
{ "match_score": 87,
"matched_skills": ["Python"],
"missing_skills": ["ML"] }
Criminal and employment verification. Comprehensive background screening for hiring decisions.
POST /api/v1/hr/background-check
{ "name": "John Smith",
"ssn": "123-45-6789",
"checks": ["criminal", "employment"] }
// Response
{ "criminal_records": [],
"employment_verified": true,
"status": "clear",
"report_id": "bg_abc123" }
Get salary benchmarks by role/location. Real-time compensation data for informed hiring decisions.
POST /api/v1/hr/salary-benchmark
{ "role": "Software Engineer",
"location": "San Francisco, CA",
"experience_years": 5 }
// Response
{ "median_salary": 165000,
"range": {"min": 140000, "max": 195000},
"percentile_25": 148000,
"percentile_75": 182000 }
Get your API key and start building HR solutions in minutes.