Skip to content

Instantly share code, notes, and snippets.

@jhurliman
Last active April 3, 2016 19:26
Show Gist options
  • Save jhurliman/2c9d957980e40753283c57f37fd12307 to your computer and use it in GitHub Desktop.
Save jhurliman/2c9d957980e40753283c57f37fd12307 to your computer and use it in GitHub Desktop.
Return the average review score based on recent reviews for an app store app
#!/usr/bin/env bash
COUNTRY=us
APPID=1081557588
curl -s "https://itunes.apple.com/${COUNTRY}/rss/customerreviews/id=${APPID}/sortBy=mostRecent/json" |\
jq '[.feed.entry[]."im:rating".label // empty | tonumber] | add/length'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment