get_video_metadata
flsenate.govReturns full metadata for a single Florida Senate video from https://www.flsenate.gov, including title, description, duration, parsed date/category/time, and HLS stream URLs when present. Accepts either a numeric VideoPlayer ID or a full VideoPlayer URL.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_video_metadata?
Returns full metadata for a single Florida Senate video from https://www.flsenate.gov, including title, description, duration, parsed date/category/time, and HLS stream URLs when present. Accepts either a numeric VideoPlayer ID or a full VideoPlayer URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass video_id_or_url and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"title": "<string>",
"category": "<string>",
"date_iso": "<string>",
"duration": "<string>",
"video_id": 0,
"video_url": "<string>",
"start_time": "<string>",
"description": "<string>",
"hls_stream_url": "<string>",
"hls_stream_urls": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/af8fb6f4-53a4-4aa7-8a72-b1fdaa3684d2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "af8fb6f4-53a4-4aa7-8a72-b1fdaa3684d2",
"variables": {
"video_id_or_url": "6345"
}
}'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="af8fb6f4-53a4-4aa7-8a72-b1fdaa3684d2") — the "get_video_metadata" function, which returns full metadata for a single Florida Senate video from https://www.flsenate.gov, including title, description, duration, parsed date/category/time, and HLS stream URLs when present. Accepts either a numeric VideoPlayer ID or a full VideoPlayer URL.. It takes video_id_or_url (str). Return the result as structured JSON.