Free API
The new-AI-startups feed
Every company added to the directory, newest first, as clean JSON. Free, no key, CORS-open — power a "new this week" widget, a deal-flow tracker, or an agent workflow with one GET request.
The request
curl "https://neuronfeed.com/api/v1/startups?sort=newest&limit=10" The response
{
"data": [
{
"slug": "example-ai",
"name": "Example AI",
"tagline": "One-line description",
"website": "https://example.ai",
"logo_url": "/api/logo/example-ai?v=2",
"hq": { "country": "United States", "city": "San Francisco" },
"founded_year": 2025,
"pricing": { "model": "freemium", "has_free_plan": true },
"funding": { "total_usd": 5000000, "latest_round_type": "Seed" },
"score": 67,
"url": "https://neuronfeed.com/startups/example-ai"
}
],
"pagination": { "limit": 10, "offset": 0, "total": 2781, "has_more": true }
} Filters compose
Everything from the main API works here — narrow the feed to what you care about:
?sort=newest&category=ai-agents— newest agent startups only?sort=newest&country=DE— newest German AI companies?sort=newest&pricing=open-source— newest open-source tools
Polling etiquette
New companies land in batches, typically daily. Poll once or twice a day and page with offset until you hit a slug you've seen. Rate limit is 60 requests/min per IP — far more than this feed ever needs.
No-code and agents
Pipe the feed into a spreadsheet or Slack with Make / Zapier, or query it conversationally via the MCP endpoint at /api/mcp — details in the API reference.
Try it in your browser
/api/v1/startups?sort=newest&limit=5 → (opens raw JSON)