# StayAPI Property Details

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

Retrieves detailed information about a specific accommodation property by its ID

## Facts

- Endpoint: POST https://stayagent.vercel.app/api/details
- 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-property-details-4da213f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9B8ryA5BEl6BzlMgBXUOq

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-4da213f8 -d '<json body>'
```

Example prompt: Can you pull up the full details for property ID 'prop_abc123' — I want to know everything about it like amenities, location, and pricing before I book.

## When to prefer this

Use this endpoint when you already have a property ID and need to retrieve full details about a specific accommodation. It is ideal for the second step of a search-then-detail workflow, after a sibling search endpoint has returned a list of property IDs. Prefer this over general web search when you need structured, machine-readable accommodation data without authentication overhead.

## Known failure modes

- Invalid or unknown property ID returns an error or empty data object
- Missing required 'id' field results in a validation error
- Payment failure via x402 prevents the request from being fulfilled
- Upstream data source unavailable causes a 5xx error
- Malformed request body returns a 400 error

## How this service works

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

## Output

Returns a success flag and a data object containing detailed information about the requested accommodation property, such as name, location, amenities, pricing, and other listing attributes.

## 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-4da213f8/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)
