IMDB Advanced Scraper avatar
IMDB Advanced Scraper
Try for free

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

View all Actors
IMDB Advanced Scraper

IMDB Advanced Scraper

epctex/imdb-advanced-scraper
Try for free

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

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.

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": "warner",
8  "mode": "all",
9  "searchTag": "all",
10  "startUrls": [
11    "https://www.imdb.com/title/tt0056234/?ref_=adv_li_tt",
12    "https://www.imdb.com/name/nm0912504/?ref_=fn_al_nm_1",
13    "https://www.imdb.com/list/ls566706296",
14    "https://www.imdb.com/find?s=kw&q=warn&ref_=nv_sr_sm",
15    "https://www.imdb.com/search/title/?title_type=feature&release_date=2021-01-01,2023-07-01"
16  ],
17  "maxItems": 20,
18  "endPage": 1,
19  "extendOutputFunction": "($) => { return {} }",
20  "customMapFunction": "(object) => { return {...object} }",
21  "proxy": {
22    "useApifyProxy": true
23  }
24}
25EOF
26
27# Run the Actor using an HTTP API
28# See the full API reference at https://docs.apify.com/api/v2
29curl "https://api.apify.com/v2/acts/epctex~imdb-advanced-scraper/runs?token=$API_TOKEN" \
30  -X POST \
31  -d @input.json \
32  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 12 monthly users
  • 1 star
  • 96.9% runs succeeded
  • Created in May 2022
  • Modified 1 day ago