n8n Deep Research Workflow Template

deep research n8n workflow
  • Telegram message bot
  • AI research by using Perplexity deep research model
  • Upload to Google doc
  • Sends completion Telegram message

AI Agent Research Prompt:

I want you do a deep research by calling the HTTP request tool on this topic:

REPLACE WITH YOUR TOPIC

I want to understand this topic well enough to explain it to someone else in 5th grade english.

the research should focus on the following:

1. If there is any common misconceptions and why they’re wrong
2. Timeline or evolution of the idea, event or product
3. If known, focus the research for who it matters To
4. Try to get a strong grasp of it from multiple angles if possible

when presenting data, please output them in an organize table or bullet points

Write this as a human-readable article with no Markdown, no bullet points, no headers. Use complete paragraphs and natural transitions.

DEDICATED HTTPS REQUEST NODE SETUP:

Import cURL:

curl --request POST \
--url https://api.perplexity.ai/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "sonar",
"messages": [
{
"role": "system",
"content": "Be precise and concise."
},
{
"role": "user",
"content": "How many stars are there in our galaxy?"
}
]
}'

HTTP TOOL Setup Inside The AI Tool Agent:

{
"model": "sonar-deep-research",
"messages": [
{
"role": "system",
"content": "you are a professional researcher that analyzes the input and research the web to provide insightful data"
},
{
"role": "user",
"content": "REPLACE WITH YOUR TOPIC"
}
]
}

Scroll to Top