# Roam Hotel Takeaways

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

Retrieves detailed takeaway information for a specific hotel by ID, paid per-request in USDC via x402

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/takeaways
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-hotel-takeaways-98e6abc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g9zn5YkazjsbRYhTLXWqG

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

Example prompt: Can you pull the details for hotel ID 'h_4829xk' using Roam — I want the full takeaway info on that property without needing to create an account anywhere.

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to retrieve its full takeaway details without requiring account creation or API key management. Ideal for AI agents operating in a pay-per-use model via x402/USDC that need frictionless accommodation data retrieval.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Unknown hotel ID returns success:false or empty data
- Payment failure via x402 results in 402 response before data is returned
- Malformed request body missing required 'id' field returns a 400-level error
- Server unavailability returns 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 details — likely including property description, amenities, location, and other accommodation-relevant attributes 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-98e6abc6/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)
