This workflow follows the HTTP Request → Supabase 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 Optimizer Webhook",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "optimize",
"responseMode": "responseNode",
"options": {}
},
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1.1,
"position": [
200,
300
],
"id": "webhook"
},
{
"parameters": {
"url": "=https://r.jina.ai/{{ $json.body.url }}",
"method": "GET",
"options": {
"timeout": 10000
}
},
"name": "Fetch Job Page",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
400,
300
],
"id": "fetch-job"
},
{
"parameters": {
"operation": "select",
"tableId": "user_profile",
"filterType": "none",
"limit": 1
},
"name": "Get Resume",
"type": "n8n-nodes-base.supabase",
"typeVersion": 1,
"position": [
400,
450
],
"id": "get-resume",
"credentials": {
"supabaseApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"url": "https://api.anthropic.com/v1/messages",
"method": "POST",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendBody": true,
"contentType": "json",
"body": {
"model": "claude-sonnet-4-6",
"max_tokens": 4096,
"messages": [
{
"role": "user",
"content": "=Optimize this resume for the job. Return JSON only with keys: optimizedResume, coverLetter, matchScore (0-100).\n\nJOB PAGE:\n{{ $('Fetch Job Page').item.json.body?.substring(0, 4000) }}\n\nRESUME:\n{{ $('Get Resume').item.json[0]?.base_resume }}\n\nTONE: {{ $('Webhook').item.json.body?.tone || 'professional' }}"
}
]
}
},
"name": "Claude Optimize",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
700,
375
],
"id": "claude-optimize"
},
{
"parameters": {
"respondWith": "json",
"responseBody": "={{ $json.content[0].text }}"
},
"name": "Respond",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
900,
375
],
"id": "respond"
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Fetch Job Page",
"type": "main",
"index": 0
},
{
"node": "Get Resume",
"type": "main",
"index": 0
}
]
]
},
"Fetch Job Page": {
"main": [
[
{
"node": "Claude Optimize",
"type": "main",
"index": 0
}
]
]
},
"Get Resume": {
"main": [
[
{
"node": "Claude Optimize",
"type": "main",
"index": 0
}
]
]
},
"Claude Optimize": {
"main": [
[
{
"node": "Respond",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "1"
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
supabaseApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Resume Optimizer Webhook. Uses httpRequest, supabase. Webhook trigger; 5 nodes.
Source: https://github.com/RumaisaKashif/internship-tracker/blob/2ef5a87d5cb89c64d05c64273be41642c7f793ae/n8n/resume-optimizer.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.
operation34. Uses supabase, httpRequest. Webhook trigger; 4 nodes.
fluxo-ingestao. Uses httpRequest, supabase. Webhook trigger; 3 nodes.
booking no duplicate. Uses httpRequest, supabase. Webhook trigger; 38 nodes.
01-intake-storage. Uses airtable, supabase, stopAndError, httpRequest. Webhook trigger; 33 nodes.