# Google Maps Place Details (Basic) via Auor.io

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

Returns essential/basic information about a place using Google Maps data, accessed via x402 micropayment protocol.

## Facts

- Endpoint: GET https://api.auor.io/google-maps/v1/details/basic
- Price: $0.005/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-place-details-basic-via-auor-io-98bf4939
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GETzOSLZeVc8OMlDOPgnV

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-place-details-basic-via-auor-io-98bf4939
```

Example prompt: Can you pull up the basic details for 'Tartine Bakery' in San Francisco — I need their address, phone number, and opening hours?

## When to prefer this

Choose this endpoint when you need only the core/essential fields about a place (address, hours, phone, website) and want a lower-cost call compared to the full details endpoint. Ideal for quick lookups where exhaustive place data is unnecessary. Use over the full details endpoint to save cost ($0.005 USDC) when only basic info is needed.

## Known failure modes

- Place not found — invalid or unrecognized place identifier returns empty or error response
- Ambiguous place name with no sufficient context may return wrong location
- Missing required query parameters returns 400 bad request
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limiting or quota exceeded returns 429 or 402 error

## How this service works

Get essential information about a place.

## Output

Returns essential place information including name, address, phone number, website URL, opening hours, coordinates, and place category/type as sourced from Google Maps.

## 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/basic/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-place-details-basic-via-auor-io-98bf4939/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)
