Upload your CV as a PDF and instantly get a structured "Master CV" Google Sheet – every experience, education entry, skill, and contact detail extracted into the right tab. This gives you a clean personal CV database you can reuse across other workflows (job tailoring, application tracking, skills gap analysis).
Create a Google Sheet named Master CV with four tabs:
role, company, dates, bullets, skillsdegree, institution, dates, detailsskillfull_name, email, linkedin_url, location, summary, languages, linksLeave all tabs empty below the headers – the workflow fills them.
The easybits Extractor is a verified n8n community node. On n8n Cloud it's available out of the box. On self-hosted n8n, install it via Settings → Community Nodes → enter @easybits/n8n-nodes-extractor.
Sign up for a free account at easybits.tech to get an API key. Open the easybits: Extract CV node in this workflow and connect your credential.
The Extractor node uses 10 fields to pull structured data from the CV. Paste each description into the corresponding field's description box in the Extractor node:
full_name (string)
Candidate's full name as it appears at the top of the CV. Null if not present.
email (string)
Email address. Null if not present.
linkedin_url (string)
Full LinkedIn profile URL. Null if not present.
location (string)
Location as written (e.g., "Berlin, Germany"). Null if not present.
summary (string)
Personal summary or "about me" paragraph. Return full text as written, do not paraphrase. Null if no summary section.
experiences (array)
Each work experience as an object: role, company, dates (range as written), bullets (array, one per bullet point), skills (array of techs/tools used in this specific role). Preserve original wording of bullets – do not summarize. List in CV order.
education (array)
Each entry as an object: degree, institution, dates, details (thesis, GPA, honors – null if none). Empty array if no education section.
skills (array)
Flat list of all technical skills, tools, frameworks, methodologies, AND certifications listed anywhere in the CV. Each as a short noun phrase. Deduplicate case-insensitively. Exclude soft skills like "communication".
languages (array)
Spoken/written languages as objects: language, proficiency (as written, e.g., "C1", "fluent"). Empty array if none.
links (array)
Professional URLs other than LinkedIn (GitHub, portfolio, personal site) as objects: label, url. Empty array if none. Do not include LinkedIn here.
The 10-field cap matches the easybits free plan, so anyone can run this workflow as-is.
Open each of the four append nodes (Master CV, Education, Skills, Summary) and connect your Google Sheets credential. Replace the placeholder document ID with your Master CV sheet's ID.
Set the workflow to active, copy the form URL, and upload your CV. Review the four tabs after – minor cleanup is normal, especially for two-column or designer CV layouts.
The easybits Extractor wraps its response in a data object, so the Fan-out node reads from $input.first().json.data. The toArray() helper inside the node also handles cases where array fields come back as JSON-encoded strings – making the workflow robust across different Extractor response shapes.