AutomationFlowsData & Sheets › Weekly Startup Opportunities to Notion

Weekly Startup Opportunities to Notion

Original n8n title: Opportunity Radar Weekly

Opportunity Radar Weekly. Uses httpRequest, notion. Scheduled trigger; 8 nodes.

Cron / scheduled trigger★★★★☆ complexity8 nodesHTTP RequestNotion
Data & Sheets Trigger: Cron / scheduled Nodes: 8 Complexity: ★★★★☆ Added:

This workflow follows the HTTP Request → Notion 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 →

Download .json
{
  "name": "Opportunity Radar Weekly",
  "nodes": [
    {
      "parameters": {
        "rule": {
          "interval": [
            {
              "field": "cronExpression",
              "expression": "0 8 * * 1"
            }
          ]
        }
      },
      "id": "bbc532fe-3787-47aa-ae16-609b8db51f2a",
      "name": "Weekly Monday 8am",
      "type": "n8n-nodes-base.scheduleTrigger",
      "typeVersion": 1.1,
      "position": [
        -224,
        160
      ]
    },
    {
      "parameters": {
        "path": "opportunity-radar",
        "options": {}
      },
      "id": "webhook-trigger",
      "name": "Manual Trigger",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        -224,
        60
      ]
    },
    {
      "parameters": {
        "url": "https://hn.algolia.com/api/v1/search_by_date?tags=show_hn&hitsPerPage=30",
        "options": {}
      },
      "id": "3c4115b8-fa3b-4594-b52c-399b4f95158f",
      "name": "HackerNews Startups",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        0,
        112
      ]
    },
    {
      "parameters": {
        "url": "https://hn.algolia.com/api/v1/search?query=side%20project&tags=show_hn&hitsPerPage=25",
        "options": {}
      },
      "id": "2508d151-f648-4cec-9dba-478cfba916a7",
      "name": "HackerNews Show HN",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        0,
        208
      ]
    },
    {
      "parameters": {
        "url": "https://www.reddit.com/r/SideProject/top.json?t=week&limit=25",
        "options": {}
      },
      "id": "eff93fce-c57a-444f-8284-ef93c1e90699",
      "name": "Reddit SideProject",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        0,
        304
      ]
    },
    {
      "parameters": {
        "url": "https://www.reddit.com/r/EntrepreneurRideAlong/top.json?t=week&limit=25",
        "options": {}
      },
      "id": "9b3585c2-a0be-4adf-86cf-c3851ca5eddd",
      "name": "Reddit Entrepreneur",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        0,
        400
      ]
    },
    {
      "parameters": {
        "jsCode": "// Consolidate all sources into opportunity candidates\nconst opportunities = [];\n\nfor (const item of $input.all()) {\n  const data = item.json;\n  \n  // Handle HackerNews format\n  if (data.hits) {\n    for (const hit of data.hits) {\n      opportunities.push({\n        source: 'HackerNews',\n        title: hit.title,\n        url: hit.url || `https://news.ycombinator.com/item?id=${hit.objectID}`,\n        score: hit.points || 0,\n        comments: hit.num_comments || 0,\n        created: hit.created_at,\n        description: (hit.story_text || '').substring(0, 500).replace(/\"/g, '').replace(/\\n/g, ' ')\n      });\n    }\n  }\n  \n  // Handle Reddit format\n  if (data.data && data.data.children) {\n    for (const child of data.data.children) {\n      const post = child.data;\n      // Map subreddit to Notion select options\n      let source = 'HackerNews';\n      if (post.subreddit === 'SideProject') source = 'Reddit SideProject';\n      else if (post.subreddit === 'EntrepreneurRideAlong') source = 'Reddit Entrepreneur';\n      \n      opportunities.push({\n        source: source,\n        title: post.title,\n        url: `https://reddit.com${post.permalink}`,\n        score: post.score,\n        comments: post.num_comments,\n        created: new Date(post.created_utc * 1000).toISOString(),\n        description: (post.selftext || '').substring(0, 500).replace(/\"/g, '').replace(/\\n/g, ' ')\n      });\n    }\n  }\n}\n\n// Filter for entertainment, video, productivity, ADHD, parenting keywords\nconst domainKeywords = ['video', 'creator', 'content', 'film', 'movie', 'entertainment', 'streaming', 'productivity', 'adhd', 'parent', 'mom', 'dad', 'automat', 'ai', 'tool', 'saas', 'app'];\n\nconst filtered = opportunities.filter(opp => {\n  const text = (opp.title + ' ' + opp.description).toLowerCase();\n  return domainKeywords.some(kw => text.includes(kw)) && opp.score >= 5;\n});\n\nfiltered.sort((a, b) => b.score - a.score);\n\nreturn filtered.slice(0, 25).map(opp => ({ json: opp }));"
      },
      "id": "d296b34d-0690-4b97-a551-2129232916c0",
      "name": "Consolidate & Filter",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        288,
        208
      ]
    },
    {
      "parameters": {
        "resource": "databasePage",
        "databaseId": {
          "__rl": true,
          "mode": "id",
          "value": "bc3e684029ec4e5d99d41f2d4c52b07c"
        },
        "title": "={{ $json.title.substring(0,100) }}",
        "propertiesUi": {
          "propertyValues": [
            {
              "key": "URL|url",
              "urlValue": "={{ $json.url }}"
            },
            {
              "key": "Score|number",
              "numberValue": "={{ $json.score }}"
            },
            {
              "key": "Comments|number",
              "numberValue": "={{ $json.comments }}"
            },
            {
              "key": "Source|select",
              "selectValue": "={{ $json.source }}"
            },
            {
              "key": "Description|rich_text",
              "textValue": "={{ $json.description }}"
            },
            {
              "key": "Date|date",
              "includeTime": false,
              "date": "={{ $json.created.split('T')[0] }}"
            },
            {
              "key": "Date Scraped|date",
              "includeTime": false,
              "date": "={{ $now.toISODate() }}"
            }
          ]
        },
        "options": {}
      },
      "id": "notion-create",
      "name": "Add to Notion",
      "type": "n8n-nodes-base.notion",
      "typeVersion": 2.2,
      "position": [
        520,
        208
      ],
      "credentials": {
        "notionApi": {
          "name": "<your credential>"
        }
      }
    }
  ],
  "connections": {
    "Weekly Monday 8am": {
      "main": [
        [
          {
            "node": "HackerNews Startups",
            "type": "main",
            "index": 0
          },
          {
            "node": "HackerNews Show HN",
            "type": "main",
            "index": 0
          },
          {
            "node": "Reddit SideProject",
            "type": "main",
            "index": 0
          },
          {
            "node": "Reddit Entrepreneur",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Manual Trigger": {
      "main": [
        [
          {
            "node": "HackerNews Startups",
            "type": "main",
            "index": 0
          },
          {
            "node": "HackerNews Show HN",
            "type": "main",
            "index": 0
          },
          {
            "node": "Reddit SideProject",
            "type": "main",
            "index": 0
          },
          {
            "node": "Reddit Entrepreneur",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HackerNews Startups": {
      "main": [
        [
          {
            "node": "Consolidate & Filter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HackerNews Show HN": {
      "main": [
        [
          {
            "node": "Consolidate & Filter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Reddit SideProject": {
      "main": [
        [
          {
            "node": "Consolidate & Filter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Reddit Entrepreneur": {
      "main": [
        [
          {
            "node": "Consolidate & Filter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Consolidate & Filter": {
      "main": [
        [
          {
            "node": "Add to Notion",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1",
    "availableInMCP": false
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Opportunity Radar Weekly. Uses httpRequest, notion. Scheduled trigger; 8 nodes.

Source: https://github.com/rocketroz/ai-scraper/blob/108e68f3c559d5797aa107e175da6247b808f7bc/n8n-workflows/opportunity-radar.json — original creator credit. Request a take-down →

More Data & Sheets workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Data & Sheets

This template is designed for social media managers, content creators, data analysts, and anyone who wants to automatically save and analyze their Meta Threads posts in Notion.

HTTP Request, Notion
Data & Sheets

&gt; Transform your content strategy with automated competitor intelligence

HTTP Request, Airtable, Notion +2
Data & Sheets

⚠️ COMMUNITY TEMPLATE DISCLAIMER: This is a community-contributed template that uses ScrapeGraphAI (a community node). Please ensure you have the ScrapeGraphAI community node installed in your n8n ins

N8N Nodes Scrapegraphai, HTTP Request, Notion +1
Data & Sheets

Raindrop Knowledge Management. Uses httpRequest, notion. Scheduled trigger; 11 nodes.

HTTP Request, Notion
Data & Sheets

n8n workflows can go out of hand when you're automating as much as we do at n8n. We needed a place to document them and keep track of who owns and maintains them. To facilitate this we use this n8n wo

n8n, HTTP Request, Notion