# Scrape one Metacritic movie score page

**Use case:** 

Enrich a known movie URL with Metascore, user rating counts, release details, genres, and summary.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.metacritic.com/movie/the-godfather/"
    }
  ],
  "query": "elden ring",
  "category": "movie",
  "browseSort": "metascore",
  "maxItems": 1,
  "includeReviews": false,
  "maxReviewSnippets": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

## Output

```json
{
  "name": {
    "label": "Title",
    "format": "text"
  },
  "contentType": {
    "label": "Type",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "releaseDate": {
    "label": "Release date",
    "format": "text"
  },
  "metascore": {
    "label": "Metascore",
    "format": "number"
  },
  "userScore": {
    "label": "User score",
    "format": "number"
  },
  "criticReviewCount": {
    "label": "Critic reviews",
    "format": "number"
  },
  "userReviewCount": {
    "label": "User reviews",
    "format": "number"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "platformsNetwork": {
    "label": "Platforms / network",
    "format": "array"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "rankingContext": {
    "label": "Ranking context",
    "format": "text"
  },
  "reviewSnippets": {
    "label": "Review snippets",
    "format": "object"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Metacritic Reviews & Scores Scraper](https://apify.com/fetch_cat/metacritic-reviews-scores-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/metacritic-reviews-scores-scraper) to learn more, explore other use cases, and run it yourself.