# Roam Accommodation Search

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

Searches for accommodation options in a given destination, optionally filtered by budget and dates, with per-request USDC micropayment via x402.

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/api/explore
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-search-12fe5c17
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pOteEoxAp-njgLW4hhHH9

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

Example prompt: Search for accommodation in Lisbon from August 12 to August 19 with a budget of around $100 per night — I need somewhere decent to stay in the city center.

## When to prefer this

Choose this endpoint when an AI agent needs frictionless, no-auth accommodation search with per-request micropayment billing in USDC — ideal for autonomous agents that cannot manage OAuth flows or subscriptions. Best for destination-based lodging discovery when you have a location and optionally dates and a budget.

## Known failure modes

- Missing required 'location' field returns a validation error
- Invalid or unparseable date format for checkin/checkout may cause errors or empty results
- No accommodations found for the given criteria returns empty data
- Payment failure via x402 (insufficient USDC balance or misconfigured wallet) blocks the request
- Overly restrictive budget or date combination may yield no results

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing accommodation search results for the specified location, potentially including listings with details like property names, prices, availability, and other relevant stay information.

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