
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. I built ResumeParser API to fix this. Live API: https://resumeparser-api.loca.lt (free tier, 50 parses/month) npm: npm install resumeparser-sdk What it does Send a PDF resume, get back clean JSON: { "personal" : { "name" : "Jane Doe" , "emails" : [ "jane@example.com" ], "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" ] } Try it in 30 seconds # 1. Get a free API key curl -X POST https://resumeparser-api.loca.lt/keys \ -H "Content-Type: application/json" \ -H "Bypass-Tunnel-Reminder: 1" \ -d '{"name": "Your Name", "email": "you@example.com"}' # 2. Parse a
Continue reading on Dev.to
Opens in a new tab




