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 →
{
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
680,
400
],
"parameters": {},
"typeVersion": 1
},
{
"name": "Read Binary File",
"type": "n8n-nodes-base.readBinaryFile",
"position": [
880,
400
],
"parameters": {
"filePath": "/data/pdf.pdf"
},
"typeVersion": 1
},
{
"name": "Read PDF",
"type": "n8n-nodes-base.readPDF",
"position": [
1090,
400
],
"parameters": {},
"typeVersion": 1
}
],
"connections": {
"Read Binary File": {
"main": [
[
{
"node": "Read PDF",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "Read Binary File",
"type": "main",
"index": 0
}
]
]
}
}
}
About this workflow
Extract Text From A Pdf File. Uses manualTrigger, readBinaryFile, readPDF. Event-driven trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →