No-code
Zapier integration
Two patterns cover almost every Zapier use case: the RSS trigger for zero-config news alerts, and Schedule + Webhooks for the structured startups feed.
Recipe A — news alerts (easiest)
- Trigger: RSS by Zapier → New item in feed →
https://neuronfeed.com/news/rss - Action: Slack → Send channel message (or Gmail, Notion, anything). Map the item title, link, and description.
Done — funding news and analysis posts arrive as they publish.
Recipe B — new startups to a spreadsheet
- Trigger: Schedule by Zapier → Every day.
- Action 1: Webhooks by Zapier → GET →
https://neuronfeed.com/api/v1/startups?sort=newest&limit=25. Zapier auto-parses the JSON. - Action 2: Looping by Zapier → Create loop from line items on the
dataarray. - Action 3 (inside loop): Google Sheets → Lookup row by
slug; add a Filter step that continues only if the lookup found nothing. - Action 4 (inside loop): Google Sheets → Create row — map
name,tagline,website,funding total_usd,score, andurl.
Useful field notes
slugis the stable unique ID — always store it, dedup on it.urlis the NeuronFeed profile link, ready for Slack messages.- Nested fields appear in Zapier as
data hq country,data funding total_usd, etc.
Filters that make it yours
Add query params to the webhook URL: &category=ai-voice, &country=US, &pricing=open-source. Full parameter list in the API quickstart.
Prefer Make?
Same result with fewer steps: the Make recipe →