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": [
250,
300
],
"parameters": {},
"typeVersion": 1
},
{
"name": "AWS Textract",
"type": "n8n-nodes-base.awsTextract",
"position": [
650,
300
],
"parameters": {},
"credentials": {
"aws": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "AWS S3",
"type": "n8n-nodes-base.awsS3",
"position": [
450,
300
],
"parameters": {
"fileKey": "Rechnung.jpg",
"bucketName": "textract-demodata"
},
"credentials": {
"aws": {
"name": "<your credential>"
}
},
"typeVersion": 1
}
],
"connections": {
"AWS S3": {
"main": [
[
{
"node": "AWS Textract",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "AWS S3",
"type": "main",
"index": 0
}
]
]
}
}
}
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.
aws
About this workflow
Send A File From S3 To Aws Textract. Uses manualTrigger, awsTextract, awsS3. Event-driven trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →