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

> Check the Illinois House of Representatives' current session status, upcoming hearings, and official bulletins to stay informed about legislative activities. Plan your civic engagement or track legislative proceedings with real-time schedule information from the state's general assembly.

**Category:** Government & Public Data | **Website:** [www.ilga.gov/House/AudioVideo?](https://www.ilga.gov/House/AudioVideo?) | **Docs:** [parse.bot/marketplace/e29e20a8-24d3-4129-baf7-3e4ee8dd76b4/ilga-gov-api](https://parse.bot/marketplace/e29e20a8-24d3-4129-baf7-3e4ee8dd76b4/ilga-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-ilga-gov-api-e29e20a8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Retrieves the Illinois House schedule page for a given date. Returns session schedule status (in session or not, next session date), daily calendar info, house bulletins, and any scheduled committee hearings for today and the week. Hearing items conform to the LiveMediaScheduleItem schema with fields like time, date, title, status, location, url, category, etc. Fields without source data are returned as null. The page always reflects the server's current state; the date parameter is passed to the upstream URL.

**Estimated cost:** Metered

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

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