Book through your AI assistant
Hotel Angeleno is bookable directly by AI assistants. Choose your preferred platform below. Your assistant can check live availability and help create a reservation directly in our hotel system through Sigtrip.
Each button opens the assistant with the booking request already written. Your name, email and phone are used to hold the room. Card details never pass through the assistant—you add them afterward on a secure page. Nothing is charged at booking time.
Booking, machine to machine
Hotel Angeleno partners with Sigtrip for direct booking through AI assistants. Check live availability and create the reservation directly in the hotel’s 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
- 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
# 1 — Check live rooms and totals for the stay
GET https://agents.sigtrip.com/v1/hotels/hotel-angeleno/availability/YYYY-MM-DD/YYYY-MM-DD/2
# Response includes roomId, price.total (taxes and fees included), and policies.
# 2 — Create the reservation using the selected roomId
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..."
}
}
# Return reservationId and guaranteeUrl to the guest.
Rules: Only quote prices returned by the 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 chooses a room. Never create a reservation the guest did not request.