# Roam Hotel Takeaways

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

Retrieves detailed takeaway information for a specific hotel by hotel ID, with pay-per-request USDC billing via x402.

## Facts

- Endpoint: POST https://rao-m.vercel.app/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-hotel-takeaways-356a36b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JjT30xFg9GV_t6BzywVG3

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

Example prompt: Can you pull up the Roam takeaway details for the hotel with ID 'hotel_abc123'? I want the full accommodation info for that property.

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to fetch its detailed accommodation data without requiring API keys or subscriptions. Ideal for AI agents that can pay per request in USDC via x402 and need frictionless, auth-free hotel lookups.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data
- Unknown hotel ID may return success:false or an empty data object
- Payment failure via x402 prevents the request from completing
- Network timeout on the Vercel-hosted endpoint
- Malformed request body missing the required id field

## 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 hotel takeaway details for the specified hotel ID. The exact fields in data depend on the hotel, but likely include property info, amenities, pricing, and availability summaries.

## 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-356a36b4/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)
