# Google Maps Place Details (Partial) via stableenrich.dev

> Google Maps Place Details (Partial) via stableenrich.dev is a paid API for AI agents from stableenrich.dev, paid per call via MPP or x402, $0.02/call, status unknown (last checked 2026-09-13).

Fetches partial Google Maps place details for a given Place ID, allowing exclusion of heavy fields like photos and reviews

## Facts

- Endpoint: GET https://stableenrich.dev/api/google-maps/place-details/partial
- Price: $0.02/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableenrich-dev-0e05992d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TcUxx9-CYp80_QqfyhaGQ

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 stableenrich-dev-0e05992d
```

Example prompt: Can you look up the Google Maps place details for place ID ChIJN1t_tDeuEmsRUsoyG83frY4 in English, but skip the photos and reviews fields to keep it lightweight?

## When to prefer this

Use this endpoint when you have a Google Maps Place ID and need structured business/location details quickly without the overhead of photos or reviews. Ideal for enriching location data pipelines, populating business profiles, or feeding downstream agents with address, hours, and rating data. The 'partial' variant is best when bandwidth or cost matters and you only need core fields.

## Known failure modes

- Invalid or unknown placeId returns an error or empty result
- Missing required placeId parameter causes a 400 bad request
- Invalid languageCode may default to English or return an error
- Response truncated for very large place records
- Payment failure via x402 protocol blocks the request

## How this service works

Google Maps Place Details (Partial)

## Output

Returns structured place details from Google Maps for the specified Place ID, including fields like name, address, phone number, opening hours, ratings, and coordinates — minus any explicitly excluded fields such as photos or reviews.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "placeId": "ChIJN1t_tDeuEmsRUsoyG83frY4",
   "languageCode": "en",
   "excludeFields": [
    "photos",
    "reviews"
   ]
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableenrich-dev-0e05992d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableenrich.dev](https://www.zero.xyz/host/stableenrich.dev/llms.txt)
