# StayAPI Neighborhood Lookup

> StayAPI Neighborhood Lookup is a paid API for AI agents from stay402.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Retrieves neighborhood information for a specific hotel by its ID

## Facts

- Endpoint: POST https://stay402.vercel.app/api/neighborhood
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stayapi-neighborhood-lookup-0fd5ee66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PiPu7tCHdE93DOq7P5XJL

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 stayapi-neighborhood-lookup-0fd5ee66 -d '<json body>'
```

Example prompt: What neighborhood is hotel ID 'nyc-hotel-12345' located in? I need the area details for that property.

## When to prefer this

Use this endpoint when you already have a hotel ID and need to enrich it with neighborhood or area context — ideal for AI agents building travel itineraries, comparing accommodation options by location, or surfacing local area information to users without requiring API keys or subscriptions. Pay-per-use at $0.03 USDC via x402 makes it suitable for low-volume or on-demand agent workflows.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data object
- Missing required 'id' field in request body causes validation error
- Payment failure via x402 protocol results in 402 response before data is returned
- Service downtime on Vercel deployment returns 500 or timeout
- Malformed request body returns 400 bad request

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing neighborhood details for the specified hotel, such as district name, area characteristics, and location context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel ID"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stayapi-neighborhood-lookup-0fd5ee66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stay402.vercel.app](https://www.zero.xyz/host/stay402.vercel.app/llms.txt)
