# Latent — 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 Latent Space podcast episodes, newsletters, and full transcripts through search and browsing capabilities. Get detailed information about posts, including transcripts and homepage content, to stay updated on the latest discussions and insights.

**Category:** News & Media | **Website:** [latent.space/](https://latent.space/) | **Docs:** [parse.bot/marketplace/1e6f1712-ce2a-42af-96ca-78851351fb32/latent-space-api](https://parse.bot/marketplace/1e6f1712-ce2a-42af-96ca-78851351fb32/latent-space-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-latent-space-api-1e6f1712/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_homepage_data

Fetch featured and latest content from the Latent Space homepage, including content blocks, pinned posts, new posts, top posts, and recommendations. Takes no parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-latent-space-api-1e6f1712/get_homepage_data \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_post

Fetch full details of a single post by its slug, including the full body HTML content, all metadata, and podcast upload information where applicable.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The post slug from list_posts or search_posts results (e.g. 'andon', 'bad-envs'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-latent-space-api-1e6f1712/get_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_transcript

Retrieve the full timestamped transcript for a podcast episode. Returns an array of segments each with start/end timestamps, text, word-level timing, and speaker labels. Not all posts have transcripts; returns stale_input with kind 'input_not_found' when no transcript is available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The post slug of a podcast episode that has a transcript (from list_posts or search_posts results, e.g. 'andon', 'axiom'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-latent-space-api-1e6f1712/get_transcript \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_posts

Fetch a paginated list of posts from the Latent Space archive. Returns post summaries sorted by date or popularity. Supports filtering by content type (e.g. 'podcast'). Paginate via offset; each page returns up to `limit` items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results per page. |
| `offset` | integer | No | Number of items to skip for pagination. |
| `sort` | string | No | Sort order for results. |
| `type` | string | No | Content type filter. Known working value: 'podcast'. The upstream API may reject some type/sort combinations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-latent-space-api-1e6f1712/list_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","sort":"<string>","type":"<string>"}'
```

### search_posts

Search for posts by keyword across all Latent Space content. Returns matching posts sorted by date or popularity. An empty array is returned when offset exceeds available results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results per page. |
| `offset` | integer | No | Number of items to skip for pagination. |
| `query` | string | Yes | Search keyword. |
| `sort` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-latent-space-api-1e6f1712/search_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>","sort":"<string>"}'
```
