Booking a ticket on TktPlz is a linear flow: you pick your seats or ticket quantities, the platform locks them for you, calculates the total cost, and presents a timed summary page where you confirm and pay. The whole process is designed so your selections are held exclusively for you during checkout — no one else can grab the same seats while you review your order.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Sumitbose5/tktplz/llms.txt
Use this file to discover all available pages before exploring further.
The booking flow
Select seats or ticket quantities
Depending on the event type you either pick numbered seats on a seat map (Seating events like movies) or choose how many tickets you want in each category (Open concerts, Online shows, and Registration events like hackathons).
Request a booking summary
Your selections are sent to the server. Before the summary is generated, two things happen in sequence: the server looks up the correct prices for your event, then locks your chosen seats or ticket quantities in Redis so no one else can take them.
Review the booking summary
You land on a summary page showing the event poster, venue, date, your selected seats or ticket categories, the itemised price breakdown, and the total payable. A 10-minute countdown timer is displayed — if it runs out, your locks are released automatically.
Price calculation
Prices are determined by thepricingOption set on the event. TktPlz supports two models:
Flat pricing
Every seat or ticket costs the same amount regardless of seat type. The
flatPrice value from the ticketPrices table is applied uniformly across all selected items.Categorised pricing
Each seat type (for example Regular, Premium, VIP) or ticket category for open/online events has its own price stored in the
ticketCategories table. The price for each item is matched by seatType or category type.| Ticket price range | Platform fee per ticket |
|---|---|
| ₹0 – ₹199 | ₹10 |
| ₹200 – ₹499 | ₹30 |
| ₹500 – ₹999 | ₹50 |
| ₹1,000 and above | ₹75 |
isPaid: false) the platform fee is ₹0 and the total amount is ₹0.
GST on the platform fee is tracked in the system but is currently set to ₹0 while it is temporarily disabled.
The booking summary page
The summary page shows everything you need to confirm before paying:- Event card — poster image, event name, venue (hall name, city, screen number for movies), and the date/time
- Seat details — for Seating events, the seat label and category (e.g. “Executive - F4, F5”); for Open/Online events, the ticket category and count
- Payment breakdown — order amount (sum of ticket prices), platform fees, and the total payable amount
- Your details — the email address on your account
- Countdown timer — starts at 10 minutes; when it reaches zero your selections are unlocked and you are returned to seat selection
beforeunload beacon so they immediately become available to other users.
Clicking the back button during checkout prompts a confirmation dialog. Confirming will unlock your seats and take you back to seat selection. Your session is not saved.
Available offers
The booking summary page includes an “Available Offers” section where coupon codes and referral discounts can be applied before paying. This section is surfaced as a dedicated UI area on the desktop layout.Booking cutoff types
Organisers control when ticket sales close by setting abookingCutoffType on the event. There are three options:
until_sold
until_sold
The default. Booking stays open as long as tickets are available. Sales end only when the last ticket is sold.
before_start
before_start
Booking closes a fixed number of minutes before the event starts. The organiser sets the
bookingCutoffMinutesBeforeStart value, and TktPlz calculates the exact bookingCloseTime from the event’s scheduleStart.custom_time
custom_time
Booking closes at a specific date and time set by the organiser in the
bookingCutoffTimestamp field. This is useful for events where registration or preparation must stop at a precise moment.