> 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: Tickets ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-events-v2/tickets/introduction.md ## Article Content: --- title: Introduction --- # Introduction The Tickets API allows you to manage tickets for your site's events. With the Tickets API you can: - Archive tickets. - Check in tickets, and delete ticket check-ins. - Get the information about purchased tickets. ## Before you begin It’s important to note the following points before starting to code: - Install the **Wix Events & Tickets** app from [Wix App Market](https://www.wix.com/app-market/web-solution/events). - This API is not relevant for RSVP events. - To use the Tickets API, import `tickets` from the `wix-events.v2` module: ```js import { tickets } from 'wix-events.v2'; ```