# Bolt Hotel Search

> Bolt Hotel Search is a paid API for AI agents from datault.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Searches for available hotels at a destination for given check-in/check-out dates and returns booking options

## Facts

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

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

Example prompt: Search for available hotels in Barcelona for 2 adults in 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 dates as part of a travel planning workflow, and can pay $0.1 USDC per request via x402 protocol.

## Known failure modes

- Missing required fields (checkin, checkout, destination) returns a validation error
- Invalid date formats cause request failure
- No hotels found for the given destination or dates returns empty data
- Destination not recognized or unsupported returns an error
- Payment of 0.1 USDC not provided or insufficient causes 402 Payment Required

## 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 availability results for the specified destination and dates, potentially including hotel names, pricing, and room options.

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