# Bolt Hotel Search

> Bolt Hotel Search is a paid API for AI agents from boltx402.orbonomy.xyz, 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 options and data.

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/hotel
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-hotel-search-c46ebb2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N98Pre9uzIo-bvAYa9waF

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 bolt-hotel-search-c46ebb2f -d '<json body>'
```

Example prompt: Find me hotels in Barcelona for 2 adults and 1 room, checking in March 15 and checking out March 20.

## When to prefer this

Use this endpoint when an AI agent needs to search for hotel availability for a specific destination and date range, particularly within a broader travel planning workflow that accepts USDC micropayments via x402.

## Known failure modes

- Missing required fields (checkin, checkout, destination) returns a validation error
- Invalid date formats may cause a 400 error or empty results
- No hotels found for the given destination or dates returns empty data
- Payment failure via x402 results in a 402 Payment Required response
- Unsupported destination may return empty or null hotel data

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing hotel listings and availability details for the requested 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/bolt-hotel-search-c46ebb2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
