Skip to contents

Get who's watching a thing right now

Usage

movies_watching(id, extended = "min")

shows_watching(id, extended = "min")

seasons_watching(id, season = 1L, extended = "min")

episodes_watching(id, season = 1L, episode = 1L, extended = "min")

Source

movies_watching() wraps endpoint /movies/:id/watching.

shows_watching() wraps endpoint /shows/:id/watching.

episodes_watching() wraps endpoint /shows/:id/seasons/:season/episodes/:episode/watching.

Arguments

id

character(1): The ID of the item requested. Preferably the trakt ID (e.g. 1429). Other options are the trakt.tv slug (e.g. "the-wire") or imdb ID (e.g. "tt0306414"). Can also be of length greater than 1, in which case the function is called on all id values separately and the result is combined. See vignette("tRakt") for more details.

extended

character: Level of detail for the API response.

  • "min" (default): Minimal info (title, year, IDs). Omits the extended query param.

  • "full": Complete info including overview, ratings, runtime, etc.

  • "images": Minimal info plus image URLs (returned as a list-column).

  • "full,images": Complete info plus images.

  • "metadata": Collection endpoints only; adds video/audio metadata.

Multiple values can be combined as a comma-separated string (e.g. "full,images") or a character vector (e.g. c("full", "images")).

season, episode

integer(1) [1L]: The season and episode number. If longer, e.g. 1:5, the function is vectorized and the output will be combined. This may result in a lot of API calls. Use wisely.

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.

Functions

  • movies_watching(): Who's watching a movie.

  • shows_watching(): Who's watching a show.

  • seasons_watching(): Who's watching a season.

  • episodes_watching(): Who's watching an episode.

Examples

movies_watching("deadpool-2016")
#> # A tibble: 1 × 16
#>   username   private deleted joined_at           location about user_name gender
#>   <chr>      <lgl>   <lgl>   <dttm>              <chr>    <lgl> <chr>     <chr> 
#> 1 OlBoyBong… FALSE   FALSE   2026-01-22 10:03:24 Austral… NA    Riley Wa… male  
#> # ℹ 8 more variables: age <int>, vip <lgl>, vip_ep <lgl>,
#> #   vip_cover_image <lgl>, director <lgl>, user_slug <chr>, user_trakt <int>,
#> #   avatar <chr>
shows_watching("the-simpsons")
#> # A tibble: 29 × 16
#>    username  private deleted joined_at           location about user_name gender
#>    <chr>     <lgl>   <lgl>   <dttm>              <chr>    <chr> <chr>     <chr> 
#>  1 mattwild… FALSE   FALSE   2019-06-23 07:12:39 "London… NA    "Matt Wi… ""    
#>  2 SuperTri… FALSE   FALSE   2025-11-06 17:06:34  NA      NA    "Tristan…  NA   
#>  3 JudioX    FALSE   FALSE   2025-09-23 06:02:44 "Spain"  NA    "PH"      "male"
#>  4 steph777… FALSE   FALSE   2024-07-11 19:05:16 ""       ""    ""        ""    
#>  5 AkiraStr… FALSE   FALSE   2025-11-20 18:47:08 "United… NA    "Akira S… "male"
#>  6 Bring_Na… FALSE   FALSE   2013-09-14 16:55:22  NA      NA    "Bring_N… "male"
#>  7 norferat… FALSE   FALSE   2024-09-01 11:21:48 "Thessa… NA    "Juan An… "male"
#>  8 Trakt844  TRUE    FALSE   NA                   NA      NA     NA        NA   
#>  9 mj.lapie… FALSE   FALSE   2019-01-17 19:09:09 "Timmin… NA    "MJ Lapi… "fema…
#> 10 jarvis-1… FALSE   FALSE   2025-08-30 16:27:55 "United… NA    "Juan Jo… ""    
#> # ℹ 19 more rows
#> # ℹ 8 more variables: age <int>, vip <lgl>, vip_ep <lgl>,
#> #   vip_cover_image <lgl>, director <lgl>, user_slug <chr>, user_trakt <int>,
#> #   avatar <chr>
seasons_watching("the-simpsons", season = 6)
#> # A tibble: 2 × 16
#>   username   private deleted joined_at           location about user_name gender
#>   <chr>      <lgl>   <lgl>   <dttm>              <chr>    <lgl> <chr>     <chr> 
#> 1 mattwilde… FALSE   FALSE   2019-06-23 07:12:39 London,… NA    Matt Wil… ""    
#> 2 geodade_9… FALSE   FALSE   2026-07-21 13:05:52 NA       NA    NA        NA    
#> # ℹ 8 more variables: age <int>, vip <lgl>, vip_ep <lgl>,
#> #   vip_cover_image <lgl>, director <lgl>, user_slug <chr>, user_trakt <int>,
#> #   avatar <chr>
episodes_watching("the-simpsons", season = 6, episode = 12)
#> # A tibble: 0 × 0