This workflow follows the HTTP Request → Slack 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": "Stock Alert Workflow",
"nodes": [
{
"id": "1",
"name": "Stock Symbol Input",
"type": "n8n-nodes-base.set",
"parameters": {
"values": [
{
"name": "symbol",
"value": "AAPL"
}
]
},
"position": [
200,
200
]
},
{
"id": "2",
"name": "Fetch Stock Data",
"type": "n8n-nodes-base.httpRequest",
"parameters": {
"url": "https://query1.finance.yahoo.com/v7/finance/quote",
"method": "GET",
"queryParametersUi": {
"parameter": [
{
"name": "symbols",
"value": "={{$json[\"symbol\"]}}"
}
]
}
},
"position": [
500,
200
]
},
{
"id": "3",
"name": "Send to Slack",
"type": "n8n-nodes-base.slack",
"parameters": {
"resource": "message",
"operation": "post",
"channel": "#stock-alerts",
"text": "Stock {{ $json[\"quoteResponse\"][\"result\"][0][\"symbol\"] }} is currently trading at {{ $json[\"quoteResponse\"][\"result\"][0][\"regularMarketPrice\"] }} {{ $json[\"quoteResponse\"][\"result\"][0][\"currency\"] }}"
},
"position": [
800,
200
]
}
],
"connections": {
"Stock Symbol Input": {
"main": [
[
{
"node": "Fetch Stock Data",
"type": "main",
"index": 0
}
]
]
},
"Fetch Stock Data": {
"main": [
[
{
"node": "Send to Slack",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Stock Alert Workflow. Uses httpRequest, slack. Manual trigger; 3 nodes.
Source: https://github.com/CoreyLeath-code/QUANT-LLM-ASSISTANT/blob/4ab533b0ed999c4657b991d032e947609a2d006f/workflows/stock_alert.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.
Advanced Slackbot With N8N. Uses slack, httpRequest, stickyNote, executeWorkflow. Webhook trigger; 34 nodes.
Slackbots are super powerful. At n8n, we have been using them to get a lot done.. But it can become hard to manage and maintain many different operations that a workflow can do.
CV Slack Bot: Drop a CV in DM, Get an Instant Summary – powered by easybits. Uses @easybits/n8n-nodes-extractor, slackTrigger, httpRequest, slack. Event-driven trigger; 18 nodes.
Bet Assistant - Monitoring i Alerty Systemu. Uses httpRequest, slack, emailSend. Scheduled trigger; 10 nodes.
Nathan Your N8N Personal Assistant. Uses emailReadImap, readBinaryFile, spreadsheetFile, emailSend. Manual trigger; 9 nodes.