Metacritic Scraper avatar
Metacritic Scraper
Try for free

3 days trial then $15.00/month - No credit card required now

View all Actors
Metacritic Scraper

Metacritic Scraper

epctex/metacritic-scraper
Try for free

3 days trial then $15.00/month - No credit card required now

Extract any data from Metacritic right away! Games, Music, Movies, TV Shows, People, Companies, and more information are ready for you. Get reviews immediately! Search for any keyword, filter by your needs, or get listing pages! Export your data by XML, JSON, CSV, Excel, or HTML

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "search": "last of us",
8  "startUrls": [
9    "https://www.metacritic.com/music/sos/sza",
10    "https://www.metacritic.com/tv/the-witcher-blood-origin",
11    "https://www.metacritic.com/movie/whitney-houston-i-wanna-dance-with-somebody",
12    "https://www.metacritic.com/game/playstation-5/elden-ring",
13    "https://www.metacritic.com/search/all/hel/results",
14    "https://www.metacritic.com/search/game/hel/results",
15    "https://www.metacritic.com/browse/movies/score/metascore/all/filtered/netflix",
16    "https://www.metacritic.com/browse/tv/score/metascore/year/filtered?sort=desc&view=detailed",
17    "https://www.metacritic.com/browse/games/genre/date/action/ps4"
18  ],
19  "maxItems": 20,
20  "endPage": 1,
21  "extendOutputFunction": "($) => { return {} }",
22  "customMapFunction": "(object) => { return {...object} }",
23  "proxy": {
24    "useApifyProxy": true
25  }
26}
27EOF
28
29# Run the Actor using an HTTP API
30# See the full API reference at https://docs.apify.com/api/v2
31curl "https://api.apify.com/v2/acts/epctex~metacritic-scraper/runs?token=$API_TOKEN" \
32  -X POST \
33  -d @input.json \
34  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 5 monthly users
  • 4 stars
  • 68.7% runs succeeded
  • Created in Jan 2023
  • Modified about 24 hours ago