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.

You can access the IMDB Advanced Scraper programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "search": "warner",
10    "mode": "all",
11    "searchTag": "all",
12    "startUrls": [
13        "https://www.imdb.com/title/tt0056234/?ref_=adv_li_tt",
14        "https://www.imdb.com/name/nm0912504/?ref_=fn_al_nm_1",
15        "https://www.imdb.com/list/ls566706296",
16        "https://www.imdb.com/find?s=kw&q=warn&ref_=nv_sr_sm",
17        "https://www.imdb.com/search/title/?title_type=feature&release_date=2021-01-01,2023-07-01",
18    ],
19    "maxItems": 20,
20    "endPage": 1,
21    "extendOutputFunction": "($) => { return {} }",
22    "customMapFunction": "(object) => { return {...object} }",
23    "proxy": { "useApifyProxy": True },
24}
25
26# Run the Actor and wait for it to finish
27run = client.actor("epctex/imdb-advanced-scraper").call(run_input=run_input)
28
29# Fetch and print Actor results from the run's dataset (if there are any)
30print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
31for item in client.dataset(run["defaultDatasetId"]).iterate_items():
32    print(item)
33
34# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

IMDB Data Crawler API in Python

The Apify API client for Python is the official library that allows you to use IMDB Advanced Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Developer
Maintained by Community
Actor metrics
  • 7 monthly users
  • 2 stars
  • 89.5% runs succeeded
  • Created in May 2022
  • Modified about 3 hours ago