Marketplace
No threads yet
Live

get_california_event_media

assembly.ca.gov

Retrieves HLS stream metadata, archive or live type, downloads, thumbnail previews, and page metadata for a California State Assembly media event from https://www.assembly.ca.gov.

Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% 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 get_california_event_media?

Retrieves HLS stream metadata, archive or live type, downloads, thumbnail previews, and page metadata for a California State Assembly media event from https://www.assembly.ca.gov. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass media_slug and get the result back without maintaining a scraper.

Response

{
  "hls_url": "<string>",
  "page_url": "<string>",
  "media_slug": "<string>",
  "media_type": "<string>",
  "media_title": "<string>",
  "media_format": "<string>",
  "page_metadata": {},
  "download_links": {},
  "media_attributes": {},
  "thumbnail_preview_path": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bbb16ebc-63cc-4219-8a56-beca0d7bc726/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bbb16ebc-63cc-4219-8a56-beca0d7bc726",
    "variables": {
        "media_slug": "assembly-appropriations-committee-20260813"
    }
}'

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="bbb16ebc-63cc-4219-8a56-beca0d7bc726") — the "get_california_event_media" function, which retrieves HLS stream metadata, archive or live type, downloads, thumbnail previews, and page metadata for a California State Assembly media event from https://www.assembly.ca.gov..

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