Palegis APIpalegis.us ↗
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.
curl -X GET 'https://api.parse.bot/scraper/7450d1fe-7a53-480d-a39e-0c96afd6e686/get_schedule?chamber=house' \ -H 'X-API-Key: $PARSE_API_KEY'
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, and whether a live feed is available. Makes one request to the chamber's session page.
| Param | Type | Description |
|---|---|---|
| chamberrequired | string | The legislative chamber to get session info for. |
{
"type": "object",
"fields": {
"date": "Date of the next or current session (e.g. 'Monday September 28, 2026')",
"time": "Time of the next or current session (e.g. '1:00 PM')",
"status": "Current session status: will_reconvene, in_session, adjourned, or unknown",
"chamber": "The chamber queried (house or senate)",
"location": "Session location if specified (e.g. 'Congress Hall, Philadelphia'), null otherwise",
"status_text": "Full status text as displayed on the page",
"session_type": "Type of session if specified (e.g. 'Voting Session*'), null otherwise",
"has_live_feed": "Whether a live feed link is available for the session"
},
"sample": {
"data": {
"date": "Wednesday September 9, 2026",
"time": "5:45 PM",
"status": "will_reconvene",
"chamber": "house",
"location": "Congress Hall, Philadelphia",
"status_text": "The House will reconvene on Wednesday September 9, 2026 at 5:45 PM Voting Session* (Congress Hall, Philadelphia)",
"session_type": "Voting Session*",
"has_live_feed": true
},
"status": "success"
}
}About the Palegis API
The Palegis API on Parse exposes 1 endpoint for the publicly available data on palegis.us. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.