This workflow follows the HTTP Request → Telegram 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": "Telegram financial Q&A",
"nodes": [
{
"parameters": {
"updates": [
"message"
]
},
"id": "telegram-trigger",
"name": "Telegram Trigger",
"type": "n8n-nodes-base.telegramTrigger",
"typeVersion": 1.1,
"position": [
240,
300
]
},
{
"parameters": {
"method": "POST",
"url": "={{ $env.APP_API_BASE_URL || 'https://household-financial-web.vercel.app' }}/api/automation/financial-question",
"authentication": "genericCredentialType",
"genericAuthType": "httpHeaderAuth",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify({ message: $json.message.text }) }}",
"options": {
"timeout": 90000
}
},
"id": "ask-api",
"name": "ask_financial_question",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
480,
300
],
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}",
"text": "={{ $json.data.reply || $json.error?.message || 'No answer available.' }}",
"additionalFields": {}
},
"id": "telegram-reply",
"name": "Send reply",
"type": "n8n-nodes-base.telegram",
"typeVersion": 1.2,
"position": [
720,
300
],
"credentials": {
"telegramApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Telegram Trigger": {
"main": [
[
{
"node": "ask_financial_question",
"type": "main",
"index": 0
}
]
]
},
"ask_financial_question": {
"main": [
[
{
"node": "Send reply",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"meta": {
"templateCredsSetupCompleted": false
}
}
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.
httpHeaderAuthtelegramApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Telegram financial Q&A. Uses telegramTrigger, httpRequest, telegram. Event-driven trigger; 3 nodes.
Source: https://github.com/ChrisDANG-data/Household-Finance-AI/blob/main/automation/n8n/workflows/telegram-financial-qa.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.
BillBot. Uses telegram, telegramTrigger, httpRequest, googleSheets. Event-driven trigger; 7 nodes.
Receive updates from Telegram and send an image of a cocktail. Uses telegramTrigger, httpRequest, telegram. Event-driven trigger; 3 nodes.
N8N Complete Final. Uses telegramTrigger, dataTable, telegram, mqtt. Event-driven trigger; 58 nodes.
Pede Ai. Uses httpRequest, telegram, postgres, telegramTrigger. Event-driven trigger; 57 nodes.
TextMain. Uses telegramTrigger, stopAndError, telegram, httpRequest. Event-driven trigger; 56 nodes.