get_live_media_schedule
senate.texas.govReturns today's Texas Senate live broadcasts in a normalized LiveMediaScheduleItem schema, including Central-to-UTC start times and extracted m3u8 video URLs when a player is active. Reads https://www.senate.texas.gov.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_live_media_schedule?
Returns today's Texas Senate live broadcasts in a normalized LiveMediaScheduleItem schema, including Central-to-UTC start times and extracted m3u8 video URLs when a player is active. Reads https://www.senate.texas.gov. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, language and get the result back without maintaining a scraper.
Response
{
"note": "<string>",
"schedule": [
{
"date": "<string>",
"time": "<string>",
"type": "<string>",
"title": "<string>",
"format": "<string>",
"status": "<string>",
"category": "<string>",
"duration": "<string>",
"event_id": "<string>",
"is_early": true,
"location": {
"name": "<string>"
},
"thumbnail": "<string>",
"program_id": "<string>",
"stream_url": "<string>",
"video_file": "<string>",
"description": "<string>",
"series_title": "<string>",
"start_time_utc": "<string>",
"duration_minutes": 0,
"original_start_date": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/9a09e3e2-e946-47b8-8c45-a4703da8d3a5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9a09e3e2-e946-47b8-8c45-a4703da8d3a5",
"variables": {
"date": "today",
"language": "en"
}
}'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="9a09e3e2-e946-47b8-8c45-a4703da8d3a5") — the "get_live_media_schedule" function, which returns today's Texas Senate live broadcasts in a normalized LiveMediaScheduleItem schema, including Central-to-UTC start times and extracted m3u8 video URLs when a player is active. Reads https://www.senate.texas.gov.. It takes date (str), language (str). Return the result as structured JSON.