ClickYourApp Docs
Back to site

App Reviews

Fetch user reviews for an app with sorting and pagination.

Endpoint

GET /api/insights/{store}/app/{bundleId}/reviews/

Path Parameters

ParameterRequiredDescription
storeYesapple or google
bundleIdYesApp bundle identifier

Query Parameters

ParameterTypeDefaultDescription
countrystringSmart fallbackCountry code
langstringLanguage code
sortstringmostRecentSort order (see below)
limitnumber20Reviews per page (max 200)
pagenumber1Page number (Apple only, max 10)

Sort Values

Apple: mostRecent, mostHelpful (aliases: newest, helpful, rating)

Google: NEWEST, RATING, HELPFULNESS (aliases: newest, rating, helpful)

Example Request

GET /api/insights/google/app/com.spotify.music/reviews/?country=us&sort=newest&limit=10

Response

Returns an array of normalized reviews:

[
  {
    "id": "abc123",
    "userName": "John D.",
    "score": 5,
    "title": "Great app!",
    "text": "Love the new design and features...",
    "date": "2025-02-18T14:30:00Z",
    "url": "https://..."
  }
]

The title field is only available for Apple reviews. Google reviews do not have separate titles.

Cache

HeaderValue
s-maxage86400 (24 hours)
max-age3600 (1 hour)
stale-while-revalidate7200 (2 hours)

Errors

StatusDescription
400Missing/invalid store or bundleId
404App not found
500Upstream API failure