Metacritic Scraper

ENDPOINTS
GET/games/stats

Player Stats

Get GameFAQs player stats for a game: ratings, play time, difficulty and completion status.

QUERY PARAMS

Game slug or any metacritic.com game link.

Examples:

  • Slug: elden-ring
  • URL: https://www.metacritic.com/game/elden-ring/
{
  "id": 1300501979,
  "type": "game",
  "title": "Elden Ring",
  "slug": "elden-ring",
  "link": "https://www.metacritic.com/game/elden-ring/",
  "family_id": 1200497664,
  "stats": {
    "title": "Elden Ring",
    "platform": "PlayStation 5",
    "gamefaqs_link": "https://gamefaqs.gamespot.com/ps5/323053-elden-ring",
    "ratings": [
      {
        "label": "Unplayable",
        "count": 26
      },
      {
        "label": "Terrible",
        "count": 4
      },
      {
        "label": "Bad",
        "count": 4
      },
      {
        "label": "Poor",
        "count": 4
      },
      {
        "label": "Playable",
        "count": 7
      },
      {
        "label": "Fair",
        "count": 24
      },
      {
        "label": "Good",
        "count": 43
      },
      {
        "label": "Great",
        "count": 80
      },
      {
        "label": "Outstanding",
        "count": 231
      },
      {
        "label": "Flawless",
        "count": 376
      }
    ],
    "play_time": [
      {
        "label": ">= 80 Hours",
        "count": 486
      },
      {
        "label": "~60 Hours",
        "count": 38
      },
      {
        "label": "~1 Hour",
        "count": 2
      },
      {
        "label": "< 1 Hour",
        "count": 6
      },
      {
        "label": "~40 Hours",
        "count": 15
      },
      {
        "label": "~8 Hours",
        "count": 5
      },
      {
        "label": "~12 Hours",
        "count": 5
      },
      {
        "label": "~20 Hours",
        "count": 3
      }
    ],
    "difficulty": [
      {
        "label": "Tough",
        "count": 357
      },
      {
        "label": "Unforgiving",
        "count": 169
      },
      {
        "label": "Just Right",
        "count": 66
      },
      {
        "label": "Simple",
        "count": 11
      },
      {
        "label": "Easy",
        "count": 8
      }
    ],
    "play_status": [
      {
        "label": "Conquered It",
        "count": 271
      },
      {
        "label": "Played It",
        "count": 66
      },
      {
        "label": "Beat It",
        "count": 154
      },
      {
        "label": "Tried It",
        "count": 17
      },
      {
        "label": "Halfway",
        "count": 65
      }
    ]
  }
}