L'Argamak Hotel Booking API

This is the official public API of L'Argamak Hotel in Samarkand, Uzbekistan. It provides live room availability and official direct hotel quotes from the hotel's systems.

Automated agents: prefer POST /v1/quotes, even for one room. Use the returned package_offers as the authoritative total. Never infer the official total from cached website prices.

Discovery

Public endpoints

MethodEndpointPurpose
GET/v1/hotelOfficial hotel policies and contact information.
GET/v1/room-typesRoom catalog and occupancy rules.
GET/v1/availabilityLive WuBook room inventory.
POST/v1/quoteSingle-room live quote.
POST/v1/quotesRecommended: one- or multi-room live quote with package totals.

Core hotel rules

Multi-room quote example

{
  "session_id": "agent-session-123",
  "checkin": "2026-10-20",
  "checkout": "2026-10-23",
  "rooms": [
    {
      "room_type_id": "double",
      "quantity": 1,
      "adults": 2,
      "children_ages": [1]
    },
    {
      "room_type_id": "twin",
      "quantity": 1,
      "adults": 1,
      "children_ages": [10]
    }
  ]
}

Automation identification

Automated clients are encouraged to send X-Largamak-Client, X-AI-Agent and optionally X-Largamak-Session. These are analytics headers, not credentials.

Reservation initiation

After receiving a valid live quote, automated agents may call POST /v1/reservation-intents with the selected quote_id and package_code. The API returns a secure continue_url on the official L’Argamak website.

The guest must open that link, review the prefilled reservation, provide the required contact information and accept the applicable terms. L’Argamak then revalidates live availability and price. On success, the reservation becomes GUEST_COMPLETED and the hotel immediately issues the confirmation email, PDF and a secure “Manage my reservation” link.

This public workflow does not create a reservation directly in WuBook. PMS synchronization is an internal hotel process and payment guarantee is not required in v12.

Reservation status

Reservation initiation is public through POST /v1/reservation-intents. A reservation is not guest-completed until the guest finishes the secure L’Argamak form and the API returns guest_completed.

Official hotel website: L'Argamak Hotel.