# DataVault Hotel Search

> DataVault Hotel Search is a paid API for AI agents from zetdatavault.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, number of rooms, and adults

## Facts

- Endpoint: POST https://zetdatavault.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-0baa6037
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BdTotfbofQCptO1TaTGr0

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-0baa6037 -d '<json body>'
```

Example prompt: Search for hotels in Barcelona for 2 adults, 1 room, checking in June 15 and checking out June 18.

## When to prefer this

Use this endpoint when you need real-time hotel availability and listings for a specific destination and date range, especially when integrating travel search into an AI agent workflow that handles micro-payments via USDC on Base. Suitable for pay-per-call scenarios without requiring a subscription.

## Known failure modes

- Missing required fields (checkin, checkout, or destination) returns a validation error
- Invalid date format causes a parsing error
- No hotels found for the destination returns empty data
- Downstream hotel data provider is unavailable, causing a 5xx error
- Payment not processed or insufficient USDC balance results in a 402 response

## 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 listings or availability information for the specified destination and dates.

## 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-0baa6037/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
