This workflow follows the HTTP Request → OpenAI recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Resume Tailoring Workflow",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "resume-tailor",
"responseMode": "lastNode",
"options": {}
},
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "=http://localhost:5000/api/jobs/{{ $json.body.jobId }}",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"options": {}
},
"name": "Get Job Details",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
450,
300
]
},
{
"parameters": {
"jsCode": "const job = $input.first().json;\nconst keywords = job.skills || [];\nconst requirements = job.requirements || [];\n\nreturn {\n json: {\n extractedKeywords: keywords,\n requirements: requirements,\n jobTitle: job.title,\n company: job.company\n }\n};"
},
"name": "Extract Keywords",
"type": "n8n-nodes-base.code",
"typeVersion": 1,
"position": [
650,
300
]
},
{
"parameters": {
"resource": "text",
"operation": "message",
"modelId": "gpt-3.5-turbo",
"messages": {
"values": [
{
"role": "user",
"content": "=Based on these job requirements: {{ $json.requirements.join(', ') }}, suggest resume improvements to highlight relevant experience."
}
]
},
"options": {}
},
"name": "OpenAI Suggestions",
"type": "n8n-nodes-base.openAi",
"typeVersion": 1,
"position": [
850,
300
]
},
{
"parameters": {
"url": "=http://localhost:5000/api/resume/{{ $json.resumeId }}/tailor",
"method": "POST",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"jsonParameters": true,
"options": {},
"bodyParametersJson": "={{ {\"jobId\": $json.body.jobId, \"suggestions\": $json.message.content} }}"
},
"name": "Update Resume",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
1050,
300
]
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Get Job Details",
"type": "main",
"index": 0
}
]
]
},
"Get Job Details": {
"main": [
[
{
"node": "Extract Keywords",
"type": "main",
"index": 0
}
]
]
},
"Extract Keywords": {
"main": [
[
{
"node": "OpenAI Suggestions",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Suggestions": {
"main": [
[
{
"node": "Update Resume",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Resume Tailoring Workflow. Uses httpRequest, openAi. Webhook trigger; 5 nodes.
Source: https://github.com/VEDESH18/AI_Autointern/blob/73444cd3d27bbb7f1542ddfa3d8837184f7781fc/n8n-workflows/resume_tailor.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow captures new leads via webhook, enriches and scores them with Apollo and Google Gemini, logs everything in Google Sheets, and automates outreach, reply handling, follow-ups, meeting prep
This powerful n8n automation workflow is designed to execute advanced B2B lead enrichment and hyper-personalization for cold email outreach. By orchestrating a complex chain of data scraping, AI analy
Propulsar — Content Engine v3. Uses openAi, httpRequest, googleSheets. Webhook trigger; 73 nodes.
Eu Clara – Funil Kiwify Completo. Uses postgres, openAi, httpRequest, gmail. Webhook trigger; 70 nodes.
Postagem Redes — Portal: Ações. Uses openAi, googleGemini, ollama, httpRequest. Webhook trigger; 58 nodes.