# Get Apple Maps Places by MUID

> Get Apple Maps Places by MUID 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).

Resolves up to 50 Apple Maps places by MUID in a single call, returning name, category, rating, address, coordinates, phone, website, and hours.

## Facts

- Endpoint: GET https://agents.litescrape.com/api/apple/maps/places
- 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-places-by-muid-b2713e5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2XfqGm9wAaDyFPI4koXdc

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-places-by-muid-b2713e5d
```

Example prompt: Can you look up the Apple Maps details for these place IDs — I411234567890123456,I987654321098765432 — and return their names, addresses, phone numbers, hours, and ratings?

## When to prefer this

Choose this endpoint when you already have one or more Apple Maps MUIDs and need to resolve them to full place details (name, address, hours, rating, phone, website) without running a search. It is ideal for batch enrichment of up to 50 known places in a single request and for retrieving Apple-sourced data specifically (as opposed to Google Maps or Yelp). Use it when locale-aware formatting matters for international users. Prefer it over search-based endpoints when the exact place identity is already known.

## Known failure modes

- Invalid or non-existent MUID returns an error body with error_code and status_code
- More than 50 MUIDs in a single request may be rejected or partially processed
- Response timeout possible — allow up to 120 seconds before treating as failure
- Malformed locale string may cause fallback to default en-US or an error
- Apple Maps source temporarily unavailable causes a retryable error response

## How this service works

Resolves one to 50 Apple Maps places by their MUID (Apple's unsigned 64-bit place identifier) in one call and returns place_results with the details Apple provides: name, category, rating, address, coordinates, phone, website, and hours. Set locale for the language and regional formatting. Allow up to 120 seconds for a response. One call is one request whatever the batch size.

## Output

Returns a place_results array where each entry corresponds to one resolved MUID and includes the place name, category, star rating, formatted address, latitude/longitude coordinates, phone number, website URL, and opening hours. Also includes search_metadata (request ID, status, time taken) and search_parameters echoing the normalized inputs. Errors include an error message, error_code, status_code, request_id, retryable flag, and echoed parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "muid"
 ],
 "properties": {
  "muid": {
   "type": "string",
   "description": "One to 50 comma-separated Apple Maps place IDs."
  },
  "locale": {
   "type": "string",
   "default": "en-US",
   "description": "Language-region locale such as en-US, fr-FR, ja-JP, or zh-TW."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pagination": {
   "type": "object",
   "description": "Present when more results exist: next (a ready-made URL for the next page) or next_page_token."
  },
  "place_results": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "One entry per resolved MUID: name, category, rating, address, coordinates, phone, website, hours."
  },
  "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-places-by-muid-b2713e5d/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)
