# StayAPI Property Details

> StayAPI Property Details is a paid API for AI agents from stay402.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves detailed information about a specific accommodation property by its ID

## Facts

- Endpoint: POST https://stay402.vercel.app/api/details
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stayapi-property-details-a7345d4f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UuiUzu6tDmS8dZSK4Dc4y

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-property-details-a7345d4f -d '<json body>'
```

Example prompt: Can you pull up the full details for accommodation property ID 'prop_abc123' — things like amenities, description, location, and pricing?

## When to prefer this

Use this endpoint when you already have a property ID from a prior search and need to fetch full details about that specific accommodation. It is ideal for AI agents that need accommodation details without managing API keys or subscriptions, paying only $0.02 USDC per lookup via x402 micropayments.

## Known failure modes

- Invalid or unknown property ID returns an error or empty data object
- Missing required 'id' field causes a 400-level validation error
- Payment of 0.02 USDC via x402 fails or is rejected, blocking the request
- Network timeout or server error on Vercel returns a 500-level response
- Stale or expired property ID no longer in the database returns not found

## 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 success status and a data object containing full details about the requested accommodation property, such as name, description, location, amenities, pricing, photos, and availability information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Property 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-property-details-a7345d4f/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)
