Metacritic Scraper

ENDPOINTS
GET/publications/details

Publication Details

Get a critic outlet's profile: review counts, sentiment split and average score for games, movies and TV.

QUERY PARAMS

Critic publication slug or any metacritic.com publication link.

Examples:

  • Slug: ign
  • URL: https://www.metacritic.com/publication/ign/
{
  "name": "IGN",
  "slug": "ign",
  "link": "https://www.metacritic.com/publication/ign/",
  "categories": [
    {
      "category": "Games",
      "review_count": 15779,
      "positive_count": 7891,
      "neutral_count": 6153,
      "negative_count": 1735,
      "average_score": 70.6111,
      "highest": null,
      "lowest": null
    },
    {
      "category": "Movies",
      "review_count": 1797,
      "positive_count": 1117,
      "neutral_count": 604,
      "negative_count": 76,
      "average_score": 67.8247,
      "highest": null,
      "lowest": null
    },
    {
      "category": "TV Shows",
      "review_count": 385,
      "positive_count": 268,
      "neutral_count": 113,
      "negative_count": 4,
      "average_score": 71.3506,
      "highest": null,
      "lowest": null
    }
  ]
}