Skip to main content
NeuronFeed
No-code

Make integration

Make's HTTP module is all you need — no custom app, no key. This recipe builds the most popular scenario: new AI startups → Google Sheets, checked daily.

The scenario

  1. Schedule — set the scenario to run once a day (data lands in daily batches; more often is wasted operations).
  2. HTTP → Make a request
    • URL: https://neuronfeed.com/api/v1/startups?sort=newest&limit=25
    • Method: GET · Parse response: Yes
  3. Iterator — iterate over data[] from the HTTP response.
  4. Google Sheets → Add a row — map the fields you want:
    • name, tagline, website
    • hq.country, founded_year
    • funding.total_usd, funding.latest_round_type
    • score, url (the NeuronFeed profile link)

Dedup so rows don't repeat

Simplest reliable approach: before the Add-a-row step, use Google Sheets → Search rows matching on slug, and a filter that only continues when no row is found. The slug field is the stable unique key for every startup.

Variations

  • Category watch: add &category=ai-agents (any category slug) to the URL.
  • Funding alerts: swap the URL for https://neuronfeed.com/api/v1/deals and route big rounds to Slack with a filter on amount.
  • Slack digest: replace Sheets with Slack → Create a message; aggregate the iterator into one text block first with the Text Aggregator.

Limits

60 requests/min per IP — a daily scenario uses one. If you build something heavier, add pauses rather than parallel branches, and see setup basics for caching guidance.

Prefer Zapier?

Same result, different tool: the Zapier recipe →