This workflow follows the Emailsend → HTTP Request 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": "Daily Sourcing Agent",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"minutesInterval": 0,
"triggerType": "everyHour"
}
]
}
},
"id": "schedule-trigger",
"name": "Daily at 9am",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "http://api:8000/api/v1/suppliers/aliexpress/products",
"method": "GET",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "page",
"value": "1"
},
{
"name": "per_page",
"value": "50"
}
]
}
},
"id": "fetch-products",
"name": "Fetch AliExpress Products",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
450,
300
]
},
{
"parameters": {
"url": "http://api:8000/api/v1/suppliers/search",
"method": "GET",
"sendQuery": true,
"queryParameters": {
"parameters": [
{
"name": "q",
"value": "trending"
}
]
}
},
"id": "analyze-trends",
"name": "Analyze Trends",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
650,
300
]
},
{
"parameters": {
"url": "http://api:8000/api/v1/products",
"method": "POST",
"sendBody": true,
"specifyBody": "json"
},
"id": "update-catalog",
"name": "Update Catalog",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 3,
"position": [
850,
300
]
},
{
"parameters": {
"subject": "Daily Product Update",
"body": "Sourcing completed. Updated {{ $json.updated }} products."
},
"id": "send-notification",
"name": "Send Notification",
"type": "n8n-nodes-base.emailSend",
"typeVersion": 1,
"position": [
1050,
300
]
}
],
"connections": {
"Daily at 9am": {
"main": [
[
{
"node": "Fetch AliExpress Products",
"type": "main",
"index": 0
}
]
]
},
"Fetch AliExpress Products": {
"main": [
[
{
"node": "Analyze Trends",
"type": "main",
"index": 0
}
]
]
},
"Analyze Trends": {
"main": [
[
{
"node": "Update Catalog",
"type": "main",
"index": 0
}
]
]
},
"Update Catalog": {
"main": [
[
{
"node": "Send Notification",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {},
"id": "sourcing-workflow"
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Daily Sourcing Agent. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.
Source: https://github.com/IlarionDossouyovo/E-Battisseurs/blob/54d4993f1b43c46f5e0d5a1a5a4316e7bb37a050/n8n/workflow-sourcing.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.
Monitors brand mentions across Twitter/X, Reddit, and News APIs in real-time (or scheduled), fetches mentions in parallel, normalizes data, uses AI to analyze sentiment/urgency/topics, detects duplica
Tech Daily Digest. Uses rssFeedRead, emailSend, httpRequest. Scheduled trigger; 22 nodes.
Daily AI Research Agent. Uses httpRequest, telegram, emailSend. Scheduled trigger; 11 nodes.
Agent Studio - Weekly Analytics Report. Uses httpRequest, emailSend. Scheduled trigger; 8 nodes.
E-Décor - AI Agent Assistant. Uses httpRequest, emailSend. Scheduled trigger; 6 nodes.