get_state_legislature_feeds
peaceisactive.comReturns state legislature live-feed links and descriptions for a two-letter US state abbreviation, together with federal House, Senate, Supreme Court, and C-SPAN feeds read from https://www.peaceisactive.com.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_state_legislature_feeds?
Returns state legislature live-feed links and descriptions for a two-letter US state abbreviation, together with federal House, Senate, Supreme Court, and C-SPAN feeds read from https://www.peaceisactive.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass state_abbreviation and get the result back without maintaining a scraper.
Response
{
"state_name": "<string>",
"state_feeds": [
{
"urls": [
"<string>"
],
"description": "<string>",
"institution": "<string>"
}
],
"federal_feeds": [
{
"urls": [
"<string>"
],
"description": "<string>",
"institution": "<string>"
}
],
"source_page_url": "<string>",
"state_abbreviation": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/7f15e8d2-398a-40a1-934a-5b6518995cd2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7f15e8d2-398a-40a1-934a-5b6518995cd2",
"variables": {
"state_abbreviation": "CA"
}
}'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="7f15e8d2-398a-40a1-934a-5b6518995cd2") — the "get_state_legislature_feeds" function, which returns state legislature live-feed links and descriptions for a two-letter US state abbreviation, together with federal House, Senate, Supreme Court, and C-SPAN feeds read from https://www.peaceisactive.com.. It takes state_abbreviation (str). Return the result as structured JSON.