> 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: TimeSlots ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-table-reservations-v2/time-slots/introduction.md ## Article Content: --- title: Introduction --- # Introduction The Time Slots API allows you to retrieve availability information for time slots at a reservation location on and around a given date and for a given party size. A time slot represents a period of time in a restaurant’s calendar. Time slots can have any duration, and restaurants generally set their durations based on party size. The following factors influence whether a time slot at a reservation location is available: * The size of the party that must be seated. * The reservation location’s table and seat pacing rules. * The reservation location’s business schedule (operating hours). * Existing reservations at the reservation location. With the Time Slots API, you can: * Get time slots for a reservation location. A time slot can have the following statuses: * `AVAILABLE` - The restaurant is open and available to seat a party of the given size at the given date and time. * `UNAVAILABLE` - The restaurant is open but unable to seat a party of the given size at the given date and time. * `NON_WORKING_HOURS` - The restaurant is not open at this time. `timeSlot` objects also indicate whether manual approval is required to make a reservation at the given reservation location. ## Before you begin It’s important to note the following points before starting to code: * You must install the Wix Table Reservations app. * You must have at least 1 location configured in your Dashboard under [Business Info](https://www.wix.com/my-account/site-selector/?buttonText=Select%20Site&title=Select%20a%20Site&autoSelectOnSingleSite=true&actionUrl=https:%2F%2Fwww.wix.com%2Fdashboard%2F%7B%7BmetaSiteId%7D%7D%2Fbusiness-info). * To use the Time Slots API, import `timeSlots` from `wix-table-reservations.v2`: ```js import { timeSlots } from 'wix-table-reservations.v2'; ``` ## Terminology For a comprehensive glossary of Table Reservations terms, see [Terminology](https://www.wix.com/velo/reference/wix-table-reservations-v2/terminology).