Apple App Store reviews (path variant) — an app's user reviews by product_id in
Apple App Store reviews (path variant) — an app's user reviews by product_id in the URL: title, text, rating, version, author & date, with paging & sort, as clean JSON.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
594 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://appstore.use.x402atlas.com/v2/product/:product_id/reviews
| Category | Commerce and shopping |
|---|---|
| Provider host | appstore.use.x402atlas.com |
| Networks | eip155:137, eip155:42161, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 594 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"product_id": "886427730"
},
"queryParams": {
"country": "us",
"page": 1,
"sort": "mostrecent"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"product_id": {
"description": "Numeric App Store app id (from /appstore/search)",
"maxLength": 32,
"pattern": "^[0-9]+$",
"type": "string"
}
},
"required": [
"product_id"
],
"type": "object"
},
"queryParams": {
"properties": {
"country": {
"description": "Optional two-letter store country (e.g. us, gb)",
"maxLength": 2,
"type": "string"
},
"page": {
"description": "Optional page number",
"minimum": 1,
"type": "integer"
},
"sort": {
"default": "mostrecent",
"description": "Optional order: mostrecent (default), mosthelpful, mostfavorable, mostcritical",
"enum": [
"mostrecent",
"mosthelpful",
"mostfavorable",
"mostcritical"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"pathParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"info": {
"properties": {
"results_count": {
"type": "integer"
},
"reviews_for_current_version": {
"type": "integer"
},
"total_page_count": {
"type": "integer"
}
},
"type": "object"
},
"note": {
"description": "Present only when no reviews matched: a hint that product_id must be a numeric App Store id. The paid lookup still ran.",
"type": "string"
},
"product_id": {
"type": "string"
},
"queried_at": {
"format": "date-time",
"type": "string"
},
"reviews": {
"items": {
"properties": {
"author": {
"properties": {
"author_id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"helpfulness_vote_information": {
"type": "string"
},
"id": {
"type": "string"
},
"position": {
"type": "integer"
},
"rating": {
"type": "number"
},
"review_date": {
"type": "string"
},
"reviewed_version": {
"type": "string"
},
"text": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"product_id",
"queried_at",
"reviews"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}