Productivity · n8n

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.

difficulty Beginnersetup 30 minresult A cited, 5-bullet industry brief in Slack every morning before work starts
  1. 1

    Schedule the morning run

    Add a Schedule Trigger set to Days at hour 8. A single daily request keeps costs to a fraction of a cent and lands the brief before the team logs on.

  2. 2

    Ask Perplexity for the brief

    Add an HTTP Request node: POST https://api.perplexity.ai/chat/completions, header Authorization: Bearer YOUR_PERPLEXITY_API_KEY. In the JSON body set model to sonar-pro and a messages array 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. 3

    Format the answer and citations

    A Code node pulls choices[0].message.content for the text and the citations array for the sources. It builds one Slack-ready string: the 5 bullets, then a Sources: list numbering each citation URL.

  4. 4

    Post to Slack

    A Slack node 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. 5

    Test and activate

    Run Execute Workflow once 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 workflow Active for 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.

About this recipe. Recipes on FlowRecipesHub are written for business owners, not developers, and are tested before publishing — how recipes get made. Some ingredient links are affiliate links that cost you nothing — full disclosure.