I Built a Resume Parser API in 2 Days - Free Tier Available
If you've ever built an ATS, job board, or HR tool, you've dealt with the nightmare of resume parsing. The existing solutions are expensive ($75-99/mo minimum), have terrible docs, and lock you in....

Source: DEV Community
If you've ever built an ATS, job board, or HR tool, you've dealt with the nightmare of resume parsing. The existing solutions are expensive ($75-99/mo minimum), have terrible docs, and lock you in. I built ResumeParser API to fix this. What it does Send a PDF resume, get back clean JSON: { "personal": { "name": "Jane Doe", "emails": ["[email protected]"], "linkedin": "https://linkedin.com/in/janedoe", "github": "https://github.com/janedoe" }, "skills": { "technical": ["aws", "docker", "javascript", "react"], "count": 4 }, "experience": { "yearsTotal": 8, "seniority": "senior" }, "certifications": ["AWS Solutions Architect"] } Install the SDK npm install resumeparser-sdk const { ResumeParserClient } = require('resumeparser-sdk'); const client = new ResumeParserClient('rp_your_key_here'); const result = await client.parseText('Jane Doe\[email protected]\n...'); console.log(result.data.personal.name); // "Jane Doe" console.log(result.data.skills.technical); // ["react", "node", "aws"] consol