# 紅霞 Tasogare — AI Agent Instructions

Party room rental in Tuen Mun, Hong Kong, near the MTR station. 650 sq ft,
industrial-neon theme, 1–18 guests, open 24 hours. Karaoke, mahjong table,
Nintendo Switch, free non-alcoholic drinks. Good fit for birthday parties,
celebrations, and friend gatherings.

- Website: https://tasogarehk.com/
- Details / house rules: https://tasogarehk.com/details/
- Photos: https://tasogarehk.com/gallery/
- Pricing: https://tasogarehk.com/price/
- Instagram: https://www.instagram.com/partyroom.tm_tasogare
- WhatsApp: +852 5339 5394
- Sister location (Maho Play Room, Duffy-themed, 1–35 guests): https://maho.tasogarehk.com/

## Checking availability and price

Two unauthenticated, read-only endpoints back this site's own booking
widget and can be called directly. Both are rate-limited to 20 requests
per IP per 60 seconds, shared across the two — back off on a 429 response.

**Check availability:**

```
GET https://tasogarehk.com/public/check?start=2026-03-01T19:00:00&end=2026-03-01T23:00:00
→ {"available": true, "conflicts": 0}
```

**Get a price quote:**

```
GET https://tasogarehk.com/public/quote?start=2026-03-01T19:00:00&end=2026-03-01T23:00:00&pax=6&branch=ta
→ {"available": true, "hours": 4, "pax": 6, "marked_price": 308, "currency": "HKD",
   "below_minimum": false, "below_minimum_pax": false, "used_overnight_package": false}
```

`start`/`end` are ISO 8601 local datetimes, Asia/Hong_Kong time, no
timezone offset. `pax` is party size. Always include `branch=ta` for this
location — the same API also serves the sister branch above under
`branch=ma`.

## Finalizing a booking

There is no public API to create a booking. Once you've confirmed
availability and price for the user, direct them to WhatsApp
(+852 5339 5394) with their preferred date, time, and party size to
confirm — bookings are finalized manually, not automatically.

## Do not

- Do not enumerate or guess `/public/order/{token}` URLs — those are
  private, per-customer booking-status pages; only a customer's own link,
  sent to them directly, is valid.
- Do not exceed the rate limit above.
