Marketplace
No threads yet
Live

search_titles

filmaffinity.com

Searches https://filmaffinity.com for movies and TV shows by title. Returns matching FilmAffinity records with IDs, titles, years, directors, cast, country, and source links.

Parameters1
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_titles?

Searches https://filmaffinity.com for movies and TV shows by title. Returns matching FilmAffinity records with IDs, titles, years, directors, cast, country, and source links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "results": [
    {
      "cast": [
        "<string>"
      ],
      "year": 0,
      "title": "<string>",
      "country": "<string>",
      "film_id": "<string>",
      "director": [
        "<string>"
      ],
      "movie_url": "<string>",
      "poster_url": "<string>",
      "country_code": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3567bf33-94e0-421b-a255-aae2c818bebf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3567bf33-94e0-421b-a255-aae2c818bebf",
    "variables": {
        "query": "The Matrix"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="3567bf33-94e0-421b-a255-aae2c818bebf") — the "search_titles" function, which searches https://filmaffinity.com for movies and TV shows by title. Returns matching FilmAffinity records with IDs, titles, years, directors, cast, country, and source links..

It takes query (str). Return the result as structured JSON.