tv_episode: Retrieve basic informations about a TV episode.

Description Usage Arguments Value Author(s) References Examples

View source: R/tv_episode.R

Description

Get the primary information about a TV episode by combination of a season and episode number.

Usage

1
2
tv_episode(api_key, id, season_number, episode_number, language = NA,
append_to_response = NA)

Arguments

api_key

Your TMDb Consumer Key.

id

The TV show ID.

season_number

The season number refered to the TV show ID.

episode_number

The episode number refered to the TV show ID.

language

A ISO 639-1 code.

append_to_response

Comma separated, any TV series method.

Value

A list with the following fields:

air_date

when an episode is aired.

crew

The crew of the TV episode.

episode_number

The episode number of the TV episode.

guest_stars

The guest stars of the TV episode.

name

The TV episode title.

overview

A brief plot.

id

The TV episode ID.

production_code

The production code.

season_number

The season number of the TV episode.

still_path

The image's path.

vote_average

The average of the votes.

vote_count

The number of votes.

Author(s)

Andrea Capozio

References

https://developers.themoviedb.org/3/getting-started

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run:     
## An example of an authenticated request,
## where api_key is fictitious.
## You can obtain your own at https://www.themoviedb.org/documentation/api

api_key <- "key"

tv_episode(api_key = api_key, id = 1396, season_number = 4, episode_number = 4)

## End(Not run)

TMDb documentation built on March 17, 2020, 1:06 a.m.

Related to tv_episode in TMDb...