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": "9AM IST AI Daily Digest (Arxiv + GitHub + News)",
"nodes": [
{
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
200,
300
],
"parameters": {
"cronExpression": "0 9 * * *",
"timezone": "Asia/Kolkata"
}
},
{
"name": "Fetch Arxiv Papers",
"type": "n8n-nodes-base.httpRequest",
"position": [
500,
120
],
"parameters": {
"method": "GET",
"url": "https://export.arxiv.org/api/query",
"description": "Fetch latest AI/ML research papers"
}
},
{
"name": "Fetch AI News",
"type": "n8n-nodes-base.httpRequest",
"position": [
500,
300
],
"parameters": {
"method": "GET",
"url": "https://newsapi.org/",
"description": "Fetch trending AI and tech news"
}
},
{
"name": "Fetch Trending GitHub Repos",
"type": "n8n-nodes-base.httpRequest",
"position": [
500,
480
],
"parameters": {
"method": "POST",
"url": "https://api.tavily.com/",
"description": "Fetch trending GitHub repositories"
}
},
{
"name": "Groq AI Summarizer",
"type": "n8n-nodes-base.llm",
"position": [
850,
300
],
"parameters": {
"provider": "Groq",
"model": "llama3",
"task": "Summarize content into concise digest"
}
},
{
"name": "Telegram Delivery",
"type": "n8n-nodes-base.telegram",
"position": [
1150,
300
],
"parameters": {
"operation": "sendMessage",
"description": "Send summarized digest to Telegram users"
}
}
],
"connections": {
"Schedule Trigger": {
"main": [
[
{
"node": "Fetch Arxiv Papers"
},
{
"node": "Fetch AI News"
},
{
"node": "Fetch Trending GitHub Repos"
}
]
]
},
"Fetch Arxiv Papers": {
"main": [
[
{
"node": "Groq AI Summarizer"
}
]
]
},
"Fetch AI News": {
"main": [
[
{
"node": "Groq AI Summarizer"
}
]
]
},
"Fetch Trending GitHub Repos": {
"main": [
[
{
"node": "Groq AI Summarizer"
}
]
]
},
"Groq AI Summarizer": {
"main": [
[
{
"node": "Telegram Delivery"
}
]
]
}
},
"meta": {
"description": "Automated AI daily digest delivering research papers, AI news, and trending GitHub repositories to Telegram every day at 9 AM IST.",
"author": "Shubham Sharma",
"version": "1.0.0",
"license": "MIT"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
9AM IST AI Daily Digest (Arxiv + GitHub + News). Uses httpRequest, llm, telegram. Scheduled trigger; 6 nodes.
Source: https://github.com/shubham001official/AI-Daily-Digest/blob/main/workflow/ai-daily-digest.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.
*Tags: Crypto, Currency Exchange, Alpha Vantage API, Google Sheets*
MAIA - Health Check. Uses noOp, telegram, scheduleTrigger, googleSheets. Scheduled trigger; 7 nodes.
This workflow posts a poem translated into English every day in a Telegram chat.
Send a cocktail recipe every day via a Telegram. Uses telegram, httpRequest. Scheduled trigger; 3 nodes.
Daily Text Affirmations. Uses httpRequest, telegram. Scheduled trigger; 3 nodes.