Skip to content

The Imdb Scraper API is a robust tool designed for fetching detailed data from IMDb. It simplifies data extraction, making it easy for developers to access film information.

oxylabs/imdb-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Imdb Scraper API

Oxylabs promo code

Oxylabs' Imdb Scraper is a data gathering solution allowing you to extract real-time information from an Imdb website effortlessly. This brief guide showcases how Imdb Scraper works, along with code examples to help you better understand how to use it hassle-free.

How it works

You can get Imdb results by providing your own URLs to our service. We can return the HTML for any page you like.

Python code example

The example below illustrates how you can get HTML of Imdb page.

import requests
from pprint import pprint

# Structure payload.
payload = {
    'source': 'universal_ecommerce',
    'url': 'https://www.imdb.com/'
}

# Get response.
response = requests.request(
    'POST',
    'https://realtime.oxylabs.io/v1/queries',
    auth=('user', 'pass1'),
    json=payload,
)

# Instead of response with job status and results url, this will return the
# JSON response with the result.
pprint(response.json())

Find code examples for other programming languages here

Output Example

{
  "results": [
    {
      "content": "<!DOCTYPE html><html lang=\"en-US\" xmlns:og=\"http://opengraphprotocol.org/schema/\" xmlns:fb=\"http://w ... </html>",
      "created_at": "2024-01-10 09:34:26",
      "updated_at": "2024-01-10 09:34:28",
      "page": 1,
      "url": "https://www.imdb.com/",
      "job_id": "7150781926540843009",
      "status_code": 200
    }
  ]
}

With our Imdb Scraper, you can effortlessly extract public data from any Imdb webpage. Collect the required movie or TV series information, such as ratings, cast details, plot summaries or reviews, to analyze the entertainment market and stay ahead of your competitors. If you have any questions, contact our support team via live chat or email us at hello@oxylabs.io.

About

The Imdb Scraper API is a robust tool designed for fetching detailed data from IMDb. It simplifies data extraction, making it easy for developers to access film information.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published