# Rebelfund — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access Rebel Fund's complete portfolio of Y Combinator startup investments and discover details about each company including their names, websites, and YC batch information. Browse through their curated list of funded startups to research investment trends and identify emerging companies in the YC ecosystem.

**Category:** Finance & Markets | **Website:** [www.rebelfund.vc/](https://www.rebelfund.vc/) | **Docs:** [parse.bot/marketplace/1b15b620-6c8c-4e42-a834-5f10f09eaba8/rebelfund-vc-api](https://parse.bot/marketplace/1b15b620-6c8c-4e42-a834-5f10f09eaba8/rebelfund-vc-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-rebelfund-vc-api-1b15b620/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_portfolio

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | 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. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-rebelfund-vc-api-1b15b620/list_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
