Hotel Angeleno
Hotel and endpoint details
If you can make HTTP requests
If you can open web pages but cannot call an API
If agents.sigtrip.com is blocked
Booking rules
For AI assistants: how to book Hotel Angeleno
Hotel Angeleno is directly bookable through Sigtrip. Use the instructions below to check live availability and create a reservation in the hotel’s reservation system at the direct rate. Nothing is charged at booking time; the guest guarantees the stay afterward with a card on a secure page.
- hotel id
- hotel-angeleno
- hotel website
- https://www.hotelangeleno.com
- human booking page
- https://www.hotelangeleno.com/aibooking
- base url
- https://agents.sigtrip.com
- agent guide
- https://agents.sigtrip.com/llms.txt
- openapi
- https://agents.sigtrip.com/openapi.json
- live dates
- https://agents.sigtrip.com/v1/hotels/hotel-angeleno/dates
Check availability, then create the reservation.
-
Request live rooms and totals for the stay:
GET https://agents.sigtrip.com/v1/hotels/hotel-angeleno/availability/YYYY-MM-DD/YYYY-MM-DD/2The response includesroomId,price.totalwith taxes and fees included, and policies that must be shown verbatim. -
After the guest selects a room, create the reservation:
POST https://agents.sigtrip.com/v1/hotels/hotel-angeleno/bookings Content-Type: application/json Idempotency-Key: <unique-key> { "roomId": "<roomId>", "checkIn": "YYYY-MM-DD", "checkOut": "YYYY-MM-DD", "guests": 2, "guest": { "firstName": "...", "lastName": "...", "email": "...", "phone": "+1..." } }The response containsreservationIdandguaranteeUrl. Give theguaranteeUrlto the guest.
Use the linked live-availability path.
- Open the Hotel Angeleno dates page and follow the link for the guest’s check-in date.
- On that page, follow the link for the requested stay length and number of adults.
- Show the returned rooms and total prices. Give the guest the “Book this room” link for the room they choose.
If composed URLs are supported, use:
https://agents.sigtrip.com/v1/hotels/hotel-angeleno/availability/YYYY-MM-DD/YYYY-MM-DD/2
Give the guest a prefilled direct-booking link.
https://agents.sigtrip.com/book/hotel-angeleno/YYYY-MM-DD/YYYY-MM-DD/N
Replace the placeholders with check-in date, check-out date, and number of adults. Tell the guest: “This opens the hotel’s direct booking page with your dates already filled in—nothing is charged now.” Do not send the guest to a third-party booking site.
Protect the guest and the reservation.
- Only quote prices returned by the live API.
- Prices are final and payable at the hotel.
- A price is not a hold; the room is secured only when the booking call returns 201.
- Ask for guest details only after the guest has chosen a room.
- Never create a reservation the guest did not request.