> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Pricing ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-bookings-v2/pricing/introduction.md ## Article Content: # About the Wix Bookings Pricing API  
Developer Preview
APIs in Developer Preview are subject to change and are not intended for use in production.
Send us your suggestions for improving this API. Your feedback is valuable to us.
  > **Note:** This module is [universal](/api-overview/api-versions#universal-modules). > Functions in this module can run on both the backend and frontend, > unless specified otherwise. With the Wix Bookings Pricing API, you can preview and calculate the price of a booking. + The [`previewPrice()`](wix-bookings-v2/pricing/previewprice) function lets you retrieve information about how much a customer would have to pay for a booking's line items before the actual booking has been created. + The [`calculatePrice()`](wix-bookings-v2/pricing/calculateprice) function determines the base price of a booking. The price of the booking can be fixed, free, or varied. With [varied pricing](https://support.wix.com/en/article/wix-bookings-creating-a-course#step-2-set-the-price-and-payment-options-for-the-course), site owners can offer different prices for the same service based on their customers' choices. + Site owners can set up basic varied pricing options in the site's dashboard. + You can use the [Wix Bookings Service Options and Variants APIs](wix-bookings-v2/service-options-and-variants) to set up more robust pricing options. ## Terminology For a comprehensive glossary of Wix Bookings terms, see [Terminology](wix-bookings-v2/terminology). ## Before You Begin + You can only preview the price for line items belonging to the same service. + If using the [Wix Bookings Pricing Provider REST SPI](https://dev.wix.com/api/rest/wix-bookings/pricing-integration-spi) to set up your own custom logic for varied pricing, the [previewPrice()](wix-bookings-v2/pricing/previewprice) function is not supported and an error is issued. + To use the Bookings Pricing API, import `{ pricing }` from the `wix-bookings.v2` module in your Velo code: ```javascript import { pricing } from 'wix-bookings.v2'; ```