Sliq APIsg001-harmony.sliq.net ↗
Check the upcoming livestream schedule for Colorado General Assembly sessions and committee meetings directly from their Harmony video system. Find event details like dates, times, and session information to plan when to watch legislative proceedings live.
curl -X GET 'https://api.parse.bot/scraper/48b9cd68-abd6-4f56-956d-3969d6f4ee43/get_schedule?date=20260812' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetches the schedule of upcoming legislative livestreams for a given date. Returns all events visible on that date's schedule page, which typically includes events from the requested date forward across multiple days. Each event includes title, location, scheduled time, duration, status, and any associated handout documents. Makes one request per event to retrieve full detail from the upstream API.
| Param | Type | Description |
|---|---|---|
| daterequired | string | Date in YYYYMMDD format (e.g. 20260812). Determines which upcoming events page to load. |
{
"type": "object",
"fields": {
"date": "the requested date string echoed back",
"events": "array of event objects with full metadata for each scheduled livestream"
},
"sample": {
"data": {
"date": "20260812",
"events": [
{
"title": "House Committee on Ethics [Aug 13, 2026]",
"status": "Not Started",
"event_id": "18933",
"handouts": [
{
"id": 27707,
"name": "Agenda",
"filename": "August 13 Agenda.pdf"
}
],
"location": "HCR 0112",
"actual_end": null,
"description": "Duration is only an estimate.",
"actual_start": null,
"last_modified": "2026-08-06T11:04:39.0000000",
"scheduled_date": "Thursday, Aug 13, 2026",
"scheduled_time": "8:00 AM - 12:00 PM",
"scheduled_start": "2026-08-13T08:00:00.0000000",
"scheduled_duration": "4 Hours"
}
]
},
"status": "success"
}
}About the Sliq API
The Sliq API on Parse exposes 1 endpoint for the publicly available data on sg001-harmony.sliq.net. 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.