# Roam Accommodation Spot Lookup

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

Retrieves detailed accommodation/property information by property ID, paid per-request in USDC via x402 protocol

## Facts

- Endpoint: POST https://rao-m.vercel.app/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-0c67a357
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0x0b0OnraKOyPBecETXEw

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

Example prompt: Can you pull up the details for accommodation property ID 'prop_abc123' using Roam — I need to see what's available for that specific spot?

## When to prefer this

Use this endpoint when you have a specific accommodation property ID and need to retrieve its details without requiring API key setup or subscriptions. Ideal for AI agent workflows that need frictionless, pay-per-call lodging lookups using USDC micro-payments via the x402 protocol.

## Known failure modes

- Invalid or unknown property ID returns error or empty data
- Payment failure via x402 protocol prevents request from completing
- Malformed request body missing required 'id' field returns validation error
- Property ID exists but property is unavailable or delisted
- Network timeout from Vercel-hosted endpoint under load

## 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 property/accommodation details for the given property ID. The exact structure of the data object varies by property but contains spot-specific 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-0c67a357/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rao-m.vercel.app](https://www.zero.xyz/host/rao-m.vercel.app/llms.txt)
