Skip to main content

App Store Reviews Scraper

Extract user reviews from Apple App Store apps including ratings, titles, review text, and reviewer info. 1 credit/row

Parameters

ParameterTypeRequiredDescription
startUrlsarrayYesArray of App Store app URLs. E.g., ["https://apps.apple.com/us/app/instagram/id389801252"]
countrystringNoTwo-letter country code for the App Store region. Default: us
maxItemsintegerYesMaximum number of reviews to return. Default: 100

Example

curl -X POST https://api.mindcase.co/api/v1/agents/app-store/reviews-scraper/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "startUrls": ["https://apps.apple.com/us/app/instagram/id389801252"],
      "country": "us",
      "maxItems": 100
    }
  }'