search_movies_advanced
filmaffinity.comReturns advanced FilmAffinity movie search results from https://filmaffinity.com filtered by search fields, year range, country, and genre, with complete result metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_movies_advanced?
Returns advanced FilmAffinity movie search results from https://filmaffinity.com filtered by search fields, year range, country, and genre, with complete result metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, types, from_year, to_year, country, genre, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"query": "<string>",
"filters": {},
"results": [
{}
],
"page_size": 0,
"total_pages": 0,
"search_types": [
"<string>"
],
"has_next_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/94ddab5d-2818-4413-ac7b-04d1a45818fa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "94ddab5d-2818-4413-ac7b-04d1a45818fa",
"variables": {
"query": "The Matrix",
"types": null,
"from_year": 1900,
"to_year": 2026,
"country": "",
"genre": "",
"page": 1
}
}'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="94ddab5d-2818-4413-ac7b-04d1a45818fa") — the "search_movies_advanced" function, which returns advanced FilmAffinity movie search results from https://filmaffinity.com filtered by search fields, year range, country, and genre, with complete result metadata.. It takes query (str), types (list[str] | None), from_year (int), to_year (int), country (str), genre (str), page (int). Return the result as structured JSON.