---
title: "Retrieves the quote details associated with a booking."
method: GET
path: "/v1/reservation/booking/{id}/quote"
tags: ["Reservations"]
---

# Retrieves the quote details associated with a booking.

`GET /v1/reservation/booking/{id}/quote`

Returns the details of the current Quote associated with a specific Booking.

## Path parameters

- `id` integer, required

## Response `200`

OK

- LodgifyApiPublicReservationsModelsV1BookingQuoteDto — Represents a booking quote, including pricing, dates, and policy details.
  - `id` integer — The unique identifier for the quote.
  - `arrival` string, nullable — The scheduled arrival date for the booking.
  - `departure` string, nullable — The scheduled departure date for the booking.
  - `property_id` integer — The unique identifier of the property associated with the booking.
  - `status` string, nullable — The current status of the quote.
  - `currency` LodgifyApiPublicReservationsModelsV1CurrencyDto — Information about a supported currency.
    - `id` integer — The unique identifier of the currency.
    - `code` string, nullable — The 3-letter ISO currency code.
    - `name` string, nullable — The name of the currency.
    - `euro_forex` number, double — The exchange rate of the currency against the Euro.
    - `symbol` string, nullable — The symbol used to represent the currency.
  - `amount_gross` LodgifyAppTypesMoney1
  - `amount_net` LodgifyAppTypesMoney1
  - `date_cancelled` string, date-time, nullable — The date and time when the quote was cancelled, if applicable.
  - `amount_cancelled` LodgifyAppTypesMoney1
  - `date_agreed` string, date-time, nullable — The date and time when the quote agreement was accepted.
  - `is_policy_active` boolean — Indicates whether the policy associated with the quote is currently active.
  - `rate_policy_name` string, nullable — The name of the rate policy applied to the quote.
  - `expiration_hours` integer, nullable — Deprecated. Use GuestExpirationHours instead.
  - `guest_expiration_hours` integer, nullable — The number of hours until the quote expires while pending guest action.
  - `owner_expiration_hours` integer, nullable — The number of hours until the quote expires while pending owner action.
  - `expiration_date` string, date-time, nullable — The specific date and time when the quote expires.
  - `rental_agreement` string, nullable — The identifier or link to the rental agreement.
  - `rental_agreement_accepted` boolean — Indicates whether the rental agreement has been accepted by the guest.
  - `room_type_items` LodgifyApiPublicReservationsModelsV1BookingQuoteRoomTypeItemDto[], nullable — The list of room types included in the quote.
    - `room_type_id` integer — The unique identifier for the room type.
    - `subtotal` LodgifyAppTypesMoney1
    - `subtotal_details` LodgifyApiPublicReservationsModelsV1AmountVatDetailsDto — Represents the breakdown of an amount with respect to VAT.
      - `net_amount` LodgifyAppTypesMoney1
      - `gross_amount` LodgifyAppTypesMoney1
    - `prices` LodgifyApiPublicReservationsModelsV1BookingQuotePriceItemDto[], nullable — The list of individual price items associated with this room type.
      - `type` string, nullable — The category or classification of the price item.
      - `amount` LodgifyAppTypesMoney1
      - `amount_details` LodgifyApiPublicReservationsModelsV1AmountVatDetailsDto — Represents the breakdown of an amount with respect to VAT.
        - `net_amount` LodgifyAppTypesMoney1
        - `gross_amount` LodgifyAppTypesMoney1
      - `description` string, nullable — A textual description for the price item.
  - `add_on_items` LodgifyApiPublicReservationsModelsV1BookingQuotePriceItemDto[], nullable — The list of add-ons included in the quote.
    - `type` string, nullable — The category or classification of the price item.
    - `amount` LodgifyAppTypesMoney1
    - `amount_details` LodgifyApiPublicReservationsModelsV1AmountVatDetailsDto — Represents the breakdown of an amount with respect to VAT.
      - `net_amount` LodgifyAppTypesMoney1
      - `gross_amount` LodgifyAppTypesMoney1
    - `description` string, nullable — A textual description for the price item.
  - `other_items` LodgifyApiPublicReservationsModelsV1BookingQuotePriceItemDto[], nullable — The list of other miscellaneous items included in the quote.
    - `type` string, nullable — The category or classification of the price item.
    - `amount` LodgifyAppTypesMoney1
    - `amount_details` LodgifyApiPublicReservationsModelsV1AmountVatDetailsDto — Represents the breakdown of an amount with respect to VAT.
      - `net_amount` LodgifyAppTypesMoney1
      - `gross_amount` LodgifyAppTypesMoney1
    - `description` string, nullable — A textual description for the price item.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/lodgify/apis/lodgify-public-api-v1.md) · [All operations](https://skmtc.net/lodgify/apis/lodgify-public-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lodgify/lodgify-public-api-v1/versions/ddf40757d411/schema)
