app-store-reviews
Fetch App Store reviews by ID or bundle ID to analyze user feedback, ratings, and version-specific insights for app market intelligence.
Instructions
Get reviews for an App Store app. Returns an array of reviews with:
id: Review ID
userName: Reviewer's name
userUrl: Reviewer's profile URL
version: App version reviewed
score: Rating (1-5)
title: Review title
text: Review content
url: Review URL
updated: Review date (ISO string)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | No | Bundle ID (e.g., 'com.midasplayer.apps.candycrushsaga'). Either this or id must be provided. | |
country | No | Country code to get reviews from (default: us) | us |
id | No | Numeric App ID (e.g., 553834731). Either this or appId must be provided. | |
page | No | Page number to retrieve (default: 1, max: 10) | |
sort | No | Sort order (recent or helpful) | recent |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "Bundle ID (e.g., 'com.midasplayer.apps.candycrushsaga'). Either this or id must be provided.",
"type": "string"
},
"country": {
"default": "us",
"description": "Country code to get reviews from (default: us)",
"type": "string"
},
"id": {
"description": "Numeric App ID (e.g., 553834731). Either this or appId must be provided.",
"type": "number"
},
"page": {
"default": 1,
"description": "Page number to retrieve (default: 1, max: 10)",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"sort": {
"default": "recent",
"description": "Sort order (recent or helpful)",
"enum": [
"recent",
"helpful"
],
"type": "string"
}
},
"type": "object"
}