Class Movies

Movies api namespace

Hierarchy

  • Movies

Implements

Constructors

Properties

config: ApiConfig

Methods

  • Returns all releases for a movie including country, certification, release date, release type, and note. The release type can be set to unknown, premiere, limited, theatrical, digital, physical, or tv. The note might have optional info such as the film festival name for a premiere release or Blu-ray specs for a physical release. We pull this info from TMDB.

    Returns

    All the releases for a movie

    Parameters

    • param0: {
          country?: string;
          movieID: string;
      }
      • Optional country?: string
      • movieID: string

    Returns Promise<ApiResponse<Release[]>>

  • Returns all show Trakt IDs updated since the specified UTC date and time. We recommended storing the X-Start-Date header you can be efficient using this method moving forward. By default, 10 results are returned. You can send a limit to get up to 100 results per page.

    Important! The start_date is only accurate to the hour, for caching purposes. Please drop the minutes and seconds from your timestamp to help optimize our cached data. For example, use 2021-07-17T12:00:00Z and not 2021-07-17T12:23:34Z.

    Note: The start_date can only be a maximum of 30 days in the past.

    Returns

    Parameters

    • param0: {
          pagination: Pagination;
          startDate?: string;
      }
      • pagination: Pagination
      • Optional startDate?: string

    Returns Promise<ApiResponse<UpdatedIDs>>

  • Returns all shows updated since the specified UTC date and time. We recommended storing the X-Start-Date header you can be efficient using this method moving forward. By default, 10 results are returned. You can send a limit to get up to 100 results per page.

    Important! The start_date is only accurate to the hour, for caching purposes. Please drop the minutes and seconds from your timestamp to help optimize our cached data. For example, use 2021-07-17T12:00:00Z and not 2021-07-17T12:23:34Z.

    Note: The start_date can only be a maximum of 30 days in the past.

    Returns

    Parameters

    • param0: {
          pagination: Pagination;
          startDate?: string;
      }
      • pagination: Pagination
      • Optional startDate?: string

    Returns Promise<ApiResponse<UpdatesMovie[]>>

Generated using TypeDoc v0.23.20