# Flavours Flavours are optional tags which provide additional information about the activity: *Entrance tickets*, *Guided tour*, *Tour with audio guide*, etc. Flavours are part of the response for the `/activities/{activityUuid}` endpoint: ```json { [...] "flavours": [ { "id": 2, "name": "Entrance Tickets", "active": true, "slug": "entrance-tickets" } ] [...] } ``` It is possible to get the same list by calling the `/activities/{activityUuid}/flavours` endpoint too. ## On [musement.com](https://www.musement.com) You can see flavours in action on [musement.com](https://www.musement.com). When searching for activities, a single flavour is listed at the bottom of each *activity card*. The example below has the "Entrance Tickets" flavour: ![](/assets/flavours.96a1c2dee6bad1076eaebb37e0c26ae38852fad3c9de4d438920121c36c5865b.ae54516e.jpg) ## Every flavour To get a list of all possible flavours in the API, you need to make two API requests and combine the results. Flavours without a group: ```bash curl -X GET '{baseUrl}/flavours' \ -H 'X-Musement-Application: {applicationValue}' \ -H 'X-Musement-Version: 3.4.0' \ -H 'Authorization: Bearer {accessToken}' ``` Flavours with the `tui-commercial-classification` group: ```bash curl -X GET '{baseUrl}/flavours?group=tui-commercial-classification' \ -H 'X-Musement-Application: {applicationValue}' \ -H 'X-Musement-Version: 3.4.0' \ -H 'Authorization: Bearer {accessToken}' ``` There are no other flavour groups at this time.