# Orthogonal Serper Maps Search

> Orthogonal Serper Maps Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Performs a Google Maps search and returns location listings with titles, addresses, coordinates, ratings, reviews, phone numbers, websites, and categories.

## Facts

- Endpoint: POST https://x402.orthogonal.com/serper/maps
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-serper-maps-search-5bc8b878
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T7LdXyX4D8kH_KaxqBoCx

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 orthogonal-serper-maps-search-5bc8b878 -d '<json body>'
```

Example prompt: Search Google Maps for the top 10 Italian restaurants near coordinates @40.7128,-74.0060,15z in New York, NY — I need their names, addresses, ratings, phone numbers, and websites.

## When to prefer this

Prefer this endpoint over a generic Places search when you need richer map listing data including ratings, review counts, phone numbers, and categories, or when geographic precision is important and you can supply lat/lng coordinates via the ll parameter. Use this for location-based queries where Google Maps results with full business metadata are required.

## Known failure modes

- Invalid or malformed ll parameter format returns an error or no results
- Query with no matching results returns an empty listings array
- Unsupported country or language code may return unexpected localization
- Rate limiting or payment failure returns a 402 or 429 error
- Overly broad query may return irrelevant or low-quality listings

## How this service works

Google Maps search - returns map listings with titles, addresses, latitude/longitude coordinates, ratings, review counts, phone numbers, websites, and categories. More detailed than Places for location-based queries. Use ll parameter for precise geographic targeting.

## Output

Returns a list of map listings each containing business name, street address, latitude/longitude coordinates, star rating, review count, phone number, website URL, and business categories — more detailed than a standard Places search result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Search query"
  },
  "gl": {
   "type": "string",
   "description": "Country code (e.g. us, uk, de)"
  },
  "hl": {
   "type": "string",
   "description": "Language code (e.g. en, es, fr)"
  },
  "ll": {
   "type": "string",
   "description": "Latitude/longitude with zoom (e.g. \"@40.7128,-74.0060,15z\"). More precise than location."
  },
  "num": {
   "type": "number",
   "description": "Number of results (default 10)"
  },
  "page": {
   "type": "number",
   "description": "Page number for pagination For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
  },
  "location": {
   "type": "string",
   "description": "Location name for localized results (e.g. \"New York, NY\")"
  },
  "autocorrect": {
   "type": "boolean",
   "description": "Enable autocorrect (default true)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-serper-maps-search-5bc8b878/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
