Metacritic Scraper

ENDPOINTS
GET/titles/scores

Scores

Get just the Metascore and user score of any movie, show or game (per platform for games).

QUERY PARAMS

Movie, TV show or game as <type>/<slug> (type is movie, tv or game), or any metacritic.com title link.

Examples:

  • Movie: movie/oppenheimer
  • TV show: tv/silicon-valley
  • Game: game/elden-ring
  • URL: https://www.metacritic.com/movie/oppenheimer/

Game platform, as a name, short alias or id (games only; ignored for movies and shows). See /browse/filters?type=game for the full list.

Examples: ps5, pc, switch, xbox-series-x

{
  "id": 2000555244,
  "type": "movie",
  "title": "Dune: Part Two",
  "slug": "dune-part-two",
  "link": "https://www.metacritic.com/movie/dune-part-two/",
  "release_date": "2024-03-01",
  "metascore": {
    "score": 79,
    "max": 100,
    "review_count": 62,
    "positive_count": 54,
    "neutral_count": 7,
    "negative_count": 1,
    "sentiment": "Generally favorable",
    "link": "https://www.metacritic.com/movie/dune-part-two/critic-reviews/"
  },
  "user_score": {
    "score": 8.3,
    "max": 10,
    "review_count": 1745,
    "positive_count": 1507,
    "neutral_count": 119,
    "negative_count": 119,
    "sentiment": "Universal acclaim",
    "link": "https://www.metacritic.com/movie/dune-part-two/user-reviews/"
  }
}