Workflow code
Copy this code to understand the workflow logic. Replace all API keys and credentials with your own before running.
// n8n workflow structure (JSON import)
{
"nodes": [
{ "type": "Schedule", "cron": "0 7 * * *" },
{
"type": "RSS Feed",
"urls": [
"https://huggingface.co/blog/feed.xml",
"https://openai.com/news/rss",
"https://www.anthropic.com/news/rss",
"https://techcrunch.com/tag/ai/feed/"
]
},
{ "type": "Filter", "condition": "publishedAt > 24h ago" },
{
"type": "HTTP Request (Claude API)",
"body": {
"model": "claude-sonnet-4-5",
"messages": [{
"role": "user",
"content": "Summarise this AI news in 3 bullet points for an Indian tech audience: {{$json.content}}"
}]
}
},
{ "type": "Telegram", "chatId": "@your_channel" },
{ "type": "Gmail", "to": "your-list@group.com" }
]
}