Discover/Nexusvp API
live

Nexusvp APInexusvp.com

Access Nexus Venture Partners' full portfolio via API. Retrieve company names, websites, sectors, investment years, partners, and status (active, exited, IPO).

Endpoint health
verified 1d ago
list_companies
1/1 passing latest checkself-healing
Endpoints
1
Updated
1d ago

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.

Try it
Filter by sector/category. Matches against company tags. Accepted values: A.I., Consumer, Enterprise, Fintech, Open Source, Healthcare, Data & AI, Business Services.
Filter by company status. Accepted values: active, exited, ipo.
Filter by company location. Accepted values: U.S., India.
api.parse.bot/scraper/8dd553ae-2470-4081-9c73-574476f1ab67/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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")
All endpoints · 1 totalmissing one? ·

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.

Input
ParamTypeDescription
sectorstringFilter by sector/category. Matches against company tags. Accepted values: A.I., Consumer, Enterprise, Fintech, Open Source, Healthcare, Data & AI, Business Services.
statusstringFilter by company status. Accepted values: active, exited, ipo.
locationstringFilter by company location. Accepted values: U.S., India.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
1d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track how Nexus VP's sector allocation shifts over time using the sector and year fields
  • Build a list of Nexus-backed fintech companies by filtering list_companies with sector=Fintech
  • Identify which Nexus partners lead the most deals by aggregating the partner field 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 location filter
  • Enrich a CRM or investor database with verified website and round data for Nexus portfolio companies
  • Research early-stage AI bets from Nexus by combining sector=A.I. with year sorting
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Nexus Venture Partners have an official developer API?+
No. Nexus Venture Partners does not publish a public developer API or data feed for their portfolio. This Parse API provides structured access to the portfolio data available on nexusvp.com/companies/.
What does the `status` field distinguish, and what values are returned?+
The 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?+
Not currently. The API returns 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?+
The accepted values for the 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?+
All matching companies are returned in a single response. There is no pagination, cursor, or page parameter. The total field tells you how many records matched your filters.
Page content last updated . Spec covers 1 endpoint from nexusvp.com.
Related APIs in FinanceSee all →
fred.stlouisfed.org API
Access data from fred.stlouisfed.org.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
rba.gov.au API
Access Reserve Bank of Australia data including CPI inflation (current and historical), housing and business lending rates, AUD exchange rates, monetary policy/cash rate changes, and the RBA balance sheet.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
data.ecb.europa.eu API
Access official European Central Bank statistical series and observations to retrieve economic data like exchange rates, interest rates, and monetary aggregates. Browse available dataflows and retrieve specific time series data to analyze ECB's published economic indicators.
banks.data.fdic.gov API
Search FDIC-insured banks by location or institution, and access detailed information about their financial performance, merger history, deposit demographics, and regulatory changes. Get comprehensive data on bank failures, acquisitions, and historical financial trends to research institutions and analyze the banking landscape.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
Nexus Venture Partners Portfolio API · Parse