# StayAPI Amenities Search

> StayAPI Amenities Search is a paid API for AI agents from stayapi-jet.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Searches and filters accommodations by a list of specified amenities

## Facts

- Endpoint: POST https://stayapi-jet.vercel.app/api/amenities
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stayapi-amenities-search-9450c020
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i2QQLlDmIz8ZaJQYlY9Lg

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-amenities-search-9450c020 -d '<json body>'
```

Example prompt: Find me accommodations that have a pool, free WiFi, and pet-friendly amenities — show me what's available.

## When to prefer this

Use this endpoint when an agent needs to filter or discover accommodations based on specific amenity requirements, especially in a pay-per-use context without needing API keys or subscriptions. Ideal for autonomous agent workflows that need lightweight, on-demand accommodation search.

## Known failure modes

- Missing required 'amenities' array returns validation error
- Empty amenities array may return empty or undefined results
- Payment failure via x402 returns 402 status with payment details
- Invalid amenity values may return empty results or error
- Service downtime on Vercel hosting returns 502 or 503

## 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 accommodation listings or matches that satisfy the requested amenities criteria.

## Example request

```json
{
 "amenities": [
  "pool",
  "wifi",
  "pet-friendly"
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amenities"
 ],
 "properties": {
  "amenities": {
   "type": "array",
   "description": "List of amenities to search for"
  }
 }
}
```

## 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-amenities-search-9450c020/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)
