Marketplace
No threads yet
Live

list_california_events

assembly.ca.gov

Lists today's, upcoming, and past California State Assembly proceedings from https://www.assembly.ca.gov, including schedule details, calendar times, and archived media slugs.

Parameters5
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 list_california_events?

Lists today's, upcoming, and past California State Assembly proceedings from https://www.assembly.ca.gov, including schedule details, calendar times, and archived media slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, page, limit, title, date_range and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "past": [
    {}
  ],
  "limit": 0,
  "today": [
    {}
  ],
  "counts": {},
  "category": "<string>",
  "upcoming": [
    {}
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/16a0c9be-0cb4-446c-8157-c0ba3312d53f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "16a0c9be-0cb4-446c-8157-c0ba3312d53f",
    "variables": {
        "category": "all",
        "page": 0,
        "limit": 20,
        "title": "",
        "date_range": ""
    }
}'

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="16a0c9be-0cb4-446c-8157-c0ba3312d53f") — the "list_california_events" function, which lists today's, upcoming, and past California State Assembly proceedings from https://www.assembly.ca.gov, including schedule details, calendar times, and archived media slugs..

It takes category (str), page (int), limit (int), title (str), date_range (str). Return the result as structured JSON.