# Roam Accommodation Takeaways

> Roam Accommodation Takeaways 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-15).

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

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/api/takeaways
- Price: $0.05/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-takeaways-aee9519f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6byktbIAbZlZkVlRhnh8n

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

Example prompt: Can you pull up the details for hotel ID 'HTL-928374' on Roam — I want to see what that property has to offer before I decide to book it.

## When to prefer this

Use this endpoint when you already have a hotel ID (e.g. from a prior search step) and need to retrieve full property details or a summary. It is best suited for per-property detail lookups in agent workflows where you need structured accommodation data without a subscription, paying only per call in USDC.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty result
- Hotel ID not found in the system returns success:false
- Payment of $0.05 USDC via x402 fails due to insufficient funds or wallet issues
- Network timeout or service unavailability at 402stay.orbonomy.xyz
- Malformed request body without required 'id' field

## How this service works

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

## Output

A structured object containing hotel takeaway details for the requested hotel ID, including property information and accommodation data relevant for decision-making.

## 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-accommodation-takeaways-aee9519f/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)
