IMDB Advanced Scraper

  • epctex/imdb-advanced-scraper
  • Modified
  • Users 70
  • Runs 2k
  • Created by Author's avatarepctex

Uncover comprehensive data on millions of movies, artists, and more with our advanced scraping tool. Extract TV episode details, descriptions, casting, artists, ratings, and more. Customize your search with filters and mappings for precise results.

Free trial for 3 days

Then $35.00/month

No credit card required now

IMDB Advanced Scraper

Free trial for 3 days

Then $35.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "search": "warner",
  "mode": "all",
  "startUrls": [
    "https://www.imdb.com/title/tt0056234/?ref_=adv_li_tt",
    "https://www.imdb.com/name/nm0912504/?ref_=fn_al_nm_1",
    "https://www.imdb.com/list/ls566706296",
    "https://www.imdb.com/find?s=kw&q=warn&ref_=nv_sr_sm"
  ],
  "maxItems": 20,
  "endPage": 1,
  "extendOutputFunction": "($) => { return {} }",
  "customMapFunction": "(object) => { return {...object} }",
  "proxy": {
    "useApifyProxy": true
  }
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~imdb-advanced-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'