Metacritic Scraper

ENDPOINTS
GET/users/stats

User Stats

Get a Metacritic member's review stats: counts, sentiment, average score and best and worst rated titles.

QUERY PARAMS

Metacritic username or any metacritic.com user profile link.

Examples:

  • Username: Ultragaming
  • URL: https://www.metacritic.com/user/Ultragaming/
{
  "username": "Ultragaming",
  "link": "https://www.metacritic.com/user/Ultragaming/",
  "categories": [
    {
      "category": "Games",
      "review_count": 25,
      "positive_count": 17,
      "neutral_count": 6,
      "negative_count": 2,
      "average_score": 8.1,
      "highest": {
        "review_id": null,
        "score": 10,
        "title": "Elden Ring",
        "link": "https://www.metacritic.com/game/elden-ring/"
      },
      "lowest": {
        "review_id": null,
        "score": 4,
        "title": "Clair Obscur: Expedition 33",
        "link": "https://www.metacritic.com/game/clair-obscur-expedition-33/"
      }
    },
    {
      "category": "Movies",
      "review_count": 0,
      "positive_count": 0,
      "neutral_count": 0,
      "negative_count": 0,
      "average_score": 0.0,
      "highest": null,
      "lowest": null
    },
    {
      "category": "TV Shows",
      "review_count": 0,
      "positive_count": 0,
      "neutral_count": 0,
      "negative_count": 0,
      "average_score": 0.0,
      "highest": null,
      "lowest": null
    }
  ],
  "review_count": 25
}