Marketplace
No threads yet
Live

get_movie_rating_distribution

filmaffinity.com

Returns a movie rating, vote count, and score-by-score vote distribution from https://filmaffinity.com.

Parameters1
Runs7
Updated3d ago
Degraded7 runs · 71.4% 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 get_movie_rating_distribution?

Returns a movie rating, vote count, and score-by-score vote distribution from https://filmaffinity.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass movie_id and get the result back without maintaining a scraper.

Response

{
  "movie": {
    "title": "<string>",
    "rating": 0,
    "film_id": "<string>",
    "movie_url": "<string>",
    "vote_count": 0,
    "distribution": {}
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/791b9841-e0c4-4d33-ace1-66a0a292fba1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "791b9841-e0c4-4d33-ace1-66a0a292fba1",
    "variables": {
        "movie_id": "932476"
    }
}'

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="791b9841-e0c4-4d33-ace1-66a0a292fba1") — the "get_movie_rating_distribution" function, which returns a movie rating, vote count, and score-by-score vote distribution from https://filmaffinity.com..

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