# Legis — 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 the Georgia General Assembly in real-time by checking the livestream schedule for committee meetings, floor sessions, and other legislative events with complete broadcast information. Plan your viewing by accessing current schedules and staying up-to-date on when sessions are scheduled to air.

**Category:** Government & Public Data | **Website:** [www.legis.ga.gov/video/all?utm_source=chatgpt.com](https://www.legis.ga.gov/video/all?utm_source=chatgpt.com) | **Docs:** [parse.bot/marketplace/90ab7c8b-e97a-4b7a-9edf-6cd3475fe83d/legis-ga-gov-api](https://parse.bot/marketplace/90ab7c8b-e97a-4b7a-9edf-6cd3475fe83d/legis-ga-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-legis-ga-gov-api-90ab7c8b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Returns the livestream schedule for a given date. Each item includes the meeting subject, start time, location, chamber, broadcast status, and livestream URL. When no meetings are scheduled for the requested date, returns an empty list. The API returns all meetings for that specific calendar day.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in YYYYMMDD format (e.g. 20250310). When omitted, defaults to today's date. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-legis-ga-gov-api-90ab7c8b/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```
