IMDb Scraper

ENDPOINTS
GET/imdb/title/episodes

Title Episodes

Episodes of one season, 50 per page (cursor-paginated), with per-episode ratings, air dates, plots and stills. Omit season to get the seasons list instead (season numbers, total episode count, ongoing flag).

The example response below is for season=1; unaired specials ride along as episode 0.

QUERY PARAMS

IMDb title ID or any imdb.com title URL.

Examples:

  • ID: tt2575988
  • URL: https://www.imdb.com/title/tt2575988/

Season number. Omit to get the seasons list.

Allowed values: positive numbers

Opaque pagination cursor. Pass the pagination.next_cursor value from the previous page to get the next one. Omit for the first page.

2-letter country code that localizes release dates, certificates and regional title names.

Default: US

Allowed values: any ISO 3166-1 alpha-2 code (US, IN, GB, DE, FR, JP, ...)

{
  "id": "tt2575988",
  "title": "Silicon Valley",
  "link": "https://www.imdb.com/title/tt2575988/",
  "is_series": true,
  "seasons": {
    "count": 6,
    "seasons": [
      "1",
      "2",
      "3",
      "4",
      "5",
      "6"
    ],
    "total_episodes": 53,
    "is_ongoing": false
  },
  "country": "US"
}