Skip to main content
NeuronFeed
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)

  1. Trigger: RSS by Zapier → New item in feed → https://neuronfeed.com/news/rss
  2. 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

  1. Trigger: Schedule by Zapier → Every day.
  2. Action 1: Webhooks by Zapier → GET → https://neuronfeed.com/api/v1/startups?sort=newest&limit=25. Zapier auto-parses the JSON.
  3. Action 2: Looping by Zapier → Create loop from line items on the data array.
  4. Action 3 (inside loop): Google Sheets → Lookup row by slug; add a Filter step that continues only if the lookup found nothing.
  5. Action 4 (inside loop): Google Sheets → Create row — map name, tagline, website, funding total_usd, score, and url.

Useful field notes

  • slug is the stable unique ID — always store it, dedup on it.
  • url is 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 →