get_colorado_general_assembly_livestream_schedule
sg001-harmony.sliq.netReturns the upcoming Colorado General Assembly livestream schedule visible from a requested date, including full event details, agenda items, speakers, and handout documents. Reads https://sg001-harmony.sliq.net.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_colorado_general_assembly_livestream_schedule?
Returns the upcoming Colorado General Assembly livestream schedule visible from a requested date, including full event details, agenda items, speakers, and handout documents. Reads https://sg001-harmony.sliq.net. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date and get the result back without maintaining a scraper.
Response
{
"events": [
{
"title": "<string>",
"status": "<string>",
"event_id": "<string>",
"handouts": [
{}
],
"location": "<string>",
"speakers": [
{}
],
"description": "<string>",
"modified_at": "<string>",
"agenda_items": [
{}
],
"event_page_url": "<string>",
"scheduled_date": "<string>",
"scheduled_time": "<string>",
"scheduled_start": "<string>",
"scheduled_duration": "<string>",
"meeting_status_code": 0,
"scheduled_duration_seconds": 0
}
],
"event_count": 0,
"schedule_url": "<string>",
"requested_date": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/580638e9-814c-44d4-9901-7cd80bfbb8ba/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "580638e9-814c-44d4-9901-7cd80bfbb8ba",
"variables": {
"date": "2026-08-12"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="580638e9-814c-44d4-9901-7cd80bfbb8ba") — the "get_colorado_general_assembly_livestream_schedule" function, which returns the upcoming Colorado General Assembly livestream schedule visible from a requested date, including full event details, agenda items, speakers, and handout documents. Reads https://sg001-harmony.sliq.net.. It takes date (str). Return the result as structured JSON.