# The Stall — Place Details Lookup

> The Stall — Place Details Lookup is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.045/call, status unknown (last checked 2026-09-13).

Looks up detailed information about a specific business or place by name and optional location, returning structured place data.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/place-details
- Price: $0.045/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-place-details-lookup-d2ad1b27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h9RF--jfvQGD8o1WG67CM

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 the-stall-place-details-lookup-d2ad1b27
```

Example prompt: Can you look up the place details for 'Blue Bottle Coffee Hayes Valley San Francisco' and give me 1 result?

## When to prefer this

Use this endpoint when you need structured details about a named business, landmark, or point of interest and can supply the place name with optional city or region context. Ideal for resolving a place name to its details without needing an account or API key, paying only $0.02 USDC per call via x402 on Base mainnet.

## Known failure modes

- No matching place found for the given query — returns empty results
- Ambiguous query without city/region context may return wrong location
- limit parameter exceeds max of 5 — returns error
- Payment failure over x402/USDC — returns 402 status
- Query too vague or misspelled — poor match quality

## How this service works

Enriched place and business details by name (OSM Nominatim). Returns website, phone, email, opening hours, operator, brand, cuisine, social media links, full address, and coordinates. Use when you need the business metadata behind a location — not just where it is, but who runs it and how to reach it. Cheaper than Google Maps place details.

## Output

Returns structured place details for the matched business or location, including name, address, and other relevant metadata. Up to 5 results can be returned if multiple matches are requested.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 2,
   "query": "Starbucks San Francisco"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-place-details-lookup-d2ad1b27/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
