# Agent Wonderland Place Search

> Agent Wonderland Place Search is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Searches for local businesses by type and location with filtering by rating, price level, and business category, returning structured data for analytics.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/place-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-wonderland-place-search-0df990a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z0ojFJEYepnS0kCFcdeLu

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 agent-wonderland-place-search-0df990a7 -d '<json body>'
```

Example prompt: Search for the top 15 pizza restaurants in Brooklyn, NY and give me their names, ratings, and price levels so I can compare options.

## When to prefer this

Choose this endpoint when you need structured, filterable local business data for analytics, lead generation, competitive research, or itinerary planning — especially when you want to control result volume via maxResults and receive clean structured output rather than unstructured web results. Prefer it over generic web search when downstream processing or data pipelines require consistent schema output.

## Known failure modes

- Ambiguous or overly broad location string returns irrelevant results
- No businesses found for rare business type in a given area returns empty result set
- maxResults cap of 30 may not return all matching businesses in dense areas
- Malformed location string may cause search failure or error response
- Rate limiting or payment issues via x402 protocol may block the request

## How this service works

PlaceSearch: Flexible location-based business search with advanced filtering by rating, price level, and business type. Structured data output for analytics pipelines.

## Output

Returns a structured list of business listings matching the query, including business names, addresses, ratings, price levels, and business types — formatted as structured data suitable for analytics pipelines or direct agent consumption.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "location": {
   "type": "string",
   "title": "Location",
   "description": "Business type and location"
  },
  "maxResults": {
   "type": "integer",
   "title": "Maxresults",
   "default": 30
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-wonderland-place-search-0df990a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
