list_get: Get a list by id.

Description Usage Arguments Value Author(s) References Examples

View source: R/list_get.R

Description

Retrieve all the basic information about a list searched by ID.

Usage

1
list_get(api_key, id)

Arguments

api_key

Your TMDb Consumer Key.

id

The list ID.

Value

A list with the following fields:

created_by

The author of the list.

description

A brief description about the list.

favorite_count

The number of favorites.

id

The list ID.

items

The elements of the list.

item_count

The number of list's elements.

iso_639_1

The language of the list.

name

The name of the list.

poster_path

The poster of the list.

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"

list_get(api_key = api_key, id = "509ec17b19c2950a0600050d")

## End(Not run) 

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

Related to list_get in TMDb...