Rotten Extractor avatar
Rotten Extractor
Try for free

7 days trial then $20.00/month - No credit card required now

View all Actors
Rotten Extractor

Rotten Extractor

binhbui/rotten-extractor
Try for free

7 days trial then $20.00/month - No credit card required now

You can extract information about movies and actors that are listed on the Rotten Tomatoes website using this actor. Each movie has different metadata such as Rating, Genre, Box Office, Studio, and Scores. These metadata can be helpful for many data science projects.

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  "startUrls": [
8    {
9      "url": "https://www.rottentomatoes.com/browse/movies_in_theaters/ratings:nc_17,pg,pg_13,r~sort:popular"
10    }
11  ],
12  "proxyConfiguration": {
13    "useApifyProxy": true
14  },
15  "maxItems": 1000,
16  "extendOutputFunction": "($, item) => { return {} }"
17}
18EOF
19
20# Run the Actor using an HTTP API
21# See the full API reference at https://docs.apify.com/api/v2
22curl "https://api.apify.com/v2/acts/binhbui~rotten-extractor/runs?token=$API_TOKEN" \
23  -X POST \
24  -d @input.json \
25  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 1 star
  • 100.0% runs succeeded
  • Created in Aug 2023
  • Modified 12 months ago