
IMDB Advanced Scraper
Pricing
$35.00/month + usage

IMDB Advanced Scraper
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.
0.0 (0)
Pricing
$35.00/month + usage
4
Total users
230
Monthly users
3
Runs succeeded
92%
Last modified
10 hours ago
You can access the IMDB Advanced Scraper programmatically from your own 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 ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_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 finish27run = 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: