Filtering retrieved events

Query parameters can be used to filter the retrieved events by the following criteria.

Ongoing local events

Use to quickly access local (municipality level) events that are upcoming or have not ended yet. Combines the search on a number of description, name, and keyword fields. Locality is defined on the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR. Use local_ongoing_AND=lapset,musiikki to search for the events with both search terms in the description fields and local_ongoing_OR to search for the events with at least one term mentioned. In case you need to realize a more complicated logic and search for a combination of search terms as in (singing OR vocal) AND (workshop OR training) use local_ongoing_OR_setX parameter, where X is a number.

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

Ongoing internet events

Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the same as for local ongoing events, three variations: internet_ongoing_AND, internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that local_ongoing and internet_ongoing are mutually exclusive.

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

All ongoing events, both internet and local combined. Usage is the same as for local ongoing events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

Event time

Use start and end to restrict the date range of returned events. Any events that intersect with the given date range will be returned.

The parameters start and end can be given in the following formats:

  • ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
  • yyyy-mm-dd

In addition, today (for start or end of today) and now (for the exact current timestamp) can be used in either parameter to get current events.

Example:

event/?start=today&end=2020-12-31

See the result

event/?start=now&end=today

See the result

You can also use days filter to restrict the date range of returned events. Any events that intersect with the current time and amount of days from current time will be returned.

The parameters start and end cannot be used together with the days parameter.

Example:

event/?days=7

See the result

Event start/end time

Use starts_after, starts_before, ends_after, and ends_before to filter for the events that start and end within certain hours, for example for the ones that start after 17:00 and end before 21:00.

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

event/?starts_after=16:30&ends_before=21

See the result

Event weekday

Use weekday to filter for the events that occurs within certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday and 7 is Sunday.

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

Use max_duration to filter for the events that last up to a specified time, or min_duration to filter for the events that last at least a specified amount of time.

The parameters are expressed in format:

  • 86400 or 86400s (24 hours)
  • 180m or 3h (3 hours)
  • 3d (3 days)

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

To restrict the retrieved events to a geographical region, use the query parameter bbox in the format

bbox=west,south,east,north

Where west is the longitude of the rectangle's western boundary, south is the latitude of the rectangle's southern boundary, and so on. The default coordinate system is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid parameter.

Example:

event/?bbox=24.9348,60.1762,24.9681,60.1889

See the result

Specific location

To restrict the retrieved events to a known location(s), use the query parameter location, separating values by commas if you wish to query for several locations.

Location ids are found at the place endpoint, which lists the locations in decreasing number of events found. Most locations originate from the Helsinki service point registry (tprek), hence the format tprek:28473. An easy way to locate service points is to browse servicemap.hel.fi, which uses the same location ids, e.g. servicemap.hel.fi/unit/28473.

Example:

event/?location=tprek:28473

See the result

District

To restrict the retrieved events to city district(s), use the query parameter division, separating values by commas if you wish to query for several divisions.

City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.

You may query either by specific OCD division type peruspiiri:malmi, or by division name malmi. The latter query checks all divisions with the name, regardless of division type.

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

To restrict the retrieved events to a certain distance from a point, use the query parameters dwithin_origin and dwithin_metres in the format

dwithin_origin=lon,lat&dwithin_metres=distance

Where lon is the longitude of the origin point, lat is the latitude of the origin point, and distance is the radius in metres. Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden with the srid parameter.

Example:

event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000

See the result

Event category

To restrict the retrieved events by category, use the query parameter keyword, separating values by commas if you wish to query for any of several keywords, or the parameter keyword_AND, if you require all provided values (separated by commas) to be present. Use parameter keyword! if you require all provided values (separated by commas) not to be present.

In case you need to realize a more complicated logic and search for a combination of keywords as in (yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX parameter, where X is a number.

Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing number of events found. The common keywords used in all events originate from the general Finnish ontology (YSO), hence the format yso:p4354.

The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.

Example:

event/?keyword=yso:p4354

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

Keyword set search

Some services maintain curated keyword sets, which can also be used in search with query parameters keyword_set_AND and keyword_set_OR. As names of the keyword sets can repeat between the services, ids should be supplied. Say, we have one keyword set Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request /event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching the following expression: (rock OR jazz) AND (workshop OR seminar).

Event last modification time

To find events that have changed since you last polled Linkedevents API (to e.g. update your event cache), it is best to use the query parameter last_modified_since. This allows you to only return data that has changed after your last update. You may also include events that have been deleted in the API in the results by using the show_deleted filter. This allows you to update your cache with all added, modified and deleted events without having to fetch *all* future events every time.

Example:

event/?last_modified_since=2020-04-07&show_deleted=true

See the result

Specific ids

To find events that have specific id use parameter ids, separating values by commas if you wish to query for several event ids.

Example:

event/?ids=helsinki:1

See the result

Event status

Events in Linkedevents (indicated by the event_status field) may be either scheduled as planned (EventScheduled), rescheduled if their start time has changed after they were first published (EventRescheduled), cancelled if they were cancelled altogether after publication (EventCancelled), or postponed to the indefinite future if they could not be organized at the original time (EventPostponed). These statuses stem from schema.org.

You may filter events with only the desired status with the event_status filter.

Example:

event/?event_status=EventCancelled

See the result

It is also possible to use multiple event_status parameters in a single query. Statuses must be separated by a comma.

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

Events in Linkedevents (indicated by the type_id field) may be event (General), course (Course) or volunteering (Volunteering). By default, only events with General type_id are returned.

You may filter events with only the desired type with the event_type filter, separating values by commas if you wish to query for several types.

Example:

event/?event_type=General,Course

See the result

Event text

To find out events that contain a specific string in any of the text fields, use the query parameter text.

Example:

event/?text=shostakovich

See the result

Combined text

While the text search is looking for the events containg exact matches of the search string, combined_text filtering finds events with exact text match for event text fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works similar ways as keyword free_text filtering.

Example:

event/?combined_text=lapppset

See the result

Event price

Events may or may not contain the offers field that lists event pricing. To return only free or non-free events, use the query parameteris_free. However, note that from some data sources, no event pricing info is available, so this filter will only return those events which have pricing data available.

Example:

event/?is_free=true

See the result

Event language

To find events that have a set language or event data translated into that language, use the query parameter language. If you only wish to see events that have a set language, use the in_language parameter, and if you only want event data translated to a set language, use the translation parameter.

Supported languages are found at the language endpoint, which also lists which languages have translations available. Currently, translations are supported in fi, sv, en, ru, zh_hans, and ar.

Example:

event/?language=ru

See the result

Event audience age boundaries.

To find events that are designed for specific age audiences use the query paramteres audience_min_age_lt, audience_min_age_gt, audience_max_age_lt, audience_max_age_gt.

audience_min_age_lt returns the events whose minimal age is lower than or equals the specified value, audience_min_age_gt returns the events whose minimal age is greater than or equals the specified value. max_age parameteres, naturally, work the same way only for the maximum age of the event audience. Note, that the events that are not designed for the specific audiences will be omitted.

audience_max_age and audience_min_age parameters without lt and gt modifiers are left for backward compatibility only and should not be employed.

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

To find events that are suitable for certain age use the query paramter suitable_for that returns all the events that are suitable for the age or age range specified. Under the hood it excludes all the events that have max age limit below or min age limit above the age specified. Suitable events with just one age boundary specified are returned, events with no age limits specified are excluded. Query parameter can take either one or two arguments, the order of parameters when specifying the age range is not important.

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

To find out events that are published by a specific organization, use the query parameter publisher, separating values by commas if you wish to query for several publishers.

Existing publisher organizations are found at the organization endpoint. City of Helsinki internal publishers have ids of the form ahjo:origin_id as they originate from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External publishers may have their own namespaces, ids and hierarchies.

Also, it is possible to fetch events under a specific publisher organization hierarchy (say City of Helsinki) by using the parameter publisher_ancestor, which returns all events published by any suborganizations (at any level) of the given organization.

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

To find out events that originate from a specific source system, use the query parameter data_source. All event ids are of the form data_source:origin_id, so this allows you to return only events coming to Linkedevents from a specific data system. helsinki is the name of our own data source, i.e. events where Linkedevents API itself is the master data.

Example:

event/?data_source=helsinki

See the result

Event hierarchy

Events in linkedevents may be either standalone events, or they may have super or sub events. There are two types of super events, indicated in the field super_event_type by recurring (repeating events, event series) and umbrella (festivals etc.).

recurring events last for a period and have sub_events that all have similar data, but different dates.

umbrella events last for a period and may have different sub_events, including recurring events (i.e. an umbrella festival may have a recurring theater play sub_event, which may have several nights as sub_events.)

Super event type

You may use the query parameter super_event_type, comma separated, to get only super events of specific types. You may use none if you want non-super events included.

Example:

event/?super_event_type=umbrella,none

See the result

Super event

You may use the query parameter super_event, comma separated, to get all subevents for specific superevents. You may use none if you want all events which have no superevent included.

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

You may use the query parameter hide_super_event to exclude super events from the response.

Example:

event/?hide_super_event=true

See the result

Hide recurring children

You may use the query parameter hide_recurring_children to hide all child events for super events which are of type recurring.

Example:

event/?hide_recurring_children=true

See the result

Sub events

You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.

If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with weekday=6,7

Example:

event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

Open enrolment

Two endpoints show the events that have connected registrations and have places either at the event itself enrolment_open or in the waiting lists enrolment_open_waitlist. Note that the latter query parameter when set to true returns also the events that have open spots at the event itself. Null values are regarded as unlimited number of spots at the event or in the waiting list.

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.

enrolment_open_on parameter displays events where the given datetime is within the enrolment_start_time and enrolment_end_time of the events. If an event has a registration, the registration's enrolment start and end times will be preferred over the event's times.

For example:

event/?enrolment_open_on=2024-02-19T12:00:00

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.

maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_gte=10

See the result

maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.

minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_gte=10

See the result

minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than or equal the applied parameter (integer value)

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.

registration__remaining_attendee_capacity__gte parameter displays events where registration's remaining attendee capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

registration__remaining_attendee_capacity__isnull parameter displays events where registration's remaining attendee capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.

registration__remaining_waiting_list_capacity__gte parameter displays events where registration's remaining waiting list capacity is greater than or equal the applied parameter (integer value)

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's remaining waiting list capacity is or is not NULL

The values True, true and 1 are all considered to be "true".

The values False, false and 0 are all considered to be "false".

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users

Show all events

show_all parameter displays all events authenticated user can edit, including drafts, and public non-editable events

Example:

event/?show_all=true

See the result

Publication status

Events in Linkedevents (indicated by the publication_status field) may be either (draft) if the event is not published yet or (public) for published events.

You may filter events with only the desired publication status with the publication_status filter.

Example:

event/?publication_status=draft

See the result

Only editable events

admin_user parameter displays all events authenticated user can edit, including drafts, but no other public events

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.

If you want to include the complete data from related resources in the current response, use the keyword include. Please note, however, that including all the resources inlined in *every* event will result in a huge number of duplicate data in the json, making the json very slow to generate and process and causing considerable API load and long response times when too many such requests are made. Therefore, if you are listing the maximum number of events (100) or updating your cache with all events, please consider caching the keyword and location data separately to prevent unnecessary API slowdown and continuous repeated work. Keyword and location data seldom change and are easily fetched from their own endpoints separately.

Example:

event/?include=location,keywords

See the result

Ordering

Default normal search ordering is descending order by -last_modified_time. Default full text search ordering is based on search relevance rank and id (-rank,id). You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

The ordering filters enrolment_start and enrolment_end have two notable differences compared to the rest of the ordering filters related to enrolment start and enrolment end times:

First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.

Second, if neither the event's registration nor the event has enrolment times defined (enrolment_start_time and enrolment_end_time are both NULL), the event will be placed at the end of the results list regardless of whether ascending or descending order was used.

GET /v1/event/?format=api&hide_super_event=true&page=35
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 27148,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=36",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=34"
    },
    "data": [
        {
            "id": "kulke:66992",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "44,90-48,90 €",
                        "sv": "44,90-48,90 €",
                        "en": "44,90-48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3954795",
                        "sv": "https://www.lippu.fi/eventseries/name-3954795",
                        "en": "https://www.lippu.fi/eventseries/name-3954795"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490662,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T06:14:23.761364Z",
                    "last_modified_time": "2025-09-09T06:14:23.761380Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777057.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490662/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T06:14:23.644222Z",
            "last_modified_time": "2025-09-26T12:13:49.405258Z",
            "date_published": null,
            "start_time": "2026-01-30T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.",
                "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.",
                "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C41FDC8F7F93AA135D67E415C63EE2E9/Maagikot_5_-_Variety_of_Wonders",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C41FDC8F7F93AA135D67E415C63EE2E9/Maagikot_5_-_Variety_of_Wonders",
                "en": "http://www.savoyteatteri.fi/en/events/event/C41FDC8F7F93AA135D67E415C63EE2E9/Maagikot_5_-_Variety_of_Wonders"
            },
            "name": {
                "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom",
                "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom",
                "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom"
            },
            "description": {
                "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>",
                "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>",
                "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä",
                "sv": "Nelonen Media Live",
                "en": "Nelonen Media Live"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66992/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66983",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "44,90-48,90 €",
                        "sv": "44,90-48,90 €",
                        "en": "44,90-48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3954795",
                        "sv": "https://www.lippu.fi/eventseries/name-3954795",
                        "en": "https://www.lippu.fi/eventseries/name-3954795"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490661,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T06:14:23.352742Z",
                    "last_modified_time": "2025-09-09T06:14:23.352759Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777055.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490661/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T06:14:23.226375Z",
            "last_modified_time": "2025-09-26T12:13:49.071053Z",
            "date_published": null,
            "start_time": "2026-01-29T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.",
                "sv": "Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.",
                "en": "Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/ABFF581B3895AC6790B8EA010C60E2E5/Maagikot_5_-_Variety_of_Wonders",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/ABFF581B3895AC6790B8EA010C60E2E5/Maagikot_5_-_Variety_of_Wonders",
                "en": "http://www.savoyteatteri.fi/en/events/event/ABFF581B3895AC6790B8EA010C60E2E5/Maagikot_5_-_Variety_of_Wonders"
            },
            "name": {
                "fi": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom",
                "sv": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom",
                "en": "Maagikot 5 - Variety of Wonders – Pete Poskiparta, Joni Pakanen, Herra Koskinen, Gigi, Christian Engblom"
            },
            "description": {
                "fi": "<p>Suomen suurimmaksi magian ja illuusion show’ksi vakiintunut Maagikot lähtee jälleen kiertueelle alkuvuodesta 2026 – täysin uudella ohjelmistolla! Variety of Wonders on elämys, joka tarjoaa ihmetystä, iloa ja yllätyksiä koko perheelle.</p><p><b>Mitä kaikkea lavalla nähdään?</b></p><p>Varietee on taiteen juhlaa – se yhdistää taikuuden, mentalismin, akrobatian, jongleerauksen ja komedian yhdeksi häikäiseväksi kokonaisuudeksi. Maagikot 5 – Variety of Wonders tuo lavalle huippuammattilaiset, joiden esitykset saavat yleisön haukkomaan henkeään ja hymyilemään sydämensä kyllyydestä. Luvassa on mieltä taivuttavaa mentalismia, maailmanennätysjongleerausta, akrobatiaa, joka uhmaa painovoimaa, sekä taikuutta, joka rikkoo todellisuuden rajoja.</p><p><b>Esiintyjät:</p><p>Pete Poskiparta</b> – Suomen ainoa kansainvälisesti palkittu mentalisti<br><b>Joni Pakanen</b> – Vuoden esiintyjä, taikuuden, komedian ja teatterin mestari<br><b>Herra Koskinen</b> – Moninkertainen maailmanennätysjonglööri<br><b>Christian Engblom</b> – Kahdesti Penn & Telleriä huijannut mestaritaikuri<br><b>Gigi</b> – Ympäri maailmaa esiintynyt akrobaatti, joka tuo lavalle liikettä ja lumoa</p><p><b>Maagikot-ilmiö jatkuu</b></p><p>Jo viidettä kertaa järjestettävä Maagikot on vakiinnuttanut paikkansa Suomen suosituimpana magian ja illuusion kiertueena. Keväällä 2025 kiertue rikkoi yleisöennätyksiä – yli <b>12 000 katsojaa</b> täytti konserttisalit ympäri maan.<br>Kiertueen suosio perustuu maailmanluokan esiintyjiin, joiden taidokkaat ja hämmästyttävät esitykset puhuttelevat kaikenikäisiä. Tämä show ei ole vain temppuja – se on kokemus, joka jää mieleen pitkäksi aikaa.</p><p><b>Katsojien palautteita viime kiertueelta:</b></p><p><i>\"Ensimmäinen kerta Maagikoissa. Ylitti odotukseni!”<br>\"Kiitos hienosta showsta! Tämä oli upea yhteinen kokemus minulle ja teini-ikäiselle lapselleni.”<br>“Isot kiitokset esityksestä, oli todella upea kokemus. Koko meidän perhe nautti suunnattomasti!”</i></p><p>Parhaat paikat myydään nopeimmille – varmista paikkasi ajoissa!</p><p>Suositusikäraja: 10+</p><p>Show’n kesto noin 2 tuntia, sisältäen väliajan</p>",
                "sv": "<p>Maagikot har etablerat sig som den största magi- och illusionsshowen i Finland och åker återigen på turné i början av 2026 – med ett helt nytt program! Variety of Wonders är en upplevelse som bjuder på häpnad, glädje och överraskningar för hela familjen.</p><p>Vad allt kommer vi att få se på scenen?</p><p>En varieté är en hyllning till konsten – en kombination av magi, mentalism, akrobatik, jonglering och komedi i en imponerande helhet. Maagikot 5 – Variety of Wonders visar de främsta proffsen på scenen vars föreställningar får åskådarna att kippa efter andan och le från djupet av sina hjärtan. Det blir mentalism som utmanar sinnet, världsrekord i jonglering, akrobatik som trotsar tyngdkraften och magi som spränger verklighetens gränser.</p><p>På scenen:</p><p>Pete Poskiparta – Finlands enda internationellt prisbelönta mentalist<br>Joni Pakanen – Årets artist, mästare på magi, komedi och teater<br>Herra Koskinen – jonglör med flera världsrekord<br>Christian Engblom – mästertrollkarl som lurat Penn & Teller två gånger<br>Gigi – akrobat som har uppträtt över hela världen och för med sig rörelse och magi på scenen</p><p>Fenomenet Maagikot fortsätter</p><p>Maagikot ordnas nu för femte gången och har etablerat sig som den mest populära magi- och illusionsturnén i Finland. Under våren 2025 slog turnén publikrekord – mer än 12 000 personer fyllde konsertsalarna runt om i landet.<br>Turnéns popularitet bygger på artister i världsklass som med sina skickliga och häpnadsväckande framträdanden tilltalar åskådare i alla åldrar. Den här showen handlar inte bara om trick – den är en upplevelse som du kommer ihåg länge.</p><p>Respons från åskådarna på den senaste turnén:</p><p>”Första gången jag sett Maagikot. Överträffade mina förväntningar!”<br>”Tack för en fin show! Det var en fantastisk upplevelse för mig och mitt tonårsbarn.”<br>”Tack så mycket för föreställningen, det var en riktigt fin upplevelse. Hela vår familj tyckte väldigt mycket om den!”</p><p>De bästa platserna säljs till de snabbaste – se till att få en plats!</p><p>Åldersrekommendation: 10+</p><p>Föreställningens längd ca 2 timmar, inklusive paus.</p>",
                "en": "<p>Established as the biggest magic and illusion show in Finland, Maagikot will go on tour again in early 2026 – with a completely new programme! Variety of Wonders is an experience that offers wonder, joy and surprises for the whole family.</p><p>What will you see on stage?</p><p>Varietee is a celebration of art, combining magic, mentalism, acrobatics, juggling and comedy into one dazzling whole. Maagikot 5 – Variety of Wonders fills the stage with top professionals whose performances will leave the audience gasping for breath and smiling wide with their hearts full. There will be mind-blowing mentalism, world record juggling, acrobatics that defy gravity and magic that breaks the boundaries of reality.</p><p>Performers:</p><p>Pete Poskiparta - Finland's only internationally awarded mentalist<br>Joni Pakanen - Performer of the Year, master of magic, comedy and theatre<br>Herra Koskinen - A juggler with multiple world records<br>Christian Engblom - The master magician who twice tricked Penn & Teller<br>Gigi - An acrobat who has performed all over the world, bringing movement and magic to the stage</p><p>The Maagikot phenomenon continues</p><p>Now in its fifth year, the Maagikot show has established itself as the most popular magic and illusion tour in Finland. In spring 2025, the tour broke audience records – more than 12,000 people filled concert halls across the country.<br>The tour's popularity is built on the world-class performers whose skilful and astonishing performances appeal to all ages. This show is not just about tricks – it's an experience that will stay with you for a long time.</p><p>Audience feedback from the last tour:</p><p>“First time with Maagikot. Exceeded my expectations!”<br>“Thank you for a great show! It was a great shared experience for me and my teenage child.”<br>“Thank you very much for the performance, it was an amazing experience. Our whole family enjoyed it immensely!”</p><p>The best seats are sold to the fastest – make sure to book your ticket on time!</p><p>Age recommendation: 10+</p><p>Duration of the show about 2 h, including intermission</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Nelonen Media Live yhteistyössä Radio Aito Iskelmä",
                "sv": "Nelonen Media Live",
                "en": "Nelonen Media Live"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66983/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66957",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "34 / 38 €",
                        "sv": "34 / 38 €",
                        "en": "34 / 38 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/",
                        "sv": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/",
                        "en": "https://www.lippu.fi/artist/koepikallio/koepi-kallio-huono-suoritus-3757437/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490660,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T06:14:22.910081Z",
                    "last_modified_time": "2025-09-09T06:14:22.910098Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777069.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490660/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T06:14:22.757846Z",
            "last_modified_time": "2025-09-26T12:13:48.704488Z",
            "date_published": null,
            "start_time": "2026-01-09T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.",
                "sv": "Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).",
                "en": "Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_K-18",
                "en": "http://www.savoyteatteri.fi/en/events/event/EBB0C3920DCB8832BACC8DC0A44784F5/Kopi_Kallio_Huono_suoritus_R-18"
            },
            "name": {
                "fi": "Köpi Kallio: Huono suoritus K-18 – Myynti alkaa ma 6.10. klo 9, Lippu.fi",
                "sv": "Köpi Kallio: Huono suoritus K-18",
                "en": "Köpi Kallio: Huono suoritus R-18"
            },
            "description": {
                "fi": "<p>Köpi Kallio tekee oman stand up -shownsa, ja sen nimi on Huono suoritus.</p><p><i>Huono suoritus</i> on särmikäs summaus kolmekymppisen radio- ja tv-tähden tähänastisesta elämästä ja parhaista stand up -jutuista.</p><p>Tässä esityksessä mustaa huumoria huokuvat ja paikoin kohtuuttomuuksiin yltyvät vitsit saavat lisäpotkua Köpille itselleen tapahtuneesta pysäyttävästä tarinasta.</p><p>Mitä tarvitaan, että ihminen pysähtyy, lopettaa oman elämänsä suorittamisen ja keskittyy nauttimaan hetkestä? Siihen tarvitaan <i>Huono suoritus</i>.</p><p>Jokaisen shown alussa <i>Huonon suorituksen</i> “virallisena valvojana” ja erikoisvieraana esiintyy <b><i>Kovan viikon ilta</b></i> -ohjelmasta tuttu stand up -koomikko <b>Jukka Lindström</b>.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Ikäraja: K-18</p><p>Permanto K18 anniskelualue. Parvella ei anniskelua.</p>",
                "sv": "<p>Köpi Kallio gör en egen stand-up show, som heter Huono suoritus (Dålig prestation).</p><p>Huono suoritus är en kantig sammanfattning av den trettioåriga radio- och tv-stjärnans liv hittills och hans bästa ståupphistorier.</p><p>I föreställningen får skämten, som är fulla av svart humor och ibland orimligheter, en skjuts av Köpis fängslande berättelse om sig själv.</p><p>Vad krävs för att en person ska stanna upp, sluta se sitt liv som en prestation och börja njuta av ögonblicket? För det behövs showen Huono suoritus.</p><p>Varje show inleds av ståuppkomikern Jukka Lindström, känd från programmet Kovan viikon ilta, som \"officiell övervakare\" för föreställningen och som gästande artist.</p><p>Längd ca 2 h, inklusive paus.</p><p>Åldersgräns: K-18.</p><p>Parkett K-18-område med serveringstillstånd. Ingen servering på balkongen.</p>",
                "en": "<p>Köpi Kallio is doing his own stand-up show, called Huono suoritus – Poor Performance.</p><p>Huono suoritus is an edgy summation of the thirtysomething radio and TV star's life so far and his best stand-up stories.</p><p>The jokes in the show – full of black humour and sometimes even over the top – become even more poignant after hearing Köpi’s own extraordinary experience.</p><p>What does it take for a person to stop, put a pause on performing their life and focus on enjoying the moment? It takes a poor performance.</p><p>Stand-up comedian Jukka Lindström, a familiar face from the TV show Kovan viikon ilta, will launch each Huono suoritus show with his own performance, filling the shoes of both the show’s ‘official supervisor’ and special guest.</p><p>Duration approx. 2 h, including intermission</p><p>Age rating: 18 and up</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "JL-Komediapaja Oy",
                "sv": "JL-Komediapaja Oy",
                "en": "JL-Komediapaja Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66957/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jhe4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.599773Z",
            "last_modified_time": "2025-09-26T11:49:32.599792Z",
            "date_published": null,
            "start_time": "2025-12-09T08:00:00Z",
            "end_time": "2025-12-09T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhe4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jhxe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.451697Z",
            "last_modified_time": "2025-09-26T11:49:32.451716Z",
            "date_published": null,
            "start_time": "2025-12-02T08:00:00Z",
            "end_time": "2025-12-02T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jhxe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jibe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.303285Z",
            "last_modified_time": "2025-09-26T11:49:32.303305Z",
            "date_published": null,
            "start_time": "2025-11-25T08:00:00Z",
            "end_time": "2025-11-25T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jibe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jiki",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.163824Z",
            "last_modified_time": "2025-09-26T11:49:32.163845Z",
            "date_published": null,
            "start_time": "2025-11-18T08:00:00Z",
            "end_time": "2025-11-18T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jiki/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jium",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:32.016273Z",
            "last_modified_time": "2025-09-26T11:49:32.016292Z",
            "date_published": null,
            "start_time": "2025-11-11T08:00:00Z",
            "end_time": "2025-11-11T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jium/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7ji5u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:31.865851Z",
            "last_modified_time": "2025-09-26T11:49:31.865870Z",
            "date_published": null,
            "start_time": "2025-11-04T08:00:00Z",
            "end_time": "2025-11-04T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7ji5u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jjhe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:31.718743Z",
            "last_modified_time": "2025-09-26T11:49:31.718761Z",
            "date_published": null,
            "start_time": "2025-10-28T08:00:00Z",
            "end_time": "2025-10-28T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjhe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyl7jjrq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jj3q/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490924,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-09-26T11:11:16.794123Z",
                    "last_modified_time": "2025-09-26T11:11:16.794137Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/3836b941-e3bd-42a3-9ab4-a0ca491c4ccf.png",
                    "cropping": "52,0,418,365",
                    "photographer_name": "AI",
                    "alt_text": "AI:lla luotu kuva jossa vanhukset kävelevät kauppakeskuksessa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490924/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-09-26T11:49:31.574090Z",
            "last_modified_time": "2025-09-26T11:49:31.574109Z",
            "date_published": null,
            "start_time": "2025-10-21T07:00:00Z",
            "end_time": "2025-10-21T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ohjattu kävelylenkki senioreille ostoskeskuksessa säältä suojassa.",
                "sv": "Guidad promenad för seniorer i köpcentrum, skyddad från väder och vind.",
                "en": "Guided walking tour for seniors in a shopping mall, sheltered from the weather"
            },
            "info_url": null,
            "name": {
                "fi": "Kauppakeskuskävely ",
                "sv": "Shoppingcentrumpromenad ",
                "en": "Shopping mall walk"
            },
            "description": {
                "fi": "<p>Seniori, tervetuloa mukaan kauppakeskuskävelylle!</p><p>Lämmittely Ison Omenan kirjaston Stagella ja siitä lähtö kävelylle Isoon Omenaan. Takin saat säilytykseen kirjastoon kävelyn ajaksi. </p><p>Tervetuloa!</p><p>Arkipyhinä kävelyä ei järjestetä. </p><p><br></p>",
                "sv": "<p>Senior, välkommen med på shoppingcentrumpromenad!</p><p>Uppvärmning på Stagen i Iso Omena bibliotek och sedan startar promenaden i Iso Omena. Du kan förvara din jacka i biblioteket under promenaden.</p><p>Välkommen!</p><p>Promenader ordnas inte under helgdagar</p>",
                "en": "<p>Seniors, welcome to join the shopping mall walk!</p><p>Warm-up at the Stage in Iso Omena Library, followed by the walk in Iso Omena. You can leave your coat in the library during the walk.</p><p>Welcome!</p><p>Walks are not held on public holidays</p>"
            },
            "location_extra_info": {
                "fi": "Stage ja Soittohuone",
                "sv": "Stage ja Soittohuone",
                "en": "Stage ja Soittohuone"
            },
            "provider": {
                "fi": "Espoon liikuntatoimi",
                "sv": "Espoon liikuntatoimi",
                "en": "Espoon liikuntatoimi"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyl7jjrq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66873",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "35/39 €",
                        "sv": "35/39 €",
                        "en": "35/39 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/andrea-vanzo/",
                        "sv": "https://www.lippu.fi/artist/andrea-vanzo/",
                        "en": "https://www.lippu.fi/artist/andrea-vanzo/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T12:15:05.608831Z",
                    "last_modified_time": "2025-08-19T12:15:05.608850Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776268.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-19T12:15:05.435242Z",
            "last_modified_time": "2025-09-26T11:13:55.542236Z",
            "date_published": null,
            "start_time": "2026-01-23",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Neoklassisen musiikin suurnimi Andrea Vanzo ensimmäistä kertaa suomeen",
                "sv": "Den neoklassiska musikens storhet Andrea Vanzo för första gången i Finland",
                "en": "Andrea Vanzo, one of the greats of neoclassical music, to visit Finland for the first time"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_",
                "en": "http://www.savoyteatteri.fi/en/events/event/593E65BA49882A42BBCFD8E3B0B50791/Andrea_Vanzo_Intimacy_Part_2_IT_"
            },
            "name": {
                "fi": "Andrea Vanzo – Intimacy Part 2 (IT)",
                "sv": "Andrea Vanzo – Intimacy Part 2 (IT)",
                "en": "Andrea Vanzo – Intimacy Part 2 (IT)"
            },
            "description": {
                "fi": "<p>Neoklassisen musiikin suurnimi Andrea Vanzo ensimmäistä kertaa suomeen</p><p>Palkittu italialainen säveltäjä sekä valtavan somesuosion saavuttanut Andrea Vanzo saapuu ensi kertaa Suomeen omalla konserttikiertueellaan. Andrea Vanzo – Intimacy Part 2 -konsertti kuullaan Helsingissä Savoy-teatterissa perjantaina 23. tammikuuta 2026.</p><p>Vanzo tunnetaan postminimalistisesta tyylistään, jossa yhdistyvät moderni klassinen musiikki ja popin äänimaisema. Hänen sävellyksensä rakentavat tunnelmallisia ja jopa elokuvallisia maailmoja, jotka kumpuavat henkilökohtaisista paikoista ja kokemuksista. Musiikin keskiössä ovat ihmisen ja luonnon suhde, rakkaus, tunteet ja ilmaisunvapaus.</p><p>Vuonna 2022 julkaistu Intimacy Vol. 1-pianoalbumi sai laajaa huomiota ja keräsi miljoonia kuuntelukertoja eri alustoilla. Vanzo esiintyi ensimmäistä kertaa Euroopan kiertueella alkuvuodesta 2024, ja kaikki kahdeksan konserttia suurkaupungeissa kuten Lontoossa, Pariisissa ja Berliinissä myytiin loppuun.</p><p>Andrea Vanzon musiikki on löytänyt yleisönsä myös sosiaalisessa mediassa, ja hän on noussut yhdeksi neoklassisen musiikin vaikuttajista yli miljoonan Instagram-seuraajan voimin. Syksyllä 2025 julkaistaan hänen uusi albuminsa Intimacy Vol. 2, jonka musiikkia tullaan kuulemaan myös Helsingissä.</p><p>Ovet klo 18:00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Den neoklassiska musikens storhet Andrea Vanzo för första gången i Finland</p><p>Den prisbelönta italienska kompositören Andrea Vanzo, som har nått enorma framgångar i sociala medier, kommer till Finland för första gången för en egen konsertturné. Konserten Andrea Vanzo – Intimacy Part 2 spelas på Savoy-teatern i Helsingfors fredagen den 23 januari 2026.</p><p>Vanzo är känd för sin postminimalistiska stil, som kombinerar modern klassisk musik med popmusikens ljudlandskap. Hans kompositioner bygger stämningsfulla och till och med filmiska världar som springer ur personliga platser och upplevelser. Musiken handlar om förhållandet mellan människa och natur, kärlek, känslor samt yttrandefrihet.</p><p>Pianoalbumet Intimacy Vol. 1 som släpptes 2022 fick stor uppmärksamhet och spelades miljontals gånger på olika plattformar. Vanzo uppträdde för första gången på en Europaturné i början av 2024, och samtliga åtta konserter i storstäder som London, Paris och Berlin var utsålda.</p><p>Andrea Vanzos musik har hittat sin publik också på sociala medier, och han har blivit en av de mest inflytelserika personerna inom neoklassisk musik med över en miljon följare på Instagram. Hösten 2025 släpptes hans nya album Intimacy Vol. 2, och musik från det kommer att framföras också i Helsingfors.</p><p>Dörrarna öppnas kl. 18:00. Showtime bekräftas senare.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Andrea Vanzo, one of the greats of neoclassical music, to visit Finland for the first time</p><p>The award-winning Italian composer Andrea Vanzo, who has achieved huge popularity in social media, will arrive in Finland for the first time on his own concert tour. Andrea Vanzo – Intimacy Part 2 will be performed at the Savoy Theatre in Helsinki on Friday, 23 January 2026.</p><p>Vanzo is known for his post-minimalist style, which combines modern classical music with a pop soundscape. His compositions build atmospheric and even cinematic worlds that spring from personal places and experiences. His music focuses on the relationship between man and nature, love, emotions and freedom of expression.</p><p>Released in 2022, the piano album Intimacy Vol. 1 received widespread attention and garnered millions of plays across different platforms. Vanzo performed for the first time on a European tour in early 2024, and all his eight concerts in major cities such as London, Paris and Berlin were sold out.</p><p>Andrea Vanzo's music has also found an audience on social media, and he has become one of the most influential figures in neoclassical music with over a million Instagram followers. His new album, Intimacy Vol. 2, will be released in autumn 2025, and works from the new album will also be heard in Helsinki.</p><p>Doors at 18:00. Showtime will be confirmed later.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Fullsteam Agency",
                "sv": "Fullsteam Agency",
                "en": "Fullsteam Agency"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66873/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66911",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "46,80/48,80 €",
                        "sv": "46,80/48,80 €",
                        "en": "46,80/48,80 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/",
                        "sv": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/",
                        "en": "https://www.lippu.fi/event/erja-lyytinen-friends-blue-christmas-2025-savoy-teatteri-20527966/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490505,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T11:14:07.770184Z",
                    "last_modified_time": "2025-08-25T11:14:07.770202Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776887.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490505/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T11:14:07.579679Z",
            "last_modified_time": "2025-09-26T11:13:54.951571Z",
            "date_published": null,
            "start_time": "2025-12-20T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka",
                "sv": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka",
                "en": "Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025",
                "en": "http://www.savoyteatteri.fi/en/events/event/C96530CB4A374C1EC27F5A56BA5C5467/_Erja_Lyytinen_Friends_Blue_Christmas_2025"
            },
            "name": {
                "fi": "Erja Lyytinen & Friends: Blue Christmas 2025",
                "sv": "Erja Lyytinen & Friends: Blue Christmas 2025",
                "en": "Erja Lyytinen & Friends: Blue Christmas 2025"
            },
            "description": {
                "fi": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Kitaravirtuoosi <b>Erja Lyytinen</b> on ilahduttanut konserttiyleisöjä jouluisella Blue Christmas – kiertueellaan jo vuodesta 2017 lähtien! Lyytinen on yksi johtavista kansainvälisillä markkinoilla operoivista blues-rock kitaristeista ja hänet onkin palkittu useasti eri kategorioissa vuosien varrella. Vuonna 2022 Lyytinen teki historiaa olemalla ehdolla ensimmäisenä suomalaisena artistina Kanadan Maple Blues Awardseissa. Marraskuussa 2024 Lyytiselle myönnettiin Brittiläisen HRH–festivaalin toimesta Angel of Rock -palkinto. Palkinto myönnetään merkittävästä panoksesta rockin, metallin tai blues-musiikin saralla. Uransa aikana Lyytinen on esiintynyt maailman kärkikaartiin kuuluvien kitaristien, kuten Carlos Santanan, Sonny Landrethin, Jennifer Battenin ja Joe Bonamassan rinnalla. Lyytisen viimeisin albumi ”Smell the Roses” julkaistiin keväällä 2025. Albumi on saanut kiitettäviä arvioita kansainvälisissä julkaisuissa ja sijoittui kuudenneksi UK:n IBBA:n huhtikuun 2025 radiolistalla. Laulajantaitojaan Lyytinen pääsi esittelemään Masked Singer -ohjelmassa Luurankona. Tänäkin vuonna Blue Christmas -konsertissa kuullaan kattaus Lyytisen tuotannosta, tunnelmallisia sinisiä säveliä ja jouluisia rokkaavia kappaleita upeiden artistivieraiden kera!</p><p><b>Hanna Pakarinen</b> tunnetaan kautta aikain ensimmäisenä ja ehdottomasti legendaarisimpana Suomen Idolsin voittajana. Hänen kruunajaisiaan seurasi TV:n välityksellä peräti 1,6 miljoonaa katsojaa. Entistä isompien miljoonayleisöjen eteen Pakarinen nousi vuonna 2007, jolloin upeaääninen artisti edusti Suomea Euroviisuissa, harvinaisesti vieläpä kotikentällä Helsingin Hartwall Arenalla. Sooloalbumeillaan kulta- ja platinarajoja rikkoneesta Hanna Pakarisesta on huokunut läpi hänen uransa ajan jättiläismäinen palo musiikkia kohtaan. Hän on suunnannäyttäjä, jonka esimerkillä on ollut iso vaikutus monen uuden aallon tähtinimen polkuun. Sukupolvien yli ulottuva arvostus on vain kasvanut sen jälkeen, kun Pakarinen päätti kahdeksan vuoden julkaisutaukonsa syksyllä 2021. Esiintyminen on Pakariselle artistina olemisessa tärkeintä, ja hän onkin kertonut lavalla olemisen yhdeksi parhaista paikoista maailmassa. Pakarinen ilahdutti Blue Christmas kuulijoita jo vuoden 2024 kiertueella Rovaniemen konsertissa valaisten positiivisella olemuksellaan jouluisen konserttiyleisön.</p><p><b>Kärtsy Hatakka</b> tunnetaan parhaiten 80-luvun puolivälistä asti toimineen Waltari-yhtyeen laulajana ja primusmoottorina. Metallia, taidemusiikkia, kansanmusiikkia ja funkia yhdistelevä Waltari on pohjustanut suomalaisten metalliyhtyeiden menestystä Euroopassa, ja on esiintynyt megafestivaaleilla mm. Roskildessä ja Wackenissa. Viime vuosina Kärtsy on tullut suurelle yleisölle tutuksi myös vaikuttavana sooloesiintyjänä, joka loikkii genrerajojen yli vakuuttavan vaivattomasti. Soolotuotannossaan Kärtsy on soljunut popista rockiin leimaten omiin nimiinsä signature soundillaan kaikki esittämänsä cover-biisit. Keväällä 2025 Tähdet, Tähdet -kisassa Kärtsy ällistytti suomalaisen TV-yleisön taituruudellaan ja autenttisella rokkitähden olemuksellaan. Tänä vuonna Kärtsy tempaa mukaansa Blue Christmas konsertin kuulijat ainutlaatuisella lavakarismallaan ja persoonallisella äänellään!</p><p>Ikäraja: S</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p>",
                "sv": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Gitarrvirtuosen Erja Lyytinen har glatt konsertpubliken med sin turné Blue Christmas sedan 2017! Lyytinen är en av de ledande bluesrockgitarristerna på den internationella marknaden och har genom åren belönats flera gånger i olika kategorier. År 2022 skrev Lyytinen historia genom att bli den första finska artisten som var nominerad vid Maple Blues Awards i Kanada. I november 2024 tilldelades Lyytinen priset Angel of Rock vid den brittiska HRH-festivalen. Priset delas ut för en betydande insats inom rock-, metal- eller bluesmusikens område. Under sin karriär har Lyytinen uppträtt tillsammans med några av världens främsta gitarrister, bland andra Carlos Santana, Sonny Landreth, Jennifer Batten och Joe Bonamassa. Lyytinens senaste album Smell the Roses gavs ut våren 2025. Albumet har hyllats i internationella publikationer och rankades som nummer sex på brittiska IBBA:s radiolista i april 2025. I programmet Masked Singer fick Lyytinen visa upp sina sångfärdigheter som Skelettet. Årets Blue Christmas-konsert kommer återigen att innehålla ett urval ur Lyytinens produktion, stämningsfulla blå melodier och rockiga julsånger med fantastiska gästartister!</p><p>Hanna Pakarinen är känd som den genom tiderna första och överlägset mest legendariska vinnaren av finska Idol. När hon utsågs till vinnare följde inte mindre än 1,6 miljoner tittare med på tv. Pakarinen ställde sig framför en ännu större miljonpublik 2007, när hon med sin fantastiska röst representerade Finland i Eurovisionen, för ovanlighetens skull på hemmaplan i Hartwall Arena i Helsingfors. Hanna Pakarinen, som slagit guld- och platinarekord med sina soloalbum, har under hela sin karriär utstrålat en enorm passion för musiken. Hon är en föregångare vars exempel har haft stor betydelse för många av den nya vågens stjärnor. Den generationsöverskridande uppskattningen har bara ökat sedan Pakarinen avslutade sin åtta år långa paus från utgivning hösten 2021. Att uppträda är den viktigaste delen av att vara artist för Pakarinen, och hon har sagt att scenen är en av de bästa platserna i världen att vara på. Pakarinen gladde Blue Christmas-publiken redan under turnén 2024 då hon på konserten i Rovaniemi lyste upp konsertpubliken med sin positiva personlighet.</p><p>Kärtsy Hatakka är mest känd som sångare och drivande kraft i bandet Waltari, som varit aktivt sedan mitten av 80-talet. Waltari, som kombinerar metal, konstmusik, folkmusik och funk, har banat väg för de finska metalbandens framgångar i Europa och har uppträtt på megafestivaler som Roskilde och Wacken. På senare år har Kärtsy också blivit känd för den stora allmänheten som en imponerande soloartist, som med övertygande lätthet korsar genregränser. Kärtsys soloproduktion har gått från pop till rock, och med sitt signature sound sätter han sin egen prägel på alla coverlåtar han framför. Våren 2025 förbluffade Kärtsy den finska tv-publiken med sin skicklighet och autentiska rockstjärnepersonlighet i tävlingen Tähdet, tähdet. I år fängslar Kärtsy publiken på konserten Blue Christmas med sin unika scennärvaro och personliga röst!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h 15 min., inklusive paus.</p>",
                "en": "<p>Erja Lyytinen – Hanna Pakarinen – Kärtsy Hatakka</p><p>Guitar virtuoso Erja Lyytinen has been delighting concert audiences with her Blue Christmas tour since 2017! Lyytinen is one of the leading blues-rock guitarists operating in the international market and has received several awards in different categories over the years. In 2022, Lyytinen made history by becoming the first Finnish artist to be nominated at the Canadian Maple Blues Awards. In November 2024, Lyytinen was awarded the Angel of Rock Award by the HRH Festival in the UK. This award is given for outstanding contributions to rock, metal or blues music. During her career, Lyytinen has performed alongside some of the world's top guitarists, including Carlos Santana, Sonny Landreth, Jennifer Batten and Joe Bonamassa. Lyytinen's latest album \"Smell the Roses\" was released in spring 2025. The album has received praise from international publications and was ranked sixth on the UK IBBA April 2025 radio list. Lyytinen was able to showcase her singing skills in the Masked Singer programme as Luuranko, a skeleton character. This year's Blue Christmas concert will again feature a selection of Lyytinen's work, intimate blue tunes and rocking Christmas songs performed with great guest artists!</p><p>Hanna Pakarinen is known as the first and by far the most legendary winner of the Finnish Idol. No less than 1.6 million viewers watched her win the title through their TV screens. Pakarinen stood in front of even bigger audiences of millions of people in 2007, when the artist and her gorgeous voice represented Finland in the Eurovision Song Contest at Hartwall Arena in Helsinki in a rare occurrence where Finland got to host the contest. Hanna Pakarinen, whose solo albums have sold gold and platinum, has always radiated deep passion for music throughout her career. She is a trailblazer whose example has had a major impact on the path of many rising stars of the new wave. The cross-generational appreciation has only grown since Pakarinen ended her eight-year hiatus from releasing new material in autumn 2021. Performing is the most important part of being an artist for Pakarinen, and she has described the stage as one of the best places in the world. Pakarinen brought joy to the Blue Christmas concert audience already during the 2024 tour in Rovaniemi, lighting up the Christmas concert audience with her positive personality.</p><p>Kärtsy Hatakka is best known as the singer and primus motor of the Waltari band, active since the mid-1980s. Combining metal, art music, folk music and funk, Waltari has paved the way for the success of Finnish metal bands in Europe, and has performed at mega festivals such as Roskilde and Wacken. In recent years, Kärtsy has also become known to the general public as an impressive solo performer who crosses genre boundaries with convincing ease. Kärtsy's solo production has moved from pop to rock, and his signature sound has put his own mark on all the cover songs he has performed. In the spring of 2025, Kärtsy stunned the Finnish TV audience with his skills and authentic rock star persona in the Tähdet, Tähdet programme. This year, Kärtsy will captivate the audience of Blue Christmas with his unique stage charisma and signature sound!</p><p>Age rating: G</p><p>Duration approx. 2 h 15 min, intermission included</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Bluesland Productions",
                "sv": "Bluesland Productions",
                "en": "Bluesland Productions"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66911/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66062",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "33,90-39,90 €",
                        "sv": "33,90-39,90 €",
                        "en": "33,90-39,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20161416",
                        "sv": "https://www.lippu.fi/event/name-20161416",
                        "en": "https://www.lippu.fi/event/name-20161416"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 588863,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-22T06:13:32.398379Z",
                    "last_modified_time": "2025-04-22T06:13:32.398396Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771189.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/588863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-22T06:13:32.310585Z",
            "last_modified_time": "2025-09-26T11:13:54.474031Z",
            "date_published": null,
            "start_time": "2025-12-19T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Alati suosiotaan kasvattava lauluntekijä Samuli Putro lähtee yhtyeensä kanssa pitkälle kiertueelle lokakuussa 2025.",
                "sv": "Den ständigt populäre låtskrivaren Samuli Putro ger sig ut på en lång turné med sitt band i oktober 2025.",
                "en": "Ever-popular songwriter Samuli Putro will embark on a long tour with his band in October 2025."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella",
                "en": "http://www.savoyteatteri.fi/en/events/event/806C9767F64DE19535A5C9E51CE1DAA9/Samuli_Putro_-_Vaikkei_olla_perilla_on_ajatukset_siella"
            },
            "name": {
                "fi": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä",
                "sv": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä",
                "en": "Samuli Putro - Vaikkei olla perillä on ajatukset siellä"
            },
            "description": {
                "fi": "<p>Alati suosiotaan kasvattava lauluntekijä Samuli Putro lähtee yhtyeensä kanssa pitkälle kiertueelle lokakuussa 2025.</p><p>Kaksikymmentäviisi keikkaa käsittävä rundi vie Putron konserttisaleihin, teattereihin ja klubeile.</p><p><i>”En minä nyt oikein tiedä miten tässä näin kävi. Mutta koska tekemisen paloa ja kysyntää tuntuu riittävän, niin sama kai se on pistellä menemään”</i>, toteaa viisikymmentäviisi vuotta elokuussa täyttävä Putro.</p><p>Kukoistuskausi näkyy myös julkaisurintamalla. Putron yhdeksäs sooloalbumi julkaistaan lokakuussa. Sen ensimmäinen single ”Kuvat meistä kaikista” on soinut radioissa jo taajaan. Myös kiertueen nimi on siitä napattu.</p><p><i>”Kai minä sitten olen aina ollut moderni maankiertäjä. Kaikki muu on tullut siihen rinnalle kuin takaapäin kiitävä auto ohituskaistalla”</i>, muotoilee alkuvuodesta myös esikoiskirjansa julkaissut Putro.</p><p>Samuli Putron levynjulkaisukiertueella nähdään \"Suomen coolein trio\", eli:</p><p>Samuli Putro - laulu, kitara<br>Tuukka Tuunanen - koskettimet<br>Miikka Heikkinen – rummut</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Den ständigt populäre låtskrivaren Samuli Putro ger sig ut på en lång turné med sitt band i oktober 2025.</p><p>Turnén med tjugofem spelningar tar Putro till konsertsalar, teatrar och klubbar.</p><p>”Jag vet inte riktigt hur det här gick till. Men eftersom det verkar finnas tillräckligt med entusiasm för att arbeta och också efterfrågan, så är det väl lika bra att köra på”, säger Putro, som fyllde 55 år i augusti.</p><p>Glansperioden syns också på utgivningsfronten. Putros nionde soloalbum släpps i oktober. Albumets första singel Kuvat meistä kaikista har redan spelats flitigt på radio. Även det finska namnet på turnén, Vaikkei olla perillä on ajatukset siellä (Även om vi inte är framme är tankarna där), är hämtat från den.</p><p>”Jag antar att jag alltid har varit en modern vagabond. Allt annat har kommit vid sidan om, som en bil som kommer i hög fart bakifrån i en omkörningsfil”, säger Putro, som också gav ut sin debutbok i början av året.</p><p>På Samuli Putros skivsläppsturné medverkar \"Finlands coolaste trio\", det vill säga:</p><p>Samuli Putro – sång, gitarr<br>Tuukka Tuunanen – klaviatur<br>Miikka Heikkinen – trummor</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Ever-popular songwriter Samuli Putro will embark on a long tour with his band in October 2025.</p><p>The twenty-five-show tour will take Putro to concert halls, theatres and clubs.</p><p>\"I don't really even know how this happened. But seems like there’s still fire to continue this work and there’s demand for it, so why stop?” says Putro, who turned fifty-five in August.</p><p>This era of creativity is also reflected in his released works. Putro's ninth solo album will be released in October. Its first single \"Kuvat meistä kaikista\" has already been extensively played in the radio, and it has also given the tour its name, loosely translated as ‘We’re not there yet, but our thoughts have arrived’.</p><p>\"I guess I've always been kind of a modern traveller. Everything else has just appeared by my side, like a fast car passing by on the fast lane,” muses Putro, who also published his debut book earlier this year.</p><p>Samuli Putro's album release tour will feature the ‘coolest trio in Finland’:</p><p>Samuli Putro – vocals, guitar<br>Tuukka Tuunanen – keyboards<br>Miikka Heikkinen – drums</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Central Line Entertainment Oy",
                "sv": "Central Line Entertainment Oy",
                "en": "Central Line Entertainment Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66062/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66537",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3915091",
                        "sv": "https://www.lippu.fi/eventseries/name-3915091",
                        "en": "https://www.lippu.fi/eventseries/name-3915091"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490464,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T10:14:25.841579Z",
                    "last_modified_time": "2025-08-19T10:14:25.841599Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765404.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490464/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T08:13:55.052081Z",
            "last_modified_time": "2025-09-26T11:13:53.812177Z",
            "date_published": null,
            "start_time": "2025-12-16T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.",
                "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.",
                "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_-_JOULUNA_2025",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_JUL_2025",
                "en": "http://www.savoyteatteri.fi/en/events/event/7BE2439C0FF0C86B2DDF2C2193CEA50C/Club_for_Five_-_JOULUNA_2025"
            },
            "name": {
                "fi": "Club for Five - JOULUNA 2025",
                "sv": "Club for Five – JUL 2025",
                "en": "Club for Five - JOULUNA 2025"
            },
            "description": {
                "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>",
                "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy",
                "sv": "Helmi Promotion Oy",
                "en": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66537/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66536",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3915091",
                        "sv": "https://www.lippu.fi/eventseries/name-3915091",
                        "en": "https://www.lippu.fi/eventseries/name-3915091"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490463,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T10:14:25.667427Z",
                    "last_modified_time": "2025-08-19T10:14:25.667446Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765403.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490463/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T08:13:54.724386Z",
            "last_modified_time": "2025-09-26T11:13:53.438717Z",
            "date_published": null,
            "start_time": "2025-12-15T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.",
                "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.",
                "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_-_JOULUNA_2025",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_JUL_2025",
                "en": "http://www.savoyteatteri.fi/en/events/event/9574E24D2C391A5AE4977BA2B9F3D012/Club_for_Five_-_JOULUNA_2025"
            },
            "name": {
                "fi": "Club for Five - JOULUNA 2025",
                "sv": "Club for Five – JUL 2025",
                "en": "Club for Five - JOULUNA 2025"
            },
            "description": {
                "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>",
                "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy",
                "sv": "Helmi Promotion Oy",
                "en": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66536/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66535",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3915091",
                        "sv": "https://www.lippu.fi/eventseries/name-3915091",
                        "en": "https://www.lippu.fi/eventseries/name-3915091"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490462,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T10:14:25.439145Z",
                    "last_modified_time": "2025-08-19T10:14:25.439161Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765402.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490462/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T08:13:54.398686Z",
            "last_modified_time": "2025-09-26T11:13:53.109896Z",
            "date_published": null,
            "start_time": "2025-12-14T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.",
                "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.",
                "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_-_JOULUNA_2025",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_JUL_2025",
                "en": "http://www.savoyteatteri.fi/en/events/event/F7E8516469054CE5FBFF7CF7C470E02B/Club_for_Five_-_JOULUNA_2025"
            },
            "name": {
                "fi": "Club for Five - JOULUNA 2025",
                "sv": "Club for Five – JUL 2025",
                "en": "Club for Five - JOULUNA 2025"
            },
            "description": {
                "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>",
                "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy",
                "sv": "Helmi Promotion Oy",
                "en": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66535/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66514",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3915091",
                        "sv": "https://www.lippu.fi/eventseries/name-3915091",
                        "en": "https://www.lippu.fi/eventseries/name-3915091"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490461,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-19T10:14:25.189399Z",
                    "last_modified_time": "2025-08-19T10:14:25.189414Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765401.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490461/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T08:13:54.033878Z",
            "last_modified_time": "2025-09-26T11:13:52.717015Z",
            "date_published": null,
            "start_time": "2025-12-14T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.",
                "sv": "I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.",
                "en": "Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9B82184615E168430A46FE1926066B27/Club_for_Five_-_JOULUNA_2025",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9B82184615E168430A46FE1926066B27/Club_for_Five_JUL_2025",
                "en": "http://www.savoyteatteri.fi/en/events/event/9B82184615E168430A46FE1926066B27/Club_for_Five_-_JOULUNA_2025"
            },
            "name": {
                "fi": "Club for Five - JOULUNA 2025",
                "sv": "Club for Five – JUL 2025",
                "en": "Club for Five - JOULUNA 2025"
            },
            "description": {
                "fi": "<p>Tänä vuonna 25 vuotta täyttävän Club for Fiven juhlavuosi huipentuu perinteiseen JOULUNA-konserttikiertueeseen. Luvassa on viipyilevää tunnelmointia ja hankien välkettä sekä aimo annos joulun riemua ja suuren odotuksen luomaa jännitystä.</p><p>Tule kokemaan rakastettu JOULUNA-konsertti ja tavoita aito joulumieli!</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>I år kulminerar 25-årsjubileet för Club for Five med den traditionella konsertturnén JUL. Det utlovas en kvardröjande atmosfär och gnistrande snödrivor samt en rejäl dos julglädje och spänd förväntan.</p><p>Kom och upplev den älskade konserten JUL och kom i äkta julstämning!</p><p>Åldersgräns: Tillåten för alla åldrar.</p><p>Längd ca 2 h, inklusive paus.</p>",
                "en": "<p>Club for Five is turning 25 this year, and the anniversary year will culminate in the traditional JOULUNA concert tour. The concerts will deliver lovely Christmas vibes with a healthy dose of cheer and the excitement of anticipation.</p><p>Come and experience the beloved JOULUNA concert and find the real spirit of Christmas!</p><p>Age rating: G</p><p>Duration approx. 2 h, including intermission</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy",
                "sv": "Helmi Promotion Oy",
                "en": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66514/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66888",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "38,90 € / S&D 100,60 €",
                        "sv": "38,90 € / S&D 100,60 €",
                        "en": "38,90 € / S&D 100,60 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/",
                        "sv": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/",
                        "en": "https://www.lippu.fi/event/suurlaehettilaeaet-savoy-teatteri-20550988/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490497,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-21T15:14:23.262790Z",
                    "last_modified_time": "2025-08-21T15:14:23.262806Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490497/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-21T15:14:23.139549Z",
            "last_modified_time": "2025-09-26T11:13:52.296778Z",
            "date_published": null,
            "start_time": "2025-12-13T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.",
                "sv": "I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.",
                "en": "Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/A97408785726628A844435B194961916/Suurlahettilaat",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/A97408785726628A844435B194961916/Suurlahettilaat",
                "en": "http://www.savoyteatteri.fi/en/events/event/A97408785726628A844435B194961916/Suurlahettilaat"
            },
            "name": {
                "fi": "Suurlähettiläät",
                "sv": "Suurlähettiläät",
                "en": "Suurlähettiläät"
            },
            "description": {
                "fi": "<p>Suurlähettiläät juhlii tänä vuonna 35-‑vuotista taivaltaan. Sen verran on kulunut ensimmäisestä singlestä – ja kun osa bändin jäsenistäkin viettää tänä vuonna tasavuosijuhliaan – on syytä juhlaan ja kunnioittaa menneitä vuosikymmeniä.</p><p>Yhtye nousi suomalaisen bändipopin kaanoniin heti vuonna 1991 debyyttialbumillaan Omituisten otusten kerho, josta ikivihreiksi nousi kappaleet Elokuun 11. ja Pitääxunaina?. Nopeassa tahdissa klassikkokimara jatkui mm. biiseillä Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot ja Mitä miehen tulee olla?<br> <br>Savoy Teatterissa 13.12. on luvassa yhtyeen juhlakiertueen 2025 viimeinen keikka ja runsas kattaus biisejä bändin uran varrelta. Suomisoulia, joka on tehnyt Suurlähettiläistä sukupolvien ajan rakastetun.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Konserttiin on myynnissä Savoy-teatterin yhteydessä toimivan Minne Garden-ravintolan herkullinen kolmen ruokalajin illallinen, joka tarjoillaan kaksi tuntia ennen esitystä. Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p><p><b>Konsertin Show&Dinner-lippupaketit ovat loppuunmyyty, mutta illallinen on mahdollista tilata suoraan Savoy-teatterin ravintola Minnen verkkokaupasta: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat<br> <br>Huomioithan, että Minnen illalliskattauksessa on rajallinen määrä paikkoja jäljellä.</b></p><p>Show & Dinner -lippu sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun.</p><p><b>Menu Classic</b><br>Rapuskagen, paahdettua mallasleipää, etikkakurkkua ja siianmätiä L<br>Matalassa lämmössä kypsytettyä häränfileetä, paahdettua palsternakkaa ja aligot-perunaa L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>TAI</p><p><b>Menu Green</b><br>Punajuuricarpaccio, kuusenkerkkächeddaria ja pikkelöityjä sieniä L,G<br>Grillattua savojinkaalta, kikhernepyrettä ja haudutettua pinaattia L,G<br>Mustikka-yuzu moussea, valkosuklaata ja marinoituja mustikoita L,G</p><p>Menun hinta ei sisällä juomia.<br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen illan esityksen alkua.<br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</p>",
                "sv": "<p>I år firar Suurlähettiläät 35-årsjubileum. Så lång tid har gått sedan den första singeln – och med tanke på att vissa medlemmar i bandet firar jämna år i år finns det anledning att fira och hedra de årtionden som gått.</p><p>Bandet skrev in sig i den finska bandpopens historia genast 1991 med sitt debutalbum Omituisten otusten kerho, från vilket låtarna Elokuun 11. och Pitääxunaina? blev evergreens. Den tempofyllda klassiska cocktailen fortsatte med låtar som Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot och Mitä miehen tulee olla?.</p><p>Den 13 december är Savoy-teatern värd för den sista konserten på bandets jubileumsturné 2025, och en hel uppsättning låtar från bandets karriär utlovas. Den finska soulen som gjort Suurlähettiläät älskat i generationer.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Till konserten säljs en utsökt trerätters middag på restaurang Minne Garden intill Savoy-teatern som serveras två timmar före föreställningen. Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Biljettpaketen Show & Dinner till konserten är slutsålda, men det går bra att beställa middag direkt i Savoy-teaterns restaurang Minnes webbutik: https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Observera att det finns ett begränsat antal platser kvar till Minnes middagsdukning.</p><p>Biljetten Show & Dinner inkluderar en entrébiljett och en meny med kött eller vegetarisk mat som serveras till borden.</p><p>Menu Classic<br>Kräftskagen, rostat maltbröd, ättiksgurka och sikrom L<br>Oxfilé tillagad på låg värme, rostad palsternacka och pommes aligot L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>ELLER</p><p>Menu Green<br>Rödbetscarpaccio, granskottscheddar och picklad svamp L, G<br>Grillad savoykål, kikärtspuré och stuvad spenat L, G<br>Yuzu- och blåbärsmousse med vitchoklad och marinerade blåbär L, G</p><p>Menypriset inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar före kvällens föreställning.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p>",
                "en": "<p>Suurlähettiläät are celebrating their 35-year history this year. That's how long it has beensince the band'sfirstsingle – and with somemembersof thebandcelebrating their milestone birthdays thisyear – there's plenty of reason to celebrate and honour the past decades.</p><p>The band shot to fame in the Finnish band pop scene right at the start, in 1991, with their debut album Omituisten otusten kerho. The album’s songs Elokuun 11. and Pitääxunaina? became evergreen hits. The band continued to churn out classics at a fast pace, with songs such as Maailman laidalla, Kun tänään lähden, Kuka pysäyttäisi kellot and Mitä miehen tulee olla?</p><p>On 13 December, the Savoy Theatre will host the last show of the band's 2025 anniversary tour, offering a wide range of songs from the band's career: The Finnish soul that has made Suurlähettiläät a beloved band across generations.</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>A delicious three-course dinner at the Savoy Theatre's Minne Garden restaurant is available for purchase for the concert evening, served two hours before the performance. Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>The concert’s Show & Dinner ticket packages are sold out, but it is possible to order dinner directly from the Savoy Theatre's Restaurant Minne's online shop (website in Finnish): https://savoyteatteriravintolat.fi/tapahtumatarjoilut/show-dinner-suurlahettilaat</p><p>Please note that there are a limited number of seats left for the dinner service at Restaurant Minne.</p><p>The Show & Dinner ticket includes an entrance ticket and a meat or vegetarian menu served to tables.</p><p>Menu Classic<br>Toast skagen, toasted malt bread, pickled cucumber and whitefish roe L<br>Beef fillet cooked at low heat, roasted parsnips and pommes aligot, L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>OR</p><p>Menu Green<br>Beetroot carpaccio, spruce sprout cheddar and pickled mushrooms L,G<br>Grilled savoy cabbage, chickpea puree and braised spinach L,G<br>Blueberry-yuzu mousse, white chocolate and marinated blueberries L,G</p><p>The price of the menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the evening's performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Sunborn Events Oy",
                "sv": "Sunborn Events Oy",
                "en": "Sunborn Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66888/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66889",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "price": {
                        "fi": "17-64 €",
                        "sv": "17-64 €",
                        "en": "17-64 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3948658",
                        "sv": "https://www.lippu.fi/eventseries/name-3948658",
                        "en": "https://www.lippu.fi/eventseries/name-3948658"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490585,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-02T07:15:24.834135Z",
                    "last_modified_time": "2025-09-02T07:15:24.834157Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776515.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490585/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-25T12:14:18.906453Z",
            "last_modified_time": "2025-09-26T11:13:51.803127Z",
            "date_published": null,
            "start_time": "2025-12-12T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Legendaarinen laulaja-lauluntekijä Alejandro Escovedo saapuu vihdoin Suomeen! Yli neljä vuosikymmentä musiikkia tehnyt Escovedo yhdistää ainutlaatuisella tavalla meksikolaisiin juuriinsa rock-musiikkia, americanaa ja kantria – ja nyt legendaarista tarinankertojaa voi kuulla livenä osana Savoy & Sound Tracker Presents! -konserttisarjaa.",
                "sv": "Den legendariske sångaren och låtskrivare Alejandro Escovedo kommer äntligen till Finland! Escovedo, som gjort musik i över fyra årtionden, kombinerar på ett unikt sätt rockmusik, americana och country med sina mexikanska rötter – och nu kan du höra den legendariske historieberättaren live som en del av konsertserien Savoy & Sound Tracker Presents!",
                "en": "Legendary singer-songwriter Alejandro Escovedo will finally visit Finland! Escovedo, who has been making music for over four decades, uniquely combines rock music, Americana and country music with his Mexican roots – and now you can hear the legendary storyteller live as part of the concert series Savoy & Sound Tracker Presents!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_",
                "en": "http://www.savoyteatteri.fi/en/events/event/F88F3501D4E896B0279E5D911A9A4E6C/Savoy_Sound_Tracker_Presents_Alejandro_Escovedo_USA_"
            },
            "name": {
                "fi": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)",
                "sv": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)",
                "en": "Savoy & Sound Tracker Presents: Alejandro Escovedo (USA)"
            },
            "description": {
                "fi": "<p>Legendaarinen laulaja-lauluntekijä Alejandro Escovedo saapuu vihdoin Suomeen! Yli neljä vuosikymmentä musiikkia tehnyt Escovedo yhdistää ainutlaatuisella tavalla meksikolaisiin juuriinsa rock-musiikkia, americanaa ja kantria – ja nyt legendaarista tarinankertojaa voi kuulla livenä osana Savoy & Sound Tracker Presents! -konserttisarjaa.</p><p>1970-luvun punkskenessä uransa aloittanut Escovedo on yksi harvoista artisteista, joka pystyy luontevasti yhdistämään intiimit folk-balladit, säröiset rock-kappaleet ja kulttuurillisesti latautuneet tarinat yhdeksi, tunnistettavaksi tyyliksi. Hän on tehnyt yhteistyötä mm. Bruce Springsteenin, R.E.M-yhtyeen Peter Buckin ja roots-legenda Lucinda Williamsin kanssa.</p><p>Savoy-teatterin konsertissa Escovedo esiintyy sekä soolona että Sami Yaffan kotimaisista kärkimuusikoista kokoaman yhtyeen kanssa.</p><p>Keväällä 2025 alkanut konserttisarja jatkuu syksyllä Alejandro Escovedon konsertilla. Konserttisarjan sisällön kuratoi muusikko Sami Yaffa. ”Konserttisarjan ydin on tavallaan sama kuin tv:n Sound Tracker -ohjelmissa. Toivon mukaan konsertti yllättää kuuntelijan, avaa musiikillisen oven suoraan nirvanaan ja antaa kuuntelijalle ikimuistoisen elämyksen”, Yaffa kuvailee.</p><p>Konsertin kesto n. 2,5 h, sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Den legendariske sångaren och låtskrivare Alejandro Escovedo kommer äntligen till Finland! Escovedo, som gjort musik i över fyra årtionden, kombinerar på ett unikt sätt rockmusik, americana och country med sina mexikanska rötter – och nu kan du höra den legendariske historieberättaren live som en del av konsertserien Savoy & Sound Tracker Presents!</p><p>Escovedo inledde sin karriär på 1970-talets punkscen och är en av få artister som på ett naturligt sätt kan kombinera intima folkballader, riviga rocklåtar och kulturellt laddade berättelser till en enda, igenkännbar stil. Han har samarbetat med bland annat Bruce Springsteen, Peter Buck från R.E.M och rootslegenden Lucinda Williams.</p><p>I konserten på Savoy uppträder Escovedo både solo och tillsammans med ett band bestående av finska toppmusiker som Sami Yaffa samlat ihop.</p><p>Konsertserien, som startade våren 2025, fortsätter i höst med Alejandro Escovedos konsert. Innehållet i konsertserien kurateras av musikern Sami Yaffa. ”Kärnan i konsertserien är på sätt och vis densamma som i Sound Tracker-programmen på tv. Jag hoppas att konserten ska överraska lyssnaren, öppna en musikalisk dörr direkt till nirvana och ge lyssnaren en minnesvärd upplevelse”, säger Yaffa.</p><p>Konserten är ca 2,5 timmar lång, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Legendary singer-songwriter Alejandro Escovedo will finally visit Finland! Escovedo, who has been making music for over four decades, uniquely combines rock music, Americana and country music with his Mexican roots – and now you can hear the legendary storyteller live as part of the concert series Savoy & Sound Tracker Presents!</p><p>Escovedo began his career in the punk scene of the 1970s and is one of the few artists who can naturally combine intimate folk ballads, jagged rock songs and culturally charged stories into a single, recognisable style. He has collaborated with names such as Bruce Springsteen, R.E.M.'s Peter Buck and the roots legend Lucinda Williams.</p><p>In his concert at the Savoy Theatre, Escovedo will perform both solo and with Sami Yaffa's ensemble of top Finnish musicians.</p><p>The concert series that started in spring 2025 will continue this autumn with a concert by Alejandro Escovedo. The content of the concert series is curated by musician Sami Yaffa. “The essence of the concert series is kind of the same as in the Sound Tracker programmes on TV. I hope that the concert will surprise the listener, open a musical door directly to nirvana and give the listener an unforgettable experience,\" Yaffa says.</p><p>Concert duration approx. 2.5 hours, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66889/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}