# Get Apple Maps Ratings and Reviews

> Get Apple Maps Ratings and Reviews is a paid API for AI agents from agents.litescrape.com, paid per call via MPP, $0.000150/call, status unknown (last checked 2026-09-18).

Fetches the overall rating summary, star-breakdown, and written user reviews for a specific Apple Maps place identified by its MUID.

## Facts

- Endpoint: GET https://agents.litescrape.com/api/apple/maps/reviews
- Price: $0.000150/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Provider: agents.litescrape.com
- Website: https://agents.litescrape.com
- Canonical page: https://www.zero.xyz/c/agents-litescrape-com-get-apple-maps-ratings-and-reviews-d69cd99b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-MARKdxs0nsau3x5Zzs1-

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agents-litescrape-com-get-apple-maps-ratings-and-reviews-d69cd99b
```

Example prompt: Pull all the Apple Maps ratings and reviews for the place with MUID 1234567890 — I need the overall rating summary, the star breakdown, and the written reviews in English (en-US).

## When to prefer this

Use this endpoint when you specifically need Apple Maps user reviews and ratings (not Google Maps, Yelp, or Tripadvisor) for a place you already have the Apple MUID for. It is the right choice when your workflow targets Apple ecosystem data or when you want to compare review sentiment across platforms and need the Apple Maps side. If you need to first find the MUID, use the companion 'Get Apple Maps places' endpoint first.

## Known failure modes

- Invalid or unknown MUID returns a JSON error body with error, error_code, and status_code 404
- Apple Maps has no reviews for this place — reviews array is empty or omitted
- Timeout after 120 seconds if Apple Maps is slow to respond
- Malformed locale string may cause normalization errors or fallback to default
- Rate limiting or upstream Apple Maps unavailability returns a retryable error with retryable:true
- Payment failure returns HTTP 402 before the request reaches Apple Maps

## How this service works

Returns the ratings and written reviews Apple attributes to one place identified by its MUID: rating_summary, the ratings breakdown, and reviews with rating, text, and date. Set locale for the language and regional formatting. Allow up to 120 seconds for a response. One call is one request.

## Output

Returns a JSON object containing: a rating_summary with overall score and total count, a ratings array with per-star breakdown, a reviews array each with rating, text, and date, optional pagination info (next URL or next_page_token) when more results exist, plus search_metadata (request ID, status, time taken) and search_parameters echoing the normalized inputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "muid"
 ],
 "properties": {
  "muid": {
   "type": "string",
   "description": "Exactly one Apple Maps place ID."
  },
  "locale": {
   "type": "string",
   "default": "en-US",
   "description": "Language-region locale such as en-US or en-GB."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ratings": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Ratings breakdown."
  },
  "reviews": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Written reviews: rating, text, date."
  },
  "pagination": {
   "type": "object",
   "description": "Present when more results exist: next (a ready-made URL for the next page) or next_page_token."
  },
  "rating_summary": {
   "type": "object",
   "description": "Overall rating and counts."
  },
  "search_metadata": {
   "type": "object",
   "properties": {
    "id": {
     "type": "string"
    },
    "status": {
     "type": "string"
    },
    "total_time_taken": {
     "type": "number"
    }
   }
  },
  "search_parameters": {
   "type": "object",
   "description": "The request parameters as normalized by the API."
  }
 },
 "description": "Successful responses carry request metadata, the normalized parameters, and the result groups available for the operation. Optional groups are omitted when the source does not provide them. Errors are a JSON body with error, error_code, status_code, request_id, retryable, and the echoed search_parameters."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-litescrape-com-get-apple-maps-ratings-and-reviews-d69cd99b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.litescrape.com](https://www.zero.xyz/host/agents.litescrape.com/llms.txt)
