# StayAPI Neighborhood Info

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

Returns neighborhood details and contextual information for a given hotel ID

## Facts

- Endpoint: POST https://stayagent.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-info-b3161b21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pmb6ylXI7cJ0ro6yeA7lI

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-info-b3161b21 -d '<json body>'
```

Example prompt: Can you pull up the neighborhood details for hotel ID 'hotel_abc123' — I want to know what area it's in and what's around it before I decide to book.

## When to prefer this

Use this endpoint when you already have a hotel ID and need to enrich it with neighborhood-level context — such as what district the property is in, what's nearby, or local area details. Prefer this over a general search endpoint when you have a specific hotel in mind and want location context rather than availability or pricing. It is pay-per-call with no subscription required, making it suitable for lightweight, on-demand lookups.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Unknown hotel ID may return success:false or empty data
- Network/server errors from the Vercel deployment
- Payment failure via x402 protocol blocks the request
- Malformed request body causes 400-level error

## How this service works

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

## Output

A JSON object with a success flag and a data object containing neighborhood-level details associated with the provided hotel ID, such as area name, nearby points of interest, or district 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-info-b3161b21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stayagent.vercel.app](https://www.zero.xyz/host/stayagent.vercel.app/llms.txt)
