# Signalfire — 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 SignalFire's venture capital operations, including their investment team members, portfolio companies, and industry sectors they focus on. Use this data to research their investment strategy, identify key decision-makers, and understand their portfolio composition.

**Category:** Finance & Markets | **Website:** [www.signalfire.com/](https://www.signalfire.com/) | **Docs:** [parse.bot/marketplace/bec9e9cd-fef8-46ac-b870-b3c4ff0c7776/signalfire-com-api](https://parse.bot/marketplace/bec9e9cd-fef8-46ac-b870-b3c4ff0c7776/signalfire-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-signalfire-com-api-bec9e9cd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_firm_info

Returns SignalFire firm overview including investment thesis, philosophy, investment stages, sectors they invest in, contact information, and portfolio jobs URL. Aggregates data from the About and Sectors pages.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-signalfire-com-api-bec9e9cd/get_firm_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_portfolio

Lists all SignalFire portfolio companies with company name, website, founders, investment sectors, investment stage, and current status. Supports filtering by sector. Results are auto-paginated across all pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sector` | string | No | Filter companies by sector name (case-insensitive substring match). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-signalfire-com-api-bec9e9cd/list_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sector":"<string>"}'
```

### list_team

Lists all SignalFire team members including partners, advisors, and staff. Returns name, role, profile URL, and headshot image. Supports filtering by role keyword (e.g. 'Partner'). Results are auto-paginated across all pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `department` | string | No | Filter members by role keyword (case-insensitive substring match on role title, e.g. 'Partner', 'Engineer'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-signalfire-com-api-bec9e9cd/list_team \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"department":"<string>"}'
```
