IMDb Scraper avatar
IMDb Scraper
Try for free

1 day trial then $50.00/month - No credit card required now

View all Actors
IMDb Scraper

IMDb Scraper

dtrungtin/imdb-scraper
Try for free

1 day trial then $50.00/month - No credit card required now

Free IMDb API to extract and download data on movies, TV shows, video games, and other listings from IMDb. Delivers custom machine-readable IMDb datasets containing all information on your selected listings.

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 mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        {
12            "url": "https://www.imdb.com/find/?q=game&ref_=nv_sr_sm"
13        }
14    ],
15    "maxItems": 50,
16    "proxyConfiguration": {
17        "useApifyProxy": true
18    },
19    "extendOutputFunction": ($) => { return {} }
20};
21
22(async () => {
23    // Run the Actor and wait for it to finish
24    const run = await client.actor("dtrungtin/imdb-scraper").call(input);
25
26    // Fetch and print Actor results from the run's dataset (if any)
27    console.log('Results from dataset');
28    const { items } = await client.dataset(run.defaultDatasetId).listItems();
29    items.forEach((item) => {
30        console.dir(item);
31    });
32})();
Developer
Maintained by Community
Actor metrics
  • 14 monthly users
  • 100.0% runs succeeded
  • 0.0 days response time
  • Created in Oct 2019
  • Modified 3 months ago
Categories