Discover/Rebel Fund API
live

Rebel Fund APIrebelfund.vc

Access Rebel Fund's 250+ YC startup investments via API. Retrieve company names, websites, sectors, partners, and YC batch data from a single endpoint.

Endpoint health
monitored
list_portfolio
Checks pendingself-healing
Endpoints
1
Updated
4h ago

What is the Rebel Fund API?

The Rebel Fund API provides access to 250+ Y Combinator startup investments from Rebel Fund's portfolio through a single list_portfolio endpoint. Each company record includes the company name, website URL, YC batch round, sector, partner, investment status, and year. The endpoint supports both full aggregated retrieval and page-by-page pagination for flexible integration.

Try it
Page number to fetch (1-based). When 0 or omitted, all pages are fetched and aggregated into one response. Each page contains up to 24 companies.
api.parse.bot/scraper/9ecfa5c2-1ffa-43f8-9177-b6e3c74e4527/<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/9ecfa5c2-1ffa-43f8-9177-b6e3c74e4527/list_portfolio?page=0' \
  -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 rebelfund-vc-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: Rebel Fund portfolio API — list all YC-backed investments."""
from parse_apis.rebelfund_vc_api import RebelFund, ParseError

client = RebelFund()

# List all portfolio companies (auto-fetches all pages)
for company in client.companies.list(limit=5):
    print(company.name, company.website, company.year)

# Fetch a single company from the portfolio
first = client.companies.list(limit=1).first()
if first:
    print(f"First company: {first.name}, batch: {first.year}, site: {first.website}")

# Handle errors gracefully
try:
    for c in client.companies.list(page=1, limit=3):
        print(c.name, c.year)
except ParseError as exc:
    print(f"Error fetching portfolio: {exc}")

print("exercised: companies.list (all pages + single page)")
All endpoints · 1 totalmissing one? ·

List all portfolio companies from Rebel Fund. When called without a page parameter, fetches and aggregates all companies across all pages (250+ companies). When a specific page is provided, returns only that page of 24 companies. Each company includes its name, website URL, and YC batch code. Fields round, partner, sector, and status are not published on the site and are always null.

Input
ParamTypeDescription
pageintegerPage number to fetch (1-based). When 0 or omitted, all pages are fetched and aggregated into one response. Each page contains up to 24 companies.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of companies returned",
    "companies": "array of company objects with name, website, round, partner, sector, status, year"
  },
  "sample": {
    "data": {
      "total": 313,
      "companies": [
        {
          "name": "AccessOwl",
          "year": "S22",
          "round": null,
          "sector": null,
          "status": null,
          "partner": null,
          "website": "https://accessowl.io/"
        },
        {
          "name": "Airbyte",
          "year": "W20",
          "round": null,
          "sector": null,
          "status": null,
          "partner": null,
          "website": "https://airbyte.io/"
        }
      ]
    },
    "status": "success"
  }
}

About the Rebel Fund API

What the API Returns

The list_portfolio endpoint returns Rebel Fund's complete portfolio of Y Combinator-backed companies. Each company object in the response includes name, website, round (the YC batch code), partner, sector, status, and year. The top-level response also includes a total integer reflecting the count of companies returned in that call.

Pagination Behavior

The page parameter controls how the endpoint behaves. Omitting page or setting it to 0 triggers aggregation across all pages, returning the full portfolio in a single response — currently 250+ companies. Passing a specific page number (1-based) returns a subset of 24 companies for that page. Use paginated calls when you want to incrementally sync the portfolio or limit response size.

Data Coverage

All records come directly from Rebel Fund's published portfolio. The round field corresponds to YC batch identifiers (e.g., W21, S22), making it straightforward to filter companies by cohort. The sector field enables grouping by industry vertical, while partner indicates the Rebel Fund partner associated with each deal. status reflects the current investment status of each company.

Reliability & maintenance

The Rebel Fund API is a managed, monitored endpoint for rebelfund.vc — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rebelfund.vc 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 rebelfund.vc 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?+
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
  • Build a YC batch tracker filtering Rebel Fund portfolio companies by round (e.g., W22, S23).
  • Aggregate sector distribution of Rebel Fund investments using the sector field.
  • Monitor portfolio company websites for uptime or content changes using the website field.
  • Map partner deal flow by grouping companies by the partner field.
  • Cross-reference Rebel Fund portfolio data with other YC batch databases using round and name.
  • Track year-by-year investment activity by sorting or filtering on the year field.
  • Identify active vs. inactive portfolio companies using the status field.
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 Rebel Fund have an official developer API?+
No. Rebel Fund does not publish an official developer API or documented data feed for their portfolio. This Parse API is the structured programmatic interface for that data.
What does the `list_portfolio` endpoint return when no page parameter is provided?+
When page is omitted or set to 0, the endpoint aggregates all pages and returns the full portfolio in one response — currently 250+ companies — along with a total count. Passing a specific page number returns a fixed subset of 24 companies for that page.
Does the API return founder names, funding amounts, or valuations?+
Not currently. The API covers company name, website, YC batch round, sector, partner, status, and year. It does not expose founder profiles, headcount, funding amounts, or valuation data. You can fork the API on Parse and revise it to add endpoints targeting those data points if they become available from the source.
Can I filter the portfolio by sector or YC batch directly in the API call?+
The list_portfolio endpoint does not accept filter parameters for sector or round — it returns all companies (or a single page). Filtering by sector, round, or year needs to be applied client-side after retrieving the full dataset. You can fork the API on Parse and revise it to add server-side filtering parameters.
How current is the portfolio data?+
The data reflects Rebel Fund's publicly listed portfolio at the time of the most recent fetch. New YC batch additions or status changes on the Rebel Fund site will be reflected after the data is refreshed. There is no guaranteed real-time update cadence, so for time-sensitive applications, periodic re-fetching is advisable.
Page content last updated . Spec covers 1 endpoint from rebelfund.vc.
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.