# StayAPI Neighborhood Lookup

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

Returns neighborhood information for a given hotel ID

## Facts

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

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-9827d614 -d '<json body>'
```

Example prompt: What neighborhood is hotel ID 'HTL-29483' in? I want to know the area details for that property.

## When to prefer this

Use this endpoint when you have a hotel ID and need to retrieve neighborhood or location context for that property, particularly in agentic workflows where no API key or subscription is available and micro-payments via USDC are acceptable.

## Known failure modes

- Invalid or unknown hotel ID returns an error or empty data object
- Missing required 'id' field returns a 400-level validation error
- Payment failure via x402 prevents the request from completing
- Upstream data unavailable for a valid hotel ID may return success:false

## 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 area name, district, or local context information.

## 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-9827d614/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stayapi-jet.vercel.app](https://www.zero.xyz/host/stayapi-jet.vercel.app/llms.txt)
