# Roam Hotel Takeaways

> Roam Hotel Takeaways 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-13).

Retrieves detailed takeaway/summary information for a specific hotel by its ID, payable per-request in USDC via x402

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/takeaways
- 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-hotel-takeaways-5f0bc0b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QTJFv8l-FGrpXwF5RhYkk

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-hotel-takeaways-5f0bc0b8 -d '<json body>'
```

Example prompt: I have hotel ID 'HTL_4829X' — can you pull the takeaway details for that property from Roam?

## When to prefer this

Use this endpoint when you have a specific hotel ID and need detailed takeaway or summary data about that property, and want a pay-per-request model with no auth setup or subscription. Ideal for AI agents operating in travel or accommodation workflows that need lightweight, on-demand hotel data retrieval without committing to an API key or monthly plan.

## Known failure modes

- Missing or invalid hotel ID returns an error response
- Unknown hotel ID returns no data or empty result
- Payment failure via x402 prevents the request from completing
- Malformed request body without required 'id' field returns a validation error
- Network timeout or 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

Returns a JSON object with a success boolean and a data object containing the hotel's takeaway/summary information for the requested hotel ID

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel 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-hotel-takeaways-5f0bc0b8/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)
