# Roam Accommodation Spot Lookup

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

Retrieves accommodation property details by property ID, paid per request in USDC via x402 with no auth or subscription required.

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/spot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-spot-lookup-f3366114
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rb4jZT8gfWIp8IbwjPcj8

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-spot-lookup-f3366114 -d '<json body>'
```

Example prompt: Pull up the accommodation details for property ID 'abc123' on Roam — I need to see what that listing offers.

## When to prefer this

Use this endpoint when you have a specific accommodation property ID and need to retrieve its details without API keys or subscriptions, and when you're comfortable paying $0.02 USDC per call via the x402 protocol.

## Known failure modes

- Invalid or unknown property ID returns failure or empty data
- Payment failure via x402 results in 402 Payment Required response
- Malformed request body missing required 'id' field returns validation error
- Network or server error on orbonomy.xyz returns 5xx response

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing accommodation property details corresponding to the provided property ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Property ID"
  }
 }
}
```

## 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-spot-lookup-f3366114/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)
