# Roam Accommodation Search

> Roam Accommodation Search is a paid API for AI agents from roam.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Searches for accommodation options at a specified destination, optionally filtered by dates and budget, with per-request USDC payment via x402

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/explore
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-search-6216f408
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZfL7qZUW6dnNYzK0FcX10

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 roam-accommodation-search-6216f408 -d '<json body>'
```

Example prompt: Search Roam for places to stay in Barcelona, checking in June 10 and checking out June 17, with a budget of around $100 per night.

## When to prefer this

Choose this endpoint when you need accommodation search without API key management or subscription setup — ideal for AI agents that can pay per request in USDC via x402. Best for one-off travel queries where setting up an account with a traditional hotel API is impractical.

## Known failure modes

- Missing required 'location' field returns a validation error
- Invalid date formats for checkin or checkout may cause lookup failures
- No results found for very niche or misspelled destinations
- Payment failure via x402 if insufficient USDC balance
- Network timeout if the underlying accommodation data source is slow
- Malformed budget string may cause filtering to be ignored or error

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a success flag and a data object containing accommodation search results for the specified destination, potentially including property names, prices, availability, and other relevant lodging details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "budget": {
   "type": "string",
   "description": "Budget range in USD"
  },
  "checkin": {
   "type": "string",
   "description": "Check-in date"
  },
  "checkout": {
   "type": "string",
   "description": "Check-out date"
  },
  "location": {
   "type": "string",
   "description": "City, region, or destination name"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/roam-accommodation-search-6216f408/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roam.orbonomy.xyz](https://www.zero.xyz/host/roam.orbonomy.xyz/llms.txt)
