# Accel — 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 detailed information about Accel's portfolio companies, including their investment details, sector classifications, partner information, and current status. Use this data to research Accel-backed startups, track investment trends, and identify companies operating in specific industries.

**Category:** Finance & Markets | **Website:** [www.accel.com/relationships](https://www.accel.com/relationships) | **Docs:** [parse.bot/marketplace/d6fa4d94-42d6-42c0-be1d-7887592e4001/accel-com-api](https://parse.bot/marketplace/d6fa4d94-42d6-42c0-be1d-7887592e4001/accel-com-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-accel-com-api-d6fa4d94/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_portfolio_companies

List all portfolio companies from Accel's website, paginated. Returns company name, website, investment round/stage, partner(s), sector(s), status (active/acquired/ipo/exited), and year of investment. Results are ordered alphabetically by company name. Auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based). |
| `page_size` | integer | No | Number of companies per page. Must be between 1 and 500. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-accel-com-api-d6fa4d94/list_portfolio_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>"}'
```
