# Founders Inc — 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.

> Retrieve detailed information about companies in the Founders, Inc. portfolio, including their name, description, domain, industry, founding year, team size, and founders, with the ability to search and filter by specific criteria. Access comprehensive company profiles to discover investment opportunities and learn about portfolio companies at a glance.

**Category:** Business Directories | **Website:** [f.inc/portfolio](https://f.inc/portfolio) | **Docs:** [parse.bot/marketplace/b68aded9-03c5-42ff-8fb9-523fb6114010/f-inc-api](https://parse.bot/marketplace/b68aded9-03c5-42ff-8fb9-523fb6114010/f-inc-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-f-inc-api-b68aded9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company

Get detailed information about a specific portfolio company by its URL slug.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the company (e.g. 'zeit-medical', 'adaptyv-bio'). Corresponds to the path segment in the company URL https://f.inc/portfolio/<slug>/. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-f-inc-api-b68aded9/get_company \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_portfolio

Get all 177 portfolio companies from Founders, Inc. with their details including name, tagline, description, domain, URL, industry, year founded, team size, and founders. Results are sorted alphabetically by company name.

**Estimated cost:** Metered

_No parameters required._

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

### search_portfolio

Search portfolio companies by keyword. Matches against company name, tagline, description, industry, and domain. Results are sorted alphabetically by company name.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to match against company name, tagline, description, industry, and domain. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-f-inc-api-b68aded9/search_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
