# A16zcrypto — 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 a16z Crypto's latest blog posts, portfolio companies, and team member information with powerful search and filtering capabilities. Get comprehensive details about their investments, team profiles, and company insights all in one place.

**Category:** Web3 & Onchain | **Website:** [a16zcrypto.com/](https://a16zcrypto.com/) | **Docs:** [parse.bot/marketplace/8b7f81bf-1e18-4bf0-ae94-c3df29d27b8a/a16zcrypto-com-api](https://parse.bot/marketplace/8b7f81bf-1e18-4bf0-ae94-c3df29d27b8a/a16zcrypto-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-a16zcrypto-com-api-8b7f81bf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_about_info

Get firm information from the a16z crypto about page. Returns the full text content describing the firm's mission, investments, and services.

**Estimated cost:** Metered

_No parameters required._

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

### get_all_posts

Fetch blog posts from a16zcrypto.com with optional filters for category, tag, format, and author. Returns up to 20 posts per page from the site's preloaded data. Only one filter can be applied at a time; priority is category > tag > format > author. Paginates via page counter over server-side preloaded data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `author` | string | No | Filter by author slug (e.g. 'chris-dixon'). |
| `category` | string | No | Filter by category slug (e.g. 'research', 'announcements', 'policy', 'company-building', 'tech-trends'). |
| `format` | string | No | Filter by format slug (e.g. 'articles', 'papers-journals-whitepapers', 'podcasts'). |
| `limit` | integer | No | Max results per page (max 20). |
| `page` | integer | No | Page number (0-indexed). |
| `tag` | string | No | Filter by tag slug (e.g. 'stablecoins', 'defi', 'zero-knowledge'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-a16zcrypto-com-api-8b7f81bf/get_all_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"author":"<string>","category":"<string>","format":"<string>","limit":"<integer>","page":"<integer>","tag":"<string>"}'
```

### get_portfolio_companies

List all portfolio companies and investment announcements from the a16z crypto portfolio page. Companies include external links; announcements link to related blog posts.

**Estimated cost:** Metered

_No parameters required._

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

### get_post_detail

Get detailed content of a specific blog post by slug. Tries multiple URL patterns (article, generic post, announcement) to locate the content. Returns the full HTML and plain text body, authors, and publication date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Post slug from the permalink URL (e.g. 'fund-5', 'investing-in-catena-part-ii'). |

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

### get_team_member_detail

Get detailed profile of a team member including their full biography and social links. Returns the member's name, bio text, social media URLs, and profile page URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Member slug from get_team_members results (e.g. 'chris-dixon', 'ali-yahya'). |

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

### get_team_members

List all team members from the a16z crypto team page with their names, roles, slugs, and profile URLs.

**Estimated cost:** Metered

_No parameters required._

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

### search_posts

Search blog posts by keyword. Performs case-insensitive text matching against post titles, excerpts, descriptions, categories, and tags from the most recent preloaded posts. Returns matching results paginated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results per page (max 20). |
| `page` | integer | No | Page number (0-indexed). |
| `query` | string | Yes | Search keyword to match against post content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-a16zcrypto-com-api-8b7f81bf/search_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
