ToolAssay

Apple App Store reviews — pull an app's user reviews by numeric product_id

Apple App Store reviews — pull an app's user reviews by numeric product_id: title, text, rating, version, author & date, with paging & sort, as clean JSON.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
607 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/reviews

CategoryCommerce and shopping
Provider hostappstore.use.x402atlas.com
Networkseip155:137, eip155:42161, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days8 from 5 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.02 607 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "country": "us",
    "page": 1,
    "product_id": "1069513131",
    "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"
        },
        "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"
            },
            "product_id": {
              "description": "Numeric App Store app id (from /appstore/search)",
              "maxLength": 32,
              "pattern": "^[0-9]+$",
              "type": "string"
            },
            "sort": {
              "default": "mostrecent",
              "description": "Optional order: mostrecent (default), mosthelpful, mostfavorable, mostcritical",
              "enum": [
                "mostrecent",
                "mosthelpful",
                "mostfavorable",
                "mostcritical"
              ],
              "type": "string"
            }
          },
          "required": [
            "product_id"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "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"
            },
            "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"
}

This page as JSON