# Apple Maps Place Details by MUID

> Apple Maps Place Details by MUID is a paid API for AI agents from places.use.x402atlas.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a full Apple Maps place profile (ratings, reviews, weekly hours, phone, website, categories, address, GPS) for a single place identified by its muid or place_id.

## Facts

- Endpoint: GET https://places.use.x402atlas.com/apple/place
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apple-maps-place-details-by-muid-8c0087ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JRRTIqcmhSEbIKZRO2cqw

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 apple-maps-place-details-by-muid-8c0087ae
```

Example prompt: Pull the full Apple Maps profile for the place with muid A8F3C2D9-4B11-4E7A-9C82-1D5E6F7A0B34 — I need its hours, rating, phone number, and address.

## When to prefer this

Use this endpoint after an Apple Maps search (e.g. the sibling Apple Maps local search endpoint) returns a muid, and you need the full business profile including detailed hours, ratings, and contact info. Prefer over Google Maps place details when you specifically need Apple Maps data or when working in a pipeline that started with Apple Maps search results. Use when DuckDuckGo Maps surface data is insufficient and you need structured Apple Maps canonical detail.

## Known failure modes

- Invalid or unknown muid/place_id returns an empty or error response
- Neither muid nor place_id provided results in a 400 validation error
- Apple Maps data unavailable for a given place returns partial or null fields
- Rate limiting or payment issues may result in 402 or 429 errors

## How this service works

Apple Maps place details — full profile for a single Apple Maps place (muid): ratings, reviews, weekly hours, phone, website, categories & address as clean JSON.

## Output

Returns a JSON object with the place's title, muid, phone, website, address, GPS coordinates, open_state, rating, review count, max_rating, business type categories, and weekly_hours object structured as Apple Maps provides it, plus a queried_at timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "muid"
     ],
     "properties": {
      "muid": {
       "type": "string",
       "maxLength": 512,
       "description": "Apple Maps place id (muid, from /places/apple/local results)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "place"
     ],
     "properties": {
      "place": {
       "type": "object",
       "required": [
        "title"
       ],
       "properties": {
        "muid": {
         "type": "string"
        },
        "type": {
         "type": "string"
        },
        "phone": {
         "type": "string"
        },
        "title": {
         "type": "string"
        },
        "types": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "rating": {
         "type": "number"
        },
        "address": {
         "type": "string"
        },
        "reviews": {
         "type": "integer"
        },
        "website": {
         "type": "string"
        },
        "max_rating": {
         "type": "number"
        },
        "open_state": {
         "type": "string"
        },
        "weekly_hours": {
         "type": "object",
         "description": "Apple's opening-hours object, upstream shape passed through as-is"
        },
        "gps_coordinates": {
         "type": "object",
         "properties": {
          "latitude": {
           "type": "number"
          },
          "longitude": {
           "type": "number"
          }
         }
        }
       }
      },
      "queried_at": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "place": {
   "muid": "6435622567484707146",
   "type": "Coffee shop",
   "title": "Sightglass Coffee",
   "rating": 4.5,
   "address": "270 7th St, San Francisco, CA",
   "reviews": 812,
   "website": "https://sightglasscoffee.com"
  },
  "queried_at": "2026-07-11T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apple-maps-place-details-by-muid-8c0087ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from places.use.x402atlas.com](https://www.zero.xyz/host/places.use.x402atlas.com/llms.txt)
