An API to grab Apple App store reviews from an RSS feed & Android Playstore reviews directly from the UI. I couldn't find a way to do this online so I built it. The reviews are able to be filtered via rating, before date, and after date.
To get ALL reviews - The following iOS endpoint is in this format:
https://app-store-reviews-api-aeb965d6e5af.herokuapp.com/reviews/iOS/APPID
or Android:
https://app-store-reviews-api-aeb965d6e5af.herokuapp.com/reviews/Android/APPID
The APPID for iOS can be found via the Apple app store:
And the APPID for Android can be found in the Playstore:
Filter by rating:
https://app-store-reviews-api-aeb965d6e5af.herokuapp.com/reviews/iOS/APPID?rating=1
Filter by afterDate:
https://app-store-reviews-api-aeb965d6e5af.herokuapp.com/reviews/iOS/APPID?afterDate=05/15/2023
Filter by beforeDate:
https://app-store-reviews-api-aeb965d6e5af.herokuapp.com/reviews/iOS/APPID?beforeDate=05/15/2023
Filter by multiple filters:
https://app-store-reviews-api-aeb965d6e5af.herokuapp.com/reviews/iOS/APPID?rating=1&beforeDate=05/15/2023
Download here and import into Postman