# Google Maps Full Place Search

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

Search for places on Google Maps by query and return full detailed results including address, ratings, hours, and more

## Facts

- Endpoint: GET https://api.auor.io/google-maps/v1/search/full
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-22
- Success rate: 75% of calls made through Zero
- Activations on Zero: 16
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-auor-io-70b18263
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pFYg76Ykbw-IwJExp8Zlh

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 api-auor-io-70b18263
```

Example prompt: Can you search Google Maps for 'vegan restaurants in Austin Texas' and give me the full details — address, rating, hours, and website — for each result?

## When to prefer this

Use this endpoint when you need comprehensive place details (hours, ratings, contact info, coordinates) from a text-based search query against Google Maps. Prefer this over basic search endpoints when full metadata is required rather than just place names or IDs.

## Known failure modes

- No results found for the given query — returns empty results array
- Invalid or missing query parameter — returns 400 bad request
- Google Maps API quota exceeded — returns 429 or error response
- Query too vague or ambiguous — returns unrelated or low-quality results
- Network timeout or upstream Google Maps outage — returns 5xx error

## How this service works

Search for places based on a query (full details)

## Output

Returns full place details from Google Maps including business name, formatted address, geographic coordinates, star rating, review count, opening hours, phone number, website URL, and other place metadata for each result matching the query.

## 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/search/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/api-auor-io-70b18263/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)
