# StayAPI Property Details

> StayAPI Property Details 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-15).

Retrieves detailed information about a specific accommodation property by its ID

## Facts

- Endpoint: POST https://stayapi-jet.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-5cd47949
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uyH_VpT44fOQsxvfV3YEs

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-5cd47949 -d '<json body>'
```

Example prompt: Can you pull up the full details for accommodation property ID 'prop_abc123' so I can see what it offers?

## When to prefer this

Use this endpoint when you already have a specific property ID (e.g. from a prior search result) and need full details about that single accommodation. It requires no authentication or subscription — just a $0.02 USDC micropayment per call via x402, making it ideal for AI agents that need pay-per-use accommodation data without committing to a subscription.

## Known failure modes

- Missing or invalid property ID returns an error response
- Unknown property ID returns success:false or empty data
- Network/server errors from Vercel hosting
- Payment failure via x402 prevents request from completing
- Malformed request body missing required 'id' field

## 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 detailed property information for the requested accommodation ID — likely including name, location, amenities, pricing, availability, and other listing details.

## 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-5cd47949/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)
