Daily AI-Researched Industry News Brief to Slack with Perplexity
An n8n workflow that asks Perplexity's Sonar API for the most important developments in your industry each morning, formats the answer with its source citations, and posts a concise brief to Slack — so your team starts the day informed without anyone doom-scrolling the news.
- 1
Schedule the morning run
Add a
Schedule Triggerset toDaysat hour8. A single daily request keeps costs to a fraction of a cent and lands the brief before the team logs on. - 2
Ask Perplexity for the brief
Add an
HTTP Requestnode:POST https://api.perplexity.ai/chat/completions, headerAuthorization: Bearer YOUR_PERPLEXITY_API_KEY. In the JSON body setmodeltosonar-proand amessagesarray with a system role ('You are a news analyst, be concise, cite sources') and a user prompt describing your niche and the 24-hour window. - 3
Format the answer and citations
A
Codenode pullschoices[0].message.contentfor the text and thecitationsarray for the sources. It builds one Slack-ready string: the 5 bullets, then aSources:list numbering each citation URL. - 4
Post to Slack
A
Slacknode posts the formatted brief to your team channel. Add a header line with today's date and a book emoji so the daily brief is easy to spot when scrolling back. - 5
Test and activate
Run
Execute Workflowonce and check the Slack message — verify the bullets are relevant and the source links open. Tune the prompt if it drifts off-topic, then toggle the workflowActivefor hands-off daily delivery.
Frequently asked questions
Why Perplexity instead of a plain LLM?
A plain LLM answers from stale training data and can hallucinate. Perplexity's Sonar models search the live web and return real citations, so your brief reflects what actually happened yesterday and every claim links to a source your team can verify. That difference is the whole point of using it for news.
How do I keep it focused on my niche?
The prompt is where you steer it. Instead of 'AI news', ask for 'the 5 most important developments in [your specific niche] in the last 24 hours, prioritizing product launches, funding, and regulation'. The tighter the prompt, the more useful the brief — vague prompts get vague answers.
Can I get the citations as clickable links in Slack?
Yes. The Sonar API returns a citations array alongside the text. The workflow's formatting step appends them as a numbered source list, and Slack auto-links URLs. You can also switch to Slack Block Kit for cleaner formatting with each source as a context element.