# Google Maps Business Leads via Apify Bridge

> Google Maps Business Leads via Apify Bridge is a paid API for AI agents from agentic-apify-bridge.onrender.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns structured business leads (name, category, phone, website, email, address, hours) from Google Maps for a given search query and location.

## Facts

- Endpoint: GET https://agentic-apify-bridge.onrender.com/api/run
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-maps-business-leads-via-apify-bridge-63d8c577
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lTRNucNukL7V2fPr3ai34

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-business-leads-via-apify-bridge-63d8c577
```

Example prompt: Can you pull me up to 50 Google Maps business leads for 'Italian restaurant' in Chicago — I need each business's name, phone, website, and address for a sales outreach list?

## When to prefer this

Use this endpoint when you need structured, ready-to-use business lead data from Google Maps — especially when you need phone, email, address, and hours in a single call without managing a browser or Apify account directly. Prefer this over manual scraping or general web search when building sales lists, doing local market research, or enriching a CRM with contact details for businesses in a specific category and geography.

## Known failure modes

- No results returned if query or location is too narrow or misspelled
- max parameter below 10 may be silently bumped to 10 (minimum enforced)
- Email field often absent as it is scraped opportunistically and not always listed
- Rate limiting or timeout from Apify actor if volume is very high
- Render cold-start latency may cause first request to be slow
- Invalid actor key in 'actor' param causes actor-not-found error

## How this service works

Google Maps business leads on demand: business name, category, phone, website, email, address, hours. Priced $0.10 per lead (minimum 1, up to 1000). Query params: q (search, e.g. 'Coffee shop'), location (city/area, e.g. 'London'), max (number of leads). Works for any city worldwide.

## Output

An array of business lead objects, each containing: businessName, category, phone, website, companyEmail (if found), address (full), and workingHours (hours by day of week). Results are capped by the 'max' parameter (up to 1000 records).

## 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": [
      "q",
      "location"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search text / keyword, e.g. 'Coffee shop'"
      },
      "max": {
       "type": "integer",
       "description": "Number of leads to return (min 1, max 1000)"
      },
      "location": {
       "type": "string",
       "description": "City or area, e.g. 'London'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "phone": {
          "type": "string",
          "description": "Phone number"
         },
         "address": {
          "type": "string",
          "description": "Full address"
         },
         "website": {
          "type": "string",
          "description": "Website URL"
         },
         "category": {
          "type": "string",
          "description": "Business category"
         },
         "businessName": {
          "type": "string",
          "description": "Business name"
         },
         "companyEmail": {
          "type": "string",
          "description": "Email (if found)"
         },
         "workingHours": {
          "type": "object",
          "description": "Opening hours by day"
         }
        }
       },
       "description": "Array of business leads"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-maps-business-leads-via-apify-bridge-63d8c577/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic-apify-bridge.onrender.com](https://www.zero.xyz/host/agentic-apify-bridge.onrender.com/llms.txt)
