list_video_archive
flsenate.govBrowses the Florida Senate video archive on https://www.flsenate.gov with 25 newest-first results per page and optional date, chamber, or committee/category filters. It returns each video's date, title, description, duration, player URL, and thumbnail details; the site does not support keyword search.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_video_archive?
Browses the Florida Senate video archive on https://www.flsenate.gov with 25 newest-first results per page and optional date, chamber, or committee/category filters. It returns each video's date, title, description, duration, player URL, and thumbnail details; the site does not support keyword search. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, date_from, date_to, chamber, category and get the result back without maintaining a scraper.
Response
{
"page": 0,
"order": "<string>",
"results": [
{
"date": "<string>",
"title": "<string>",
"duration": "<string>",
"video_id": "<string>",
"video_url": "<string>",
"description": "<string>",
"thumbnail_alt": "<string>",
"thumbnail_url": "<string>"
}
],
"has_next": true,
"page_size": 0,
"total_pages": 0,
"has_previous": true,
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/67653aea-7a0d-4d41-aa19-221b56b2eee1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "67653aea-7a0d-4d41-aa19-221b56b2eee1",
"variables": {
"page": 1,
"date_from": "",
"date_to": "",
"chamber": "",
"category": ""
}
}'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="67653aea-7a0d-4d41-aa19-221b56b2eee1") — the "list_video_archive" function, which browses the Florida Senate video archive on https://www.flsenate.gov with 25 newest-first results per page and optional date, chamber, or committee/category filters. It returns each video's date, title, description, duration, player URL, and thumbnail details; the site does not support keyword search.. It takes page (int), date_from (str), date_to (str), chamber (str), category (str). Return the result as structured JSON.