Marketplace
No threads yet
Live

list_user_reviews

filmaffinity.com

Returns paginated Spanish-language movie reviews from https://filmaffinity.com with titles, text, authors, ratings, dates, helpfulness, media, and profile metadata.

Parameters2
Runs8
Updated3d ago
Degraded8 runs · 87.5% 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 list_user_reviews?

Returns paginated Spanish-language movie reviews from https://filmaffinity.com with titles, text, authors, ratings, dates, helpfulness, media, and profile metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass film_id, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "film_id": "<string>",
  "reviews": [
    {
      "date": "<string>",
      "text": "<string>",
      "title": "<string>",
      "author": "<string>",
      "images": [
        {
          "alt": "<string>",
          "url": "<string>",
          "caption": "<string>",
          "width_label": "<string>"
        }
      ],
      "rating": 0,
      "author_id": "<string>",
      "review_id": "<string>",
      "review_url": "<string>",
      "helpful_total": 0,
      "helpful_votes": 0,
      "author_location": "<string>",
      "helpful_percent": 0,
      "author_profile_url": "<string>",
      "author_social_links": [
        {
          "url": "<string>",
          "label": "<string>"
        }
      ],
      "author_ratings_count": 0,
      "author_reviews_count": 0,
      "canonical_review_url": "<string>"
    }
  ],
  "has_next": true,
  "movie_url": "<string>",
  "next_page": 0,
  "page_size": 0,
  "movie_year": 0,
  "source_url": "<string>",
  "movie_title": "<string>",
  "total_pages": 0,
  "has_previous": true,
  "previous_page": 0,
  "total_reviews": 0,
  "movie_image_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a5e1d3df-2aac-4645-8c61-f43992132f7d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a5e1d3df-2aac-4645-8c61-f43992132f7d",
    "variables": {
        "film_id": "932476",
        "page": 1
    }
}'

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="a5e1d3df-2aac-4645-8c61-f43992132f7d") — the "list_user_reviews" function, which returns paginated Spanish-language movie reviews from https://filmaffinity.com with titles, text, authors, ratings, dates, helpfulness, media, and profile metadata..

It takes film_id (str), page (int). Return the result as structured JSON.