# Google Maps Full Place Details

> Google Maps Full Place Details is a paid API for AI agents from api.auor.io, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-15).

Returns all available information about a place from Google Maps, including contact details, hours, reviews, photos, and more.

## Facts

- Endpoint: GET https://api.auor.io/google-maps/v1/details/full
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-maps-full-place-details-f5af5d7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H2m2foAbgLVs2lpacA2p5

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 google-maps-full-place-details-f5af5d7c
```

Example prompt: Can you pull up the full Google Maps details for the Eiffel Tower — I want everything: opening hours, contact info, ratings, reviews, and photos?

## When to prefer this

Choose this endpoint when you need the most comprehensive set of place data in a single call — reviews, photos, hours, contact info, and all attributes — rather than the 'essential' sibling endpoint which returns only core fields. Prefer this over a basic geocoding call when business metadata (reviews, hours, phone) is needed alongside location data.

## Known failure modes

- Invalid or missing place ID returns an error
- Place not found in Google Maps database returns empty or error response
- Malformed query parameters result in 400 bad request
- Rate limiting or payment failure results in 402 or 429 response
- Place has limited data and returns partial results

## How this service works

Get all available information about a place.

## Output

A comprehensive data object containing all available Google Maps information about the place, including name, formatted address, phone number, website, opening hours, ratings, user reviews, photos, price level, business status, coordinates, and any other attributes stored in Google's Places database.

## 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": {
     "$ref": "https://api.auor.io/schemas/google-maps/v1/details/full/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-maps-full-place-details-f5af5d7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
