Block 1 - Telegram Trigger
- Type / Role
- n8n-nodes-base.telegramTrigger - telegramTrigger
- Config choices
- Version 1.1
This workflow is provided as-is. Please review and test before using in production.
Real Time Flight Data Analytics Bot with Dynamic Chart Generation via Telegram Template Overview This advanced n8n workflow creates an intelligent Telegram bot that transforms raw CSV flight ...
n8n-nodes-base.telegramtrigger, n8n-nodes-base.if, n8n-nodes-base.telegram, n8n-nodes-base.switch, n8n-nodes-base.extractfromfile, n8n-nodes-base.readwritefile, n8n-nodes-base.code, n8n-nodes-base.httprequest
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by DataMinex.
Original n8n.io sourceThis advanced n8n workflow creates an intelligent Telegram bot that transforms raw CSV flight data into stunning, interactive visualizations. Users can generate professional charts on-demand through a conversational interface, making data analytics accessible to anyone via messaging.
Key Innovation: Combines real-time data processing, Chart.js visualization engine, and Telegram's messaging platform to deliver instant business intelligence insights.
Transform your flight booking data into actionable insights with four powerful visualization types:
Each chart includes auto-generated insights, percentages, and key business metrics delivered instantly to users' phones.
User Input β Command Detection β CSV Processing β Data Aggregation β
Chart Configuration β Image Generation β Telegram Delivery
This template uses the Airlines Flights Data dataset from GitHub: π Dataset: Airlines Flights Data by Rohit Grewal
Your CSV file should contain these columns:
airline,flight,source_city,departure_time,arrival_time,duration,price,class,destination_city,stops
/data/
βββ flights.csv (download from GitHub dataset above)
/data/flights.csv in your n8n instance/start commandBar Chart Logic:
// Aggregate airline counts
const airlineCounts = {};
flights.forEach(flight => {
const airline = flight.airline || 'Unknown';
airlineCounts[airline] = (airlineCounts[airline] || 0) + 1;
});
// Generate Chart.js configuration
const chartConfig = {
type: 'bar',
data: { labels, datasets },
options: { responsive: true, plugins: {...} }
};
Dynamic Color Schemes:
Auto-Generated Insights:
User Experience Enhancements:
// Custom color palette
backgroundColor: ['#your-colors'],
// Advanced styling
borderRadius: 8,
borderSkipped: false,
// Animation effects
animation: { duration: 2000, easing: 'easeInOutQuart' }
/start commandReady to transform your data into actionable insights? Import this template and start generating professional charts in minutes! π
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Flight data visualization with Chart.js, QuickChart API & Telegram Bot |
|---|---|
| Complexity | advanced |
| Nodes | 24 |
| Categories | Market Research, Multimodal AI |
| Author | DataMinex |
| Published | 11 Aug 2025 |
Use the JSON export at /data/workflows/7238/7238.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Real Time Flight Data Analytics Bot with Dynamic Chart Generation via Telegram Template Overview This advanced n8n workflow creates an intelligent Telegram bot that transforms raw CSV flight ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research, Multimodal AI use case.