list_weekly_box_office
filmaffinity.comReturns current weekly US box office rankings from https://filmaffinity.com with rank, film identifiers, genre, weeks in theaters, and exact weekend and total grosses.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_weekly_box_office?
Returns current weekly US box office rankings from https://filmaffinity.com with rank, film identifiers, genre, weeks in theaters, and exact weekend and total grosses. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"count": 0,
"market": "<string>",
"period": "<string>",
"currency": "<string>",
"rankings": [
{
"rank": 0,
"genre": "<string>",
"title": "<string>",
"film_id": "<string>",
"film_url": "<string>",
"total_gross": 0,
"weekend_gross": 0,
"weeks_in_theaters": 0,
"total_gross_display": "<string>",
"weekend_gross_display": "<string>"
}
],
"source_url": "<string>",
"updated_weekly": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/23c10c53-3b5e-4668-9cbe-6ba80194767a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "23c10c53-3b5e-4668-9cbe-6ba80194767a",
"variables": {}
}'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="23c10c53-3b5e-4668-9cbe-6ba80194767a") — the "list_weekly_box_office" function, which returns current weekly US box office rankings from https://filmaffinity.com with rank, film identifiers, genre, weeks in theaters, and exact weekend and total grosses.. It takes no parameters. Return the result as structured JSON.