tv_latest: Retrieve the latest TV show inserted in TMDb.

Description Usage Arguments Value Author(s) References Examples

View source: R/tv_latest.R

Description

Get the latest TV show id.

Usage

1
tv_latest(api_key)

Arguments

api_key

Your TMDb Consumer Key.

Value

A list with the following fields:

backdrop_path

The backdrop of the TV show.

created_by

The author of the TV show.

episode_run_time

The length of an episode.

first_air_date

the first time that TV show is aired

genres

The TV show's genre.

homepage

The TV show's homepage.

id

The TV show ID.

in_production

A logical value that indicates if a TV shows is in production (TRUE) or not (FALSE).

languages

A list of available languages.

last_air_date

The last day when TV show ended.

name

The TV show name.

networks

The companies involved with the TV show.

number_of_episodes

The number of episodes of the TV show.

number_of_seasons

The number of seasons of the TV show.

origin_country

The country where TV show is produced.

original_language

The original language of the TV show.

original_name

The original name of the TV show.

overview

A brief plot.

popularity

An index of the TV show's popularity.

poster_path

The poster of the TV show.

production_companies

The producer companies.

seasons

The TV show's seasons.

status

The TV show's status.

type

The TV show's type.

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_latest(api_key = api_key)

## End(Not run) 

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

Related to tv_latest in TMDb...