Block 1 - On form submission
- Type / Role
- n8n-nodes-base.formTrigger - formTrigger
- Config choices
- Version 2.5
What This Workflow Does 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. ...
n8n-nodes-base.formtrigger, n8n-nodes-base.splitout, n8n-nodes-base.googlesheets, n8n-nodes-base.code, @easybits/n8n-nodes-extractor.easybitsextractor, n8n-nodes-base.merge, n8n-nodes-base.form, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Felix.
Original n8n.io sourceUpload 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.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Create a master CV Google Sheet from uploaded CVs with easybits |
|---|---|
| Complexity | advanced |
| Nodes | 19 |
| Categories | Document Extraction, AI Summarization |
| Author | Felix |
| Published | 07 May 2026 |
Use the JSON export at /data/workflows/15528/15528.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
What This Workflow Does 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. ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction, AI Summarization use case.