tv_episode {TMDb} | R Documentation |
Retrieve basic informations about a TV episode.
Description
Get the primary information about a TV episode by combination of a season and episode number.
Usage
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
## 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)
[Package TMDb version 1.1 Index]