# Palegis — 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 current meeting schedules for Pennsylvania's House and Senate chambers to stay informed about upcoming legislative sessions. Find out when and where committee meetings and floor sessions are scheduled across both chambers.

**Category:** Government & Public Data | **Website:** [www.palegis.us/](https://www.palegis.us/) | **Docs:** [parse.bot/marketplace/1ecd7df5-3fd2-49a5-ac6c-e5cf290cec43/palegis-us-api](https://parse.bot/marketplace/1ecd7df5-3fd2-49a5-ac6c-e5cf290cec43/palegis-us-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-palegis-us-api-1ecd7df5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Returns the current session status and schedule for the specified chamber of the Pennsylvania General Assembly. Includes the session status (e.g. will_reconvene, in_session), the next session date and time, any session type or location remarks, whether a live feed link is available on the session page, and whether a livestream is available for the specified date. Makes one request to the chamber's session page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `chamber` | string | Yes | The legislative chamber to get session info for. |
| `date` | string | No | Date to check livestream availability for, in YYYYMMDD format (e.g. 20260909). Defaults to today's date if omitted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-palegis-us-api-1ecd7df5/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"chamber":"<string>","date":"<string>"}'
```
