Nexusvp APInexusvp.com ↗
Access Nexus Venture Partners' full portfolio via API. Retrieve company names, websites, sectors, investment years, partners, and status (active, exited, IPO).
What is the Nexusvp API?
The Nexus VP API exposes one endpoint — list_companies — that returns all portfolio companies from Nexus Venture Partners, with 7 structured fields per company including name, website, sector, investment round, lead partner, status, and year. You can filter the full portfolio grid by sector (A.I., Fintech, Enterprise, Consumer), company status (active, exited, ipo), or geography (U.S., India) to narrow results without any client-side processing.
curl -X GET 'https://api.parse.bot/scraper/8dd553ae-2470-4081-9c73-574476f1ab67/list_companies?sector=A.I.&status=active&location=U.S.' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace nexusvp-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: Nexus Venture Partners portfolio — list, filter by sector and status."""
from parse_apis.nexusvp_com_api import NexusVP, CompanyStatus, Sector, Location, ParseError
client = NexusVP()
# List all portfolio companies (capped)
for company in client.companies.list(limit=5):
print(company.name, company.sector, company.year)
# Filter by sector using typed enum
fintech = client.companies.list(sector=Sector.FINTECH, limit=3)
for company in fintech:
print(company.name, company.website, company.status)
# Filter by status using typed enum
exited = client.companies.list(status=CompanyStatus.EXITED, limit=3)
for company in exited:
print(company.name, company.partner, company.year)
# Filter by location
india = client.companies.list(location=Location.INDIA, limit=3)
for company in india:
print(company.name, company.sector)
# Typed error handling
try:
for company in client.companies.list(status=CompanyStatus.IPO, limit=5):
print(company.name, company.sector)
except ParseError as exc:
print(f"Error: {exc}")
print("exercised: companies.list / sector filter / status filter / location filter")
List all portfolio companies from Nexus Venture Partners. Returns the full portfolio grid with standardized fields for each company. Optionally filter by sector, location, or status. Results are returned in a single page containing all matching companies.
| Param | Type | Description |
|---|---|---|
| sector | string | Filter by sector/category. Matches against company tags. Accepted values: A.I., Consumer, Enterprise, Fintech, Open Source, Healthcare, Data & AI, Business Services. |
| status | string | Filter by company status. Accepted values: active, exited, ipo. |
| location | string | Filter by company location. Accepted values: U.S., India. |
{
"type": "object",
"fields": {
"total": "integer",
"companies": "array of company objects with fields: name, website, round, partner, sector, status, year"
},
"sample": {
"data": {
"total": 144,
"companies": [
{
"name": "abCoffee",
"year": "2024",
"round": null,
"sector": "Consumer",
"status": "active",
"partner": "Suvir Sujan",
"website": "https://www.abcoffee.in/"
}
]
},
"status": "success"
}
}About the Nexusvp API
What the API Returns
The list_companies endpoint returns the complete Nexus Venture Partners portfolio as a single-page response. Each company object includes name, website, round, partner, sector, status, and year. The total field at the top level gives the count of matched companies. This covers the full portfolio grid as published on nexusvp.com/companies/.
Filtering Options
Three optional parameters let you slice the portfolio without post-processing. The sector parameter matches against company tags and accepts: A.I., Consumer, Enterprise, and Fintech. The status parameter accepts active, exited, or ipo to differentiate current investments from exits or public companies. The location parameter accepts U.S. or India, reflecting the firm's primary geographic focus areas.
Response Shape and Coverage
All results are returned in a single response — there is no pagination. Each company entry includes the assigned partner (the Nexus GP associated with the investment), the round label for the investment stage, and the year of investment. The website field provides a direct link to each portfolio company's site, making it straightforward to cross-reference company records against other data sources.
The Nexusvp API is a managed, monitored endpoint for nexusvp.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nexusvp.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official nexusvp.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Track how Nexus VP's sector allocation shifts over time using the
sectorandyearfields - Build a list of Nexus-backed fintech companies by filtering
list_companieswith sector=Fintech - Identify which Nexus partners lead the most deals by aggregating the
partnerfield across all results - Monitor portfolio exits and IPOs by filtering on status=exited or status=ipo
- Compare U.S. vs. India investment counts and sectors using the
locationfilter - Enrich a CRM or investor database with verified
websiteandrounddata for Nexus portfolio companies - Research early-stage AI bets from Nexus by combining sector=A.I. with
yearsorting
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Nexus Venture Partners have an official developer API?+
What does the `status` field distinguish, and what values are returned?+
status field classifies each portfolio company as active (current investment), exited (acquisition or write-off), or ipo (publicly listed). You can pass any of these values to the status filter parameter in list_companies to retrieve only that subset of the portfolio.Does the API return contact information, founder names, or funding amounts for portfolio companies?+
name, website, round, partner, sector, status, and year — the fields present in the Nexus portfolio grid. Founder names, funding amounts, and contact details are not included. You can fork this API on Parse and revise it to add an endpoint targeting individual company detail pages if that data becomes available.Are there sector values beyond A.I., Consumer, Enterprise, and Fintech?+
sector filter are A.I., Consumer, Enterprise, and Fintech, matching the tags used in the Nexus portfolio grid. If you omit the sector parameter, list_companies returns companies from all sectors. Additional sector tags beyond these four are not currently exposed as filter values. You can fork this API on Parse and revise it to surface any additional tagging that appears in the source.Does the API paginate results or return everything in one response?+
total field tells you how many records matched your filters.