Get all movie / show aliases
Source
movies_aliases()
wraps endpoint movies/:id/aliases.
shows_aliases()
wraps endpoint shows/:id/aliases.
Arguments
- id
character(1)
: The ID of the item requested. Preferably thetrakt
ID (e.g.1429
). Other options are the trakt.tvslug
(e.g."the-wire"
) orimdb
ID (e.g."tt0306414"
). Can also be of length greater than 1, in which case the function is called on allid
values separately and the result is combined. Seevignette("finding-things")
for more details.
Value
A tibble(). If the function has a limit
parameter
(defaulting to 10
), this will be the (maximum) number of rows of the tibble
.
If there are no results (or the API is unreachable), an empty tibble()
is returned.
See also
Other movie data:
anticipated_media
,
collected_media
,
media_comments
,
media_lists
,
media_people
,
media_ratings()
,
media_stats()
,
media_translations
,
media_watching
,
movies_boxoffice()
,
movies_related()
,
movies_releases()
,
movies_summary()
,
people_media()
,
played_media
,
popular_media
,
trending_media
,
watched_media
Other show data:
collected_media
,
media_comments
,
media_lists
,
media_people
,
media_ratings()
,
media_stats()
,
media_translations
,
media_watching
,
people_media()
,
played_media
,
shows_next_episode()
,
shows_related()
,
shows_summary()
Examples
movies_aliases(190430)
#> # A tibble: 29 × 2
#> title country
#> <chr> <chr>
#> 1 X-Men Origins: Deadpool us
#> 2 X-Men: Deadpool us
#> 3 Deadpool br
#> 4 Дедпул bg
#> 5 Dedpul rs
#> 6 Дэдпул ru
#> 7 惡棍英雄:死侍 tw
#> 8 死侍:不死现身 cn
#> 9 X战警:死侍 cn
#> 10 Deadpool 1 us
#> # ℹ 19 more rows
shows_aliases(104439)
#> # A tibble: 706 × 2
#> title country
#> <chr> <chr>
#> 1 Очень странные дела us
#> 2 Странные вещи us
#> 3 Загадкові справи ua
#> 4 Keisti dalykai lt
#> 5 Крайне странные события ru
#> 6 უცნაური საქმეები ge
#> 7 Stranger Things (2016) cn
#> 8 Stranger Things cn
#> 9 Странные вещи ru
#> 10 Крайне странные события ru
#> # ℹ 696 more rows