Skip to contents

A dataset containing a selection of apps available on the Apple App Store with a corresponding ID that can be used in appler functions.

To see more information about the application online, you can add the following URL in your browser: apps.apple.com/app/id<id> where <id> is the `app_id` column

Usage

apple_apps

Format

A data frame with 2 columns and 202 rows

app_name

Application name

app_id

Apple ID of the application

Source

<https://apps.apple.com>

Details

All of the applications in this table are available in Canada (`country_id = "ca"`) at the time of writing (2022-12-03), however they might not be available in all countries, or have a different application name.

Examples

if (FALSE) { # interactive()
# Get information about Microsoft Teams
teams <- apple_apps[apple_apps$app_name == "Microsoft Teams", "app_id"]

# Search for any other apps
search_apple(term = "Microsoft Teams", country = "ca", media = "software")

# General application information including average rating
lookup_apple(teams, country = "ca")

# Latest application reviews
get_apple_reviews(teams, country = "ca")

# Current position on App store
get_apple_chart_postion(teams, country = "ca")
}