# Google Maps Local Business Search via x402node

> Google Maps Local Business Search via x402node is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Searches Google Maps for local businesses matching a keyword query, returning name, address, rating, reviews, hours, category, and coordinates.

## Facts

- Endpoint: GET https://api.x402node.dev/serp/maps
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-maps-local-business-search-via-x402node-1d57d0f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d8KRXMe3DkFeUNHPSIiuX

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-local-business-search-via-x402node-1d57d0f2
```

Example prompt: Search Google Maps for 'Italian restaurants in Brooklyn' and give me their names, addresses, ratings, hours, and coordinates.

## When to prefer this

Use this endpoint when you need structured Google Maps place data — including ratings, hours, and coordinates — for a keyword-based local business search, especially for lead generation, local SEO enrichment, or building business directories. Prefer this over raw web scraping when you need clean, structured place data quickly at low per-call cost via x402 micropayment.

## Known failure modes

- No results found for keyword — empty result set returned
- Invalid or missing keyword parameter — 400 error
- Downstream Google Maps API quota exceeded or unavailable — 503 or error response
- Payment not included or insufficient — 402 payment required
- Rate limiting on the x402node service — too many requests error

## How this service works

Local business search — name, address, phone, hours, rating, reviews and coordinates for a place or area. For lead generation, local SEO and location data. local search, business listings, places, maps, lead generation, local seo, geocoding Accepts payment on Base or Solana — either network works.

## Output

Returns a list of local business results matching the keyword, each including business name, street address, star rating, number of reviews, opening hours, business category, and geographic coordinates (latitude/longitude).

## 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": [
      "keyword"
     ],
     "properties": {
      "keyword": {
       "type": "string",
       "description": "business or place query, e.g. coffee shops in Tokyo (required)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-maps-local-business-search-via-x402node-1d57d0f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
