# Bolt Hotel Search

> Bolt Hotel Search is a paid API for AI agents from bolt.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 data via the Bolt utility toolkit.

## Facts

- Endpoint: POST https://bolt.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-1cfeb3d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HdpzbkCM9K0VuMONaGM4M

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-1cfeb3d7 -d '<json body>'
```

Example prompt: Can you find available hotels in Barcelona for 2 adults and 1 room, checking in June 15 and checking out June 18?

## When to prefer this

Use this endpoint when an AI agent needs to search for hotel availability at a specific destination for given travel dates, especially when operating within the Bolt utility toolkit ecosystem and paying per request in USDC via x402. Prefer this over broader travel APIs when a lightweight, pay-per-use hotel search without account setup is needed.

## Known failure modes

- Missing required fields (checkin, checkout, or destination) returns a validation error
- Invalid date formats may cause parsing errors
- No hotels found for the specified destination or date range returns empty data
- Upstream hotel data provider unavailable causes a failed response
- Payment failure via x402 results in 402 response before the request is processed

## 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-1cfeb3d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
