AppKittie Reviews avatar

AppKittie Reviews

Pricing

from $50.00 / 1,000 results

Go to Apify Store
AppKittie Reviews

AppKittie Reviews

Fetch App Store or Google Play reviews for one app through the AppKittie API.

Pricing

from $50.00 / 1,000 results

Rating

0.0

(0)

Developer

Appkittie Support

Appkittie Support

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Fetch recent user reviews for one App Store or Google Play app.

This Actor is useful for voice-of-customer research, competitor review mining, pain point discovery, app quality monitoring, and feeding review samples into downstream analysis workflows.

What Can This Actor Do?

  • Fetch reviews for one Apple App Store or Google Play app.
  • Accept an AppKittie slug, numeric App Store ID, Google Play package name, App Store URL, or Google Play URL.
  • Return review rating, title, body, reviewer nickname, date, and country.
  • Page through reviews using offset and nextOffset.

Common Use Cases

  • Mine competitor reviews for feature requests and pain points.
  • Collect review examples for positioning and copywriting.
  • Monitor recent reviews after a launch or app update.
  • Build lightweight sentiment or topic-analysis pipelines.
  • Compare review language across countries and stores.

Input

Required:

  • appId - App identifier, package name, or store URL.

Optional:

  • source - apple_mobile or google_mobile. If omitted, AppKittie infers it from the app.
  • country - ISO 3166-1 alpha-2 storefront country code. Defaults to US.
  • maxReviews - Number of reviews to return. Capped at 10.
  • offset - Pagination offset. Use nextOffset from the previous run.

Example

{
"appId": "https://apps.apple.com/us/app/instagram/id389801252",
"source": "apple_mobile",
"country": "US",
"maxReviews": 10,
"offset": 0
}

Output

The Actor writes one typed JSON record to the default key-value store under OUTPUT. It does not write dataset rows.

{
"data": {
"appId": 389801252,
"source": "apple_mobile",
"country": "us",
"reviews": [
{
"id": "1234567890",
"rating": 4,
"title": "Helpful app",
"body": "I use it every day.",
"reviewerNickname": "example_user",
"date": "2026-01-01",
"country": "us"
}
],
"nextOffset": 10,
"totalFetched": 10
}
}

Limits and Pagination

Runs are capped at 10 returned reviews. Use data.nextOffset as the next run's offset to continue paging.

Notes

  • No proxy configuration is required.
  • No AppKittie API key is required in Actor input. The Actor uses AppKittie's managed API connection internally.
  • Reviews are returned as available from the selected store and country.