# Gurify Google Maps Scraper

> Gurify Google Maps Scraper is a paid API for AI agents from x402.gurify.com, paid per call via x402, $0.021/call, status unknown (last checked 2026-09-16).

Scrapes Google Maps listings and returns structured place/business results, priced per result in USDC on Base via x402.

## Facts

- Endpoint: POST https://x402.gurify.com/scrape/maps
- Price: $0.021/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gurify-google-maps-scraper-bffcf2e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BxPxMQvCc9LHA2rFcuu1U

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 gurify-google-maps-scraper-bffcf2e3 -d '<json body>'
```

Example prompt: Scrape Google Maps and give me up to 50 coffee shop listings — I need the names, addresses, ratings, and hours.

## When to prefer this

Use this endpoint when you need to extract Google Maps business listings programmatically at low cost per result, without the restrictions or pricing of the official Google Maps Places API. Ideal for agents doing local business research, lead generation, or location-based data enrichment at scale.

## Known failure modes

- Limit parameter missing or invalid returns malformed request error
- Upstream Google Maps blocking or rate limiting causes empty or partial results
- Payment not settled in USDC on Base causes 402 Payment Required response
- Requested limit exceeds available results for the query, returning fewer items than expected

## How this service works

Cheap pay-per-RESULT web scrapers — X/Twitter, YouTube, Google Maps, Instagram, Amazon (products/detail/best-sellers), Twitch — priced per 1,000 results, settled in USDC on Base via x402.

## Output

An array of Google Maps place/business objects, each containing structured fields such as name, address, rating, review count, hours, and other available listing details, up to the requested limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items"
 ],
 "properties": {
  "items": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gurify-google-maps-scraper-bffcf2e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.gurify.com](https://www.zero.xyz/host/x402.gurify.com/llms.txt)
