# DataVault Hotel Search

> DataVault Hotel Search is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Searches for available hotels at a destination for given check-in/check-out dates and occupancy, returning hotel listing data.

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/hotel
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-hotel-search-d5c00993
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lLzlLphdk9w72FreiAhCp

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 datavault-hotel-search-d5c00993 -d '<json body>'
```

Example prompt: Find me available hotels in Tokyo for 2 adults in 1 room, checking in June 20 and checking out June 25.

## When to prefer this

Use this endpoint when you need to search for hotel availability at a specific destination for given travel dates and occupancy. It is a pay-per-call REST endpoint suitable for agent-driven travel planning workflows where you need live hotel data without a full booking platform integration.

## Known failure modes

- Missing required fields (checkin, checkout, or destination) result in a validation error
- Invalid date formats may cause parsing errors
- No hotels found for the given destination or date range returns empty data
- Destination string not recognized results in an empty or error response
- Payment failure (insufficient USDC) prevents the call from executing

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing hotel listing results for the given destination, dates, and occupancy parameters — typically including hotel names, availability, and related details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "checkin",
  "checkout",
  "destination"
 ],
 "properties": {
  "rooms": {
   "type": "integer"
  },
  "adults": {
   "type": "integer"
  },
  "checkin": {
   "type": "string"
  },
  "checkout": {
   "type": "string"
  },
  "destination": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-hotel-search-d5c00993/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
