# Get ticket variants Ticket variants describe the ticket options available for booking an experience. Endpoint: GET /v1/experiences/{experienceId}/ticket-variants Version: 0.1.0 Security: OAuth2 ## Path parameters: - `experienceId` (string, required) The ID of the experience. ## Header parameters: - `Accept-Language` (string, required) Combination of language and country/region. The format is a lowercase ISO 639-1 language code followed by an optional hyphen and an uppercase ISO 3166-1 country code. If no value matches what is available in the host's Storefront, an error response is returned. You can optionally provide multiple language-country pairs with a priority, separated by commas based on content negotation. Example: "en-GB; q=1.0, en-US; q=0.8" ## Query parameters: - `cursor` (string) The cursor for pagination. An empty string indicates the start of the list. - `limit` (integer) The maximum number of requests to return. ## Response 200 fields (application/json): - `next` (string) The cursor for the next page. An empty string indicates the end of the list. - `items` (array) - `items.id` (string, required) The unique identifier of the ticket variant. - `items.name` (string, required) The name of the ticket variant. - `items.price` (object, required) The price of the ticket variant. - `items.price.currency` (string, required) The ISO 4217 currency code. Example: "USD" - `items.price.value` (integer, required) The price in the smallest currency unit (e.g. cents for USD). Example: 2500 - `items.price.exponent` (integer, required) The number of decimal places for the currency. Example: 2 - `items.vat_amount` (object, required) The VAT amount of the ticket variant. - `items.description` (string) The description of the ticket variant. - `items.add_on_variants` (array) List of add-on variants that can be added to this ticket variant. - `items.add_on_variants.id` (string, required) The unique identifier of the add-on variant. - `items.add_on_variants.name` (string, required) The name of the add-on variant. - `items.add_on_variants.price` (object, required) The price of the add-on variant. - `items.add_on_variants.vat_amount` (object, required) The VAT amount of the add-on variant. - `items.add_on_variants.description` (string) The description of the add-on variant.