Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Retrieve App Store reviews API Playground

Returns one page of customer reviews for an app. Provide either `id` or `app_id`.

GETapiKey3 credits/requestappstore.reviewsResponseDocAppStore

Endpoint

Choose one catalog endpoint for this request.

10 shown
GETapiKey3 credits/requestappstore.reviewsResponseDocAppStore
GET /appstore/reviews

Retrieve App Store reviews

Returns one page of customer reviews for an app. Provide either `id` or `app_id`.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

MCP tool

MCP URL

https://mcp.crawlora.net/mcp

Tool name

appstore.reviews

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "id": "review-1",
      "title": "Helpful assistant",
      "score": 5,
      "author": "App Store User",
      "content": "Great for writing and research."
    }
  ]
}

Endpoint details

Returns one page of customer reviews for an app. Provide either `id` or `app_id`.

Method
GET
Path
/appstore/reviews
Authentication
apiKey
Credit cost
3 credits/request
Platform
AppStore
Parameters
7 documented fields

Request parameters

id:queryapp_id:querycountry:querypage:querysort:querylang:queryx-api-key:header

Response schema fields

codedatadata[].iddata[].scoredata[].textdata[].titledata[].updateddata[].urldata[].user_namedata[].user_urldata[].versionmsg

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "id": "review-1",
      "title": "Helpful assistant",
      "score": 5,
      "author": "App Store User",
      "content": "Great for writing and research."
    }
  ]
}

cURL example

curl "https://api.crawlora.net/api/v1/appstore/reviews" \
  -H "x-api-key: <api-key>"