# StayAPI Hotel Detail Lookup

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

Retrieves full accommodation details for a specific hotel by its ID, paid per-request in USDC via x402

## Facts

- Endpoint: POST https://stayagent.vercel.app/api/full
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stayapi-hotel-detail-lookup-94e93567
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hla5MvGUYRm2UKc37Z1IO

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-hotel-detail-lookup-94e93567 -d '<json body>'
```

Example prompt: Can you pull up the full details for hotel ID 'hotel_abc123' — I want to see everything available about that property before I decide whether to book it.

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to retrieve its full details. It requires no API key or subscription — just a one-time USDC micropayment via x402, making it ideal for agent workflows that need on-demand, pay-per-use hotel data without upfront credentials.

## Known failure modes

- Invalid or unknown hotel ID returns an error or empty data object
- Payment failure via x402 prevents the request from completing
- Network timeout from the Vercel-hosted endpoint
- Malformed request body missing the required id field returns a validation error
- Hotel ID exists but has no associated data, returning success true with empty data

## 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 boolean and a data object containing full accommodation details for the requested hotel ID, such as property info, amenities, pricing, and availability.

## 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-hotel-detail-lookup-94e93567/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)
