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
| Param | Values | Notes |
|---|---|---|
category | any category slug | Slugs are in each category URL, e.g. ai-coding |
country | ISO-2 code | US, GB, DE… |
pricing | free / freemium / paid / enterprise / open-source | |
sort | score / funding / recent / newest | newest = latest additions — see the new-startups feed |
limit / offset | 1–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=fundinginto a spreadsheet via Make or Zapier. - Deal flow screener — pull
/api/v1/dealsfor 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 →