# Nyassembly — 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 New York State Assembly's live and upcoming event schedule to stay informed about legislative sessions, hearings, and broadcasts. Access current meeting times, dates, and events directly from the official broadcasting system.

**Category:** Government & Public Data | **Website:** [nyassembly.gov/av/live/](https://nyassembly.gov/av/live/) | **Docs:** [parse.bot/marketplace/0eba8374-3a03-4fb2-a986-dcd240c8556f/nyassembly-gov-api](https://parse.bot/marketplace/0eba8374-3a03-4fb2-a986-dcd240c8556f/nyassembly-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-nyassembly-gov-api-0eba8374/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Returns currently live events and upcoming scheduled events for the NY State Assembly. When no date is provided, returns live events and all upcoming events (with today's date as reference). When a date is provided, returns live events and filters upcoming events to only those scheduled on that specific day. Events include broadcasts of Assembly sessions, hearings, and other legislative proceedings. The Assembly's schedule varies; during recess periods or when no events are scheduled, the arrays will be empty.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date to check for upcoming events in YYYYMMDD format (e.g. 20260821). When omitted, returns all upcoming events with today as the reference date. |

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