# Roam Accommodation Spot Lookup

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

Retrieves detailed accommodation data for a specific property by ID, paid per-request in USDC via x402

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/spot
- Price: $0.02/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-spot-lookup-aa403351
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t-igzChQgg67_9vlD-mOZ

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

Example prompt: Look up the full details for accommodation property ID 'prop_abc123' — I need everything available about that spot.

## When to prefer this

Use this endpoint when you already have a specific accommodation property ID and need to retrieve full details about it. It is best suited for AI agents that have obtained property IDs from a prior search step and now need to hydrate those IDs into full property records. It is not a search endpoint — it requires a known ID. It requires no API key or subscription, only a USDC micropayment via x402, making it ideal for pay-as-you-go agent workflows.

## Known failure modes

- Missing or invalid property ID returns an error response
- Unknown property ID returns success:false or empty data
- Payment failure via x402 blocks the request before it reaches the API
- Malformed request body (missing required 'id' field) returns a 400-level error
- Service unavailability returns a 5xx error

## 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 the property details for the requested accommodation ID. The exact fields in data depend on the property but likely include name, location, pricing, amenities, and availability information.

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