GET
/api/v1/startupsList startups (one row per company, most-recent round).
Parameters
| sector | string[] | Repeatable. e.g. ?sector=Fintech§or=SaaS |
| city | string | City name (e.g. Bangalore). |
| stage | string[] | Repeatable. |
| page | number | Default 1. |
| limit | number | Default 20, max 100. |
Example request
curl 'https://ind-startup-funding.vercel.app/api/v1/startups?sector=Fintech&city=Bangalore&limit=2' \ -H 'X-API-Key: ifk_...'
Example response
{
"data": [
{
"company": "ExampleCo",
"latest_deal_id": "deal_123",
"latest_stage": "Series A",
"latest_amount_inr": 8400,
"latest_deal_date": "2025-09-12",
"sectors": ["Fintech"],
"city": "Bangalore"
}
],
"meta": { "total": 47, "page": 1, "limit": 2, "version": "1", "coverage_note": "..." }
}