Returns the top 10 grossing movies in the U.S. box office last weekend. Updated every Monday morning.
Source
movies_boxoffice() wraps endpoint /movies/boxoffice.
Arguments
- extended
character: Level of detail for the API response."min"(default): Minimal info (title, year, IDs). Omits theextendedquery 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")).
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_aliases,
media_comments,
media_lists,
media_people,
media_ratings(),
media_stats(),
media_translations,
media_watching,
movies_related(),
movies_releases(),
movies_summary(),
people_media(),
played_media,
popular_media,
trending_media,
watched_media
Examples
movies_boxoffice()
#> # A tibble: 10 × 7
#> revenue title year trakt slug imdb tmdb
#> <int> <chr> <int> <chr> <chr> <chr> <chr>
#> 1 64000000 "Scream 7" 2026 9341… scre… tt27… 1159…
#> 2 12000000 "GOAT" 2026 1057… goat… tt27… 1297…
#> 3 7000000 "\"Wuthering Heights\"" 2026 1077… wuth… tt32… 1316…
#> 4 4300000 "Twenty One Pilots: More Than We Ever… 2026 1339… twen… tt39… 1612…
#> 5 3500000 "EPiC: Elvis Presley in Concert" 2026 1183… epic… tt35… 1445…
#> 6 3400000 "Crime 101" 2026 9440… crim… tt32… 1171…
#> 7 3100000 "I Can Only Imagine 2" 2026 1184… i-ca… tt34… 1405…
#> 8 2800000 "Send Help" 2026 9678… send… tt80… 1198…
#> 9 1600000 "How to Make a Killing" 2026 3151… how-… tt43… 4679…
#> 10 1400000 "Zootopia 2" 2025 8714… zoot… tt26… 1084…
