CV Parser

COMING SOON

AI-powered CV extraction — structured candidate data from any CV

Overview

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.

How It Works

POST /api/cv-parse?apiKey={key}

Upload a CV as multipart/form-data. Returns structured JSON with extracted fields.

Example Response

{
  "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
}

Use Cases

  • Recruitment agency candidate intake automation
  • Job board application processing
  • HR system CV-to-profile conversion
  • Candidate search and matching engines

Supported Formats

PDF

DOCX

Quick Facts

  • Token Cost

    TBD (announced at launch)

  • Input Formats

    PDF, DOCX

  • Output

    Structured JSON

  • AI Powered

    Yes — multi-model

  • Auth

    API key (query param)

  • Documentation

    Swagger / OpenAPI