Skip to main content
NeuronFeed
Builders

Build with the NeuronFeed API

The whole directory is queryable over a free JSON API. No key, no signup, CORS-open — you can call it from a browser tab right now.

Your first request

curl "https://neuronfeed.com/api/v1/startups?category=ai-voice&limit=5"

Returns the top AI-voice startups by NeuronScore, each with slug, tagline, pricing, funding, HQ, score, and a canonical profile URL. Pagination rides on limit (max 100) and offset, with a has_more flag.

Parameters

ParamValuesNotes
categoryany category slugSlugs are in each category URL, e.g. ai-coding
countryISO-2 codeUS, GB, DE
pricingfree / freemium / paid / enterprise / open-source
sortscore / funding / recent / newestnewest = latest additions — see the new-startups feed
limit / offset1–100 / 0+Standard pagination

Rate limits & fair use

60 requests per minute per IP. Responses are JSON with standard X-RateLimit-* headers. Cache on your side where you can — directory data changes daily, not per-second. Attribution with a link to the startup's NeuronFeed profile is appreciated but not required.

Recipes

  • Newest AI startups widget?sort=newest&limit=10, refresh daily. This powers "new this week" sections.
  • Category watchlist?category=ai-agents&sort=funding into a spreadsheet via Make or Zapier.
  • Deal flow screener — pull /api/v1/deals for recent rounds, join on startup slug.

For AI agents: MCP

If you're wiring the directory into Claude or another MCP-capable client, skip REST — we expose an MCP endpoint at https://neuronfeed.com/api/mcp. Details in the API reference.

Full reference

Every endpoint, field, and error code: API documentation →