Get Cinema Ticket Categories & Pricing

Fetch available ticket categories with pricing information for a specific cinema experience (movie).

Get Cinema Ticket Types and Pricing

GET /api/v1/merpi/experience/tickets/{experience_id}

Overview

Cinema movies use the same tickets endpoint as regular experiences. To get ticket types and pricing for a movie, simply call the endpoint with the cinema experience ID.

circle-exclamation

Quick Example

GET /api/v1/merpi/experience/tickets/9b0c2340-8274-4e9b-b7b8-a652dbb652eb HTTP/1.1
Accept: application/json

Response:

{
  "success": true,
  "status": 200,
  "message": "Success",
  "data": {
    "tickets": [
      {
        "id": "3161487b-f3f7-4b7d-a92c-a09bfaf11347",
        "title": "Regular",
        "price": 2100,
        "slots_remaining": 3454,
        "price_breakdown": {
          "ticket_price": 2000,
          "convenience_fee": 40,
          "merchant_commission": 60
        }
      },
      {
        "id": "ee1cbdd5-b581-4363-aab0-050dca412b17",
        "title": "VIP",
        "price": 5250,
        "slots_remaining": 3455,
        "price_breakdown": {
          "ticket_price": 5000,
          "convenience_fee": 100,
          "merchant_commission": 150
        }
      }
    ]
  }
}

Cinema-Specific Notes

When booking cinema tickets, you need:

  1. Ticket category ID - From this endpoint (e.g., "Regular", "VIP")

  2. Showtime ID - From the Get Cinema Experience Details endpoint

The ticket categories and prices apply to all showtimes for the movie.

Next Steps

Last updated