The {appler} package is a wrapper around Apple’s App Store Search API. This allows the user to pull information about artists, applications, and anything else available on iTunes or the Apple App Store.
Other functions are included to allow the pulling of information not included in the search API such as application reviews and split of ratings.
The first thing to do is find the ID of the entity you are analysing.
The search_apple
function will use Apple’s API to return
any items that are related to the search terms entered. By default it
pulls tracks and audiobooks, however with the entity
parameter we can specify we want to search for artists or
applications.
# Artist ID can be obtained from the artistId column
taylor_swift_songs <- search_apple("Taylor Swift")
taylor_swift <- search_apple("Taylor Swift", media = "music", entity = "musicArtist")
str(taylor_swift)
#> 'data.frame': 1 obs. of 8 variables:
#> $ wrapperType : chr "artist"
#> $ artistType : chr "Artist"
#> $ artistName : chr "Taylor Swift"
#> $ artistLinkUrl : chr "https://music.apple.com/us/artist/taylor-swift/159260351?uo=4"
#> $ artistId : int 159260351
#> $ amgArtistId : int 816977
#> $ primaryGenreName: chr "Pop"
#> $ primaryGenreId : int 14
taylor_swift_id <- taylor_swift$artistId
Applications are slightly different, where they instead of
artistId
, trackId
is used to store the unique
ID.
github_tracks <- search_apple("GitHub")
github_app <- search_apple("GitHub", media = "software", entity = "software")
# Over 50 apps are returned, however the top is the official GitHub app
github_app_id <- github_app$trackId[1]
cat(github_app_id)
#> 1477376905
When searching software, a lot more information is returned, such as
application metadata (size, version, release notes) and average rating.
Use str(github_app)
to take a look at everything
included.
Alternatively the ID can be found in the URL.
For artists and tracks it can be found as the last part of the URL.
For example, to find out about Taylor Swift the ID is
159260351
(from https://music.apple.com/us/artist/taylor-swift/159260351),
or her latest album Midnights is 1650841512
(from https://music.apple.com/us/album/midnights-3am-edition/1650841512).
For applications it is almost the same, however it is prefixed with
“id” which will need to be removed when using functions from {appler}.
For example the ID for GitHub is 1477376905
(from https://apps.apple.com/us/app/github/id1477376905).
If you already have the ID, you can use lookup_apple
and
it will return the same information as search_apple
but for
the specific entity chosen.
taylor_swift_lookup <- lookup_apple(taylor_swift_id)
str(taylor_swift_lookup)
#> 'data.frame': 1 obs. of 8 variables:
#> $ wrapperType : chr "artist"
#> $ artistType : chr "Artist"
#> $ artistName : chr "Taylor Swift"
#> $ artistLinkUrl : chr "https://music.apple.com/us/artist/taylor-swift/159260351?uo=4"
#> $ artistId : int 159260351
#> $ amgArtistId : int 816977
#> $ primaryGenreName: chr "Pop"
#> $ primaryGenreId : int 14
Comparing the results of search and lookup:
Once you have the ID, you can get to the interesting part: the reviews. Apple has an RSS feed that enables you to pull the latest 500 reviews for an application, along with information such as the version that was being reviewed, and what rating was given by the user.
There is a limitation that you can only pull the reviews for a single country, and by default the reviews from the US will be returned, however any ISO-2 country code can be used. If the app isn’t available in that country, then there will be a 400 error.
github_reviews <- get_apple_reviews(github_app_id)
head(github_reviews)
#> id review_time author app_version
#> 1 12357572339 2025-02-26 14:38:49 Lil Bits 0123456789 1.198.0
#> 2 12357015990 2025-02-26 11:54:16 Enos1010 1.198.0
#> 3 12355802181 2025-02-26 03:28:46 OALIWTPATMAH 1.198.0
#> 4 12355282084 2025-02-25 23:54:34 basselalesh 1.198.0
#> 5 12320868031 2025-02-17 06:56:22 T3chnicolor 1.196.0
#> 6 12316418163 2025-02-16 03:33:03 TechyGod 1.196.0
#> title rating
#> 1 Bad PM 2
#> 2 Best app 5
#> 3 ms.gates.fight 5
#> 4 Great quality stuff 5
#> 5 App shouldn't exist 1
#> 6 Stop asking me to rate 1
#> review
#> 1 Fix the mobile PM experience. It is Garbo
#> 2 Thank you
#> 3 Moongate is only on iOS my boí
#> 4 This is some good stuff. Please keep up this excellent quality even if it means slowing down on feature related stuff. Would eventually love more details and control over Actions, like being able to kickoff a workflow.
#> 5 Provides no additional functionality that you can't access via web browser. In fact LACKS features available via mobile web.
#> 6 If I wanted to rate I would go rate the app!
One extra piece of functionality available in {appler} is the ability
to scrape the rating split from the App Store. Whilst the average rating
for the app is available in search_apple
, it is useful to
know how many 5* ratings are given and how many 1* ratings are
given.