Marketplace
No threads yet
Live

list_broadcast_streams

house.texas.gov

Returns currently published Texas House broadcast events and available HLS stream URLs from https://www.house.texas.gov. Optionally filters the unpaginated event list by date.

Parameters1
Runs9
Updated10d ago
Failing9 runs · 88.8% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_broadcast_streams?

Returns currently published Texas House broadcast events and available HLS stream URLs from https://www.house.texas.gov. Optionally filters the unpaginated event list by date. 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

{
  "count": 0,
  "events": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cff9b398-4f0e-456d-9652-84f9e0949b27/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cff9b398-4f0e-456d-9652-84f9e0949b27",
    "variables": {
        "date": ""
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="cff9b398-4f0e-456d-9652-84f9e0949b27") — the "list_broadcast_streams" function, which returns currently published Texas House broadcast events and available HLS stream URLs from https://www.house.texas.gov. Optionally filters the unpaginated event list by date..

It takes date (str). Return the result as structured JSON.