# Assembly — 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.

> Watch live and archived California State Assembly proceedings by accessing event schedules and video stream links in real-time. Browse upcoming hearings and sessions, then retrieve HLS streaming URLs to view legislative events directly.

**Category:** Government & Public Data | **Website:** [www.assembly.ca.gov/events](https://www.assembly.ca.gov/events) | **Docs:** [parse.bot/marketplace/7f54a636-db91-486b-b132-ce1a3553e66e/assembly-ca-gov-api](https://parse.bot/marketplace/7f54a636-db91-486b-b132-ce1a3553e66e/assembly-ca-gov-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-assembly-ca-gov-api-7f54a636/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_media

Get video stream metadata for a specific Assembly event media page. Returns the HLS m3u8 playlist URL, media type (archive or live), download links for video/audio/captions, thumbnail preview path, and page metadata. The media_slug is typically obtained from list_events past events or constructed from the event name and date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `media_slug` | string | Yes | URL slug of the media page (e.g. 'assembly-floor-session-20260806'). Obtained from list_events results or the /media/ URL path. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-assembly-ca-gov-api-7f54a636/get_event_media \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"media_slug":"<string>"}'
```

### list_events

List events from the California State Assembly. Returns today's events, upcoming events, past events with video links, or all combined. Past events include media_slug values that can be used with get_event_media to retrieve stream URLs. Today and upcoming events include structured start/end times when available via calendar data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `filter` | string | No | Filter events by time period. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-assembly-ca-gov-api-7f54a636/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"filter":"<string>"}'
```
