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

Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking. This search method provides more sophisticated results than basic text matching by:

  • Searching across multiple fields with different priority levels
  • Supporting stemming and language-specific text processing
  • Ranking results by relevance when no other sorting is specified

The search covers the following fields with weighted priorities:

  • Highest priority (A): Event names, location names
  • High priority (B): Keywords, audience keywords
  • Medium priority (C): Short descriptions
  • Lowest priority (D): Full descriptions

Use full_text_language to specify the search language. Accepts single language (e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages: fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

event/?full_text=lapset&full_text_language=fi,en,sv

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&page=88&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6469,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=89&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=87&weekday=6%2C7"
    },
    "data": [
        {
            "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": [],
                    "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/"
                    },
                    "description": null,
                    "price": {
                        "fi": "46,80/48,80 €",
                        "sv": "46,80/48,80 €",
                        "en": "46,80/48,80 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776887.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Erja Lyytinen & Friends: Blue Christmas 2025",
                "sv": "Erja Lyytinen & Friends: Blue Christmas 2025",
                "en": "Erja Lyytinen & Friends: Blue Christmas 2025"
            },
            "provider_contact_info": null,
            "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: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": [],
                    "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"
                    },
                    "description": null,
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765402.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Club for Five - JOULUNA 2025",
                "sv": "Club for Five – JUL 2025",
                "en": "Club for Five - JOULUNA 2025"
            },
            "provider_contact_info": null,
            "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": [],
                    "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"
                    },
                    "description": null,
                    "price": {
                        "fi": "48,90 €",
                        "sv": "48,90 €",
                        "en": "48,90 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765401.jpg",
                    "name": "",
                    "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,
            "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"
            },
            "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>"
            },
            "name": {
                "fi": "Club for Five - JOULUNA 2025",
                "sv": "Club for Five – JUL 2025",
                "en": "Club for Five - JOULUNA 2025"
            },
            "provider_contact_info": null,
            "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: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": [],
                    "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"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-64 €",
                        "sv": "17-64 €",
                        "en": "17-64 €"
                    }
                }
            ],
            "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",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776515.jpg",
                    "name": "",
                    "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,
            "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_"
            },
            "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>"
            },
            "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)"
            },
            "provider_contact_info": null,
            "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"
        },
        {
            "id": "kulke:66237",
            "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:33/?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"
                },
                {
                    "@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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/the-cabaret-of-new-ro-k-18-3894178/",
                        "sv": "https://www.lippu.fi/artist/savoy-teatteri/the-cabaret-of-new-ro-k-18-3894178/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/the-cabaret-of-new-ro-k-18-3894178/"
                    },
                    "description": null,
                    "price": {
                        "fi": "33,90 €",
                        "sv": "33,90 €",
                        "en": "33,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 753651,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-13T09:14:12.530231Z",
                    "last_modified_time": "2025-05-13T09:14:12.530247Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772845.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/753651/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-13T09:14:12.406640Z",
            "last_modified_time": "2025-09-26T11:13:49.998491Z",
            "date_published": null,
            "start_time": "2025-12-05T17: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,
            "short_description": {
                "fi": "New Ron rajoja rikkovan kabareen ensiesitys nähdään Savoyssa joulukuussa!",
                "sv": "New Ro’s gränsöverskridande kabaré har premiär på Savoy i december!",
                "en": "New Ro's boundary-breaking cabaret will premiere at Savoy in December!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D8C07CAE1C828CE5ADB1D502CD17DEB1/The_Cabaret_of_New_Ro_K-18",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D8C07CAE1C828CE5ADB1D502CD17DEB1/The_Cabaret_of_New_Ro_K-18",
                "en": "http://www.savoyteatteri.fi/en/events/event/D8C07CAE1C828CE5ADB1D502CD17DEB1/The_Cabaret_of_New_Ro_R-18"
            },
            "description": {
                "fi": "<p>New Ron rajoja rikkovan kabareen ensiesitys nähdään Savoyssa joulukuussa!</p><p>Jättimäistä somesuosiota nauttivan monilahjakkuuden <b>New Ron (Ronja Stanley)</b> rajoja rikkova <i>The Cabaret of New Ro</i> saa ensiesityksensä Savoy-teatterissa itsenäisyyspäivän aattona. Ainutlaatuinen show yhdistelee livemusiikkia, komediaa ja teatteria kabareekulttuurin hengessä – tavalla, jota Suomessa harvoin nähdään.</p><p>Miljoonien ihmisten viikoittain seuraamaksi someilmiöksi noussut hyvän mielen lähettiläs tunnetaan parhaiten värikkään New Ro -artistinimen takaa, mutta myös jo lähes vuosikymmen sitten vaihtoehtoisen popin kärkinimiin kuuluneen Ronya-projektin kautta. Pitkän uran tehnyt brittiläis-suomenruotsalainen laulaja ja esiintyjä on kerännyt laajaa arvostusta ilmeikkäästä lauluäänestään sekä voimakkaasta lavaenergiastaan. Visuaalisesti tunnistettava pinkin ja liilan sävyinen ilmaisu on olennainen osa Stanleyn taiteellista identiteettiä.</p><p>Stanleyn huumori on suoraa, rohkeaa ja samalla lämminhenkistä; hän hallitsee lavan tavalla, joka saa yleisön nauramaan, liikuttumaan ja hurraamaan. Savoyssa koettava esitys yhdistelee Stanleyn uutta, vielä julkaisematonta tuotantoa sekä aiempaa diskografiaa uran varrelta.</p><p>Esityksen innoittajina toimivat muun muassa New Yorkin kabareekulttuuri ja sen tähdet, kuten Bridget Everett ja Liza Minnelli. Mukana on myös brittiläistä vaikutetta – älykästä, absurdiin nojaavaa huumoria Monty Pythonin hengessä.</p><p>Vaikka kyseessä on näyttävä spektaakkeli, illassa sykkii sama sydän kuin Stanleyn sosiaalisen median sisällöissä: tuki, rohkaisu ja vahva läsnäolo. Viraalihiteiksi nousseet ystävälliset muistutukset, ei-jumalalliset siunaukset ja muut tutut sketsit kääntyvät lavalle musikaalinomaisessa muodossa. Tämä ei ole mikä tahansa keikka – esitys voimaannuttaa ja valaisee, antaa energiaa ja jättää huulille pitkän hymyn.</p><p>Oletko valmis liittymään kulttiin?</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Ikäraja: K-18<br> <br>Permanto K18 anniskelualue. Parveke, ei anniskelua</p>",
                "sv": "<p>New Ro’s gränsöverskridande kabaré har premiär på Savoy i december!</p><p>Multitalangen New Ro (Ronja Stanley) är enormt populär på sociala medier, och nu har hens gränsöverskridande kabaré The Cabaret of New Ro premiär på Savoy-teatern kvällen före självständighetsdagen. Den unika showen kombinerar livemusik, komedi och teater i kabarékulturens anda – på ett sätt som sällan skådats i Finland.</p><p>Artisten är en må bra-ambassadör som blivit ett fenomen på sociala medier och som följs av miljontals människor varje vecka. Hen är mest känd som personen bakom det färgstarka artistnamnet New Ro, men också för sitt projekt Ronya, som var ett av toppnamnen inom alternativ pop för snart tio år sedan. Under sin långa karriär har den brittisk-finlandssvenska sångaren och artisten rönt stor uppskattning för sin uttrycksfulla sångröst och kraftfulla energi på scenen. Det visuellt igenkännbara uttrycket i rosa och lila toner är en viktig del av Stanleys konstnärliga identitet.</p><p>Stanleys humor är direkt, djärv och varm på samma gång; hen behärskar scenen på ett sätt som får publiken att skratta, röra på sig och jubla. Föreställningen på Savoy kombinerar delar av Stanleys nya, ännu outgivna produktion med tidigare diskografi från hens karriär.</p><p>Föreställningen är inspirerad av bland annat kabarékulturen i New York och dess stjärnor, till exempel Bridget Everett och Liza Minnelli. Det finns också brittiska influenser – intelligent, på gränsen till absurd humor i Monty Pythons anda.</p><p>Även om det är fråga om ett imponerande spektakel, slår samma hjärta under kvällen som i Stanleys innehåll på sociala medier: stöd, uppmuntran och en stark närvaro. De vänliga påminnelserna, icke-gudomliga välsignelserna och andra bekanta sketcher som blivit virala hittar omvandlas till musikalisk form på scenen. Det här är inte vilken spelning som helst – föreställningen ger dig kraft, upplysning och energi samt ett stort leende på läpparna.</p><p>Är du redo att gå med i en kult?</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. Balkong, ingen servering.</p>",
                "en": "<p>New Ro's boundary-breaking cabaret will premiere at Savoy in December!</p><p>The Cabaret of New Ro of the multi-talented New Ro (Ronja Stanley) of massive social media fame is a boundary-breaking performance that will premiere at the Savoy Theatre on the eve of Independence Day. The unique show combines live music, comedy and theatre in the spirit of cabaret culture in a way that is rarely seen in Finland.</p><p>A goodwill ambassador who has become a social media phenomenon followed by millions of people at a weekly basis, she is best known under her colourful artist name New Ro. However, she rose to fame already about a decade ago through her Ronya project, as one of the top names of the alternative pop music scene. During her long career, the British-Finnish singer and performer has garnered widespread acclaim for her expressive vocals and powerful stage energy. The visually distinctive combination of pink and lilac is an integral part of Stanley's artistic identity and expression.</p><p>Stanley's humour is direct, bold and warm at the same time; she commands the stage in a way that makes the audience laugh, feel and cheer. The performance at Savoy will combine Stanley's new, as yet unreleased production with her earlier discography from her career.</p><p>The show is inspired by New York cabaret culture and its stars, including Bridget Everett and Liza Minnelli. The show also has some British influence, such as clever, absurdist humour in the spirit of Monty Python.</p><p>The evening is an impressive spectacle, but it beats with the same heart as Stanley's social media content, offering support, encouragement and a strong presence. Her friendly reminders, non-divine blessings and other familiar skits that have become viral hits are translated into musical form on stage. This is not just any gig – the performance empowers and enlightens, energises and leaves you with a big smile on your face.</p><p>Are you ready to join a cult?</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>"
            },
            "name": {
                "fi": "The Cabaret of New Ro K-18",
                "sv": "The Cabaret of New Ro K-18",
                "en": "The Cabaret of New Ro R-18"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "All Day Entertainment Oy",
                "sv": "All Day Entertainment Oy",
                "en": "All Day Entertainment Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66237/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65849",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/20037383",
                        "sv": "https://www.lippu.fi/event/20037383",
                        "en": "https://www.lippu.fi/event/20037383"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90 €",
                        "sv": "29,90 €",
                        "en": "29,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 403344,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-25T11:13:57.855918Z",
                    "last_modified_time": "2025-03-25T11:13:57.855934Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767656.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/403344/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-25T11:13:57.824943Z",
            "last_modified_time": "2025-09-26T11:13:44.803065Z",
            "date_published": null,
            "start_time": "2025-11-22T17: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,
            "short_description": {
                "fi": "Josén Pimeä Puoli hurmaa nyt konserttisaleissa ympäri Suomen - Hyppää Kyytiin!- kiertue alkaa lokakuussa.",
                "sv": "Josén Pimeä Puoli spelar nu i konsertsalar runt om i Finland – turnén Hyppää kyytiin! (Kom med!) startar i oktober.",
                "en": "Josén Pimeä Puoli is now captivating audiences in concert halls all over Finland – the Hyppää Kyytiin! (‘Jump on board!’) tour will start in October."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AFE66C08F28A68A4BD3721B891B89FB3/Jos_n_Pimea_Puoli_Hyppaa_kyytiin_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/AFE66C08F28A68A4BD3721B891B89FB3/Jos_n_Pimea_Puoli_Hyppaa_kyytiin_",
                "en": "http://www.savoyteatteri.fi/en/events/event/AFE66C08F28A68A4BD3721B891B89FB3/Jos_n_Pimea_Puoli_Hyppaa_kyytiin_"
            },
            "description": {
                "fi": "<p>Josén Pimeä Puoli hurmaa nyt konserttisaleissa ympäri Suomen - Hyppää Kyytiin!- kiertue alkaa lokakuussa.</p><p>Viime aikoina pienet ja isommatkin klubit ovat täyttyneet mykistyneestä yleisöstä. Huikeassa nousussa oleva Josén Pimeä Puoli on valmis ottamaan seuraavan askeleen ja valloittamaan isommat lavat.</p><p>Josén Pimeä Puoli toimittaa elämänmakuisen tarinansa syksyn Hyppää kyytiin! -konserttikiertueellaan. Ihanasti kyynisiä, pirskahtelevia romansseja, ikiaikaisia rakkauksia, ohikulkijoita ja kutkuttelevia reissukavereita…mitä kaikkea elämään mahtuukaan! Lokakuussa ilmestyvä sinkku antaa jo vihiä tulevasta, ja konsertissa kuullaan myös ihan uusia tarinoita, jotka julkaistaan vasta tulevana vuonna 2026.</p><p>Hyppää kyytin – Josén Pimeä Puoli kutsuu!</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Josén Pimeä Puoli spelar nu i konsertsalar runt om i Finland – turnén Hyppää kyytiin! (Kom med!) startar i oktober.</p><p>På senare tid har små och också större klubbar fyllts av publik som slagits med häpnad. Josén Pimeä Puoli, som är på stark uppgång, är redo att ta nästa steg och erövra större scener.</p><p>Josén Pimeä Puoli delar med sig av sin livsbejakande historia på höstens konsertturné Hyppää kyytiin!. Underbart cyniska, sprudlande romanser, eviga kärlekar, förbipasserande och inspirerande reskamrater... allt vad livet än kan rymma! Singeln som släpps i oktober ger redan en vink om vad som komma skall, och konserten bjuder också på helt nya berättelser, som inte släpps förrän 2026.</p><p>Kom med – Josén Pimeä Puoli kallar!</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>Josén Pimeä Puoli is now captivating audiences in concert halls all over Finland – the Hyppää Kyytiin! (‘Jump on board!’) tour will start in October.</p><p>Recently, clubs both large and small have been filled with an audience in silent wonder. Josén Pimeä Puoli has been enjoying a rapid rise to fame and is now ready to take the next step and conquer bigger stages.</p><p>Josén Pimeä Puoli will share its authentic story in this autumn’s concert tour titled Hyppää kyytiin! – Jump on board! Wonderfully cynical and yet sparkling romances, everlasting loves, passers-by and thrilling travelling companions... all the great things that make up life! The single to be released in October hints at the things to come, and the concert will also feature brand-new stories that won't be released until 2026.</p><p>Jump on board – Josén Pimeä Puoli is calling!</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>"
            },
            "name": {
                "fi": "Josèn Pimeä Puoli: Hyppää kyytiin!",
                "sv": "Josèn Pimeä Puoli: Hyppää kyytiin!",
                "en": "Josèn Pimeä Puoli: Hyppää kyytiin!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Central Line Entertainment",
                "sv": "Central Line Entertainment",
                "en": "Central Line Entertainment"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65849/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66989",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20631685",
                        "sv": "https://www.lippu.fi/event/name-20631685",
                        "en": "https://www.lippu.fi/event/name-20631685"
                    },
                    "description": null,
                    "price": {
                        "fi": "32,90 / 35,90 €",
                        "sv": "32,90 / 35,90 €",
                        "en": "32,90 / 35,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490700,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-09T09:14:22.315054Z",
                    "last_modified_time": "2025-09-09T09:14:22.315072Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777391.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490700/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-09T09:14:22.191914Z",
            "last_modified_time": "2025-09-26T11:13:44.129424Z",
            "date_published": null,
            "start_time": "2025-11-21T18: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,
            "short_description": {
                "fi": "Younghearted kutsuu yleisön kahteen erityiseen iltaan, joissa syksyn pimeys saa rinnalleen lämmön ja valon. Intiimit Valoa pimeään -konsertit kuullaan perjantaina 17.10. Tampereen Tuulensuun Palatsissa ja perjantaina 21.11. Helsingin Savoy-teatterissa.",
                "sv": "Younghearted bjuder in publiken till två speciella kvällar, där höstens mörker får sällskap av värme och ljus. De intima konserterna med namnet Valoa pimeään (Ljus i mörkret) äger rum fredagen den 17 oktober i Tuulensuun Palatsi i Tammerfors och fredagen den 21 november på Savoy-teatern i Helsingfors.",
                "en": "Younghearted invites the audience to two special evenings, where the darkness of autumn is accompanied by warmth and light. The intimate Valoa pimeään concerts will take place on Friday 17 October in Tuulensuu Palatsi in Tampere and on Friday 21 November at the Savoy Theatre in Helsinki."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3F2836C86D018E4B507E5C84EF6085E6/Younghearted_Valoa_pimeaan_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/3F2836C86D018E4B507E5C84EF6085E6/Younghearted_Valoa_pimeaan_",
                "en": "http://www.savoyteatteri.fi/en/events/event/3F2836C86D018E4B507E5C84EF6085E6/Younghearted_Valoa_pimeaan_"
            },
            "description": {
                "fi": "<p>Younghearted kutsuu yleisön kahteen erityiseen iltaan, joissa syksyn pimeys saa rinnalleen lämmön ja valon. Intiimit Valoa pimeään -konsertit kuullaan perjantaina 17.10. Tampereen Tuulensuun Palatsissa ja perjantaina 21.11. Helsingin Savoy-teatterissa.</p><p>Näissä tunnelmallisissa illoissa musiikki soitetaan iholla ja lähellä, valojen luodessa herkän ja vahvan visuaalisen maailman. Luvassa on uniikkeja hetkiä, joissa Younghearted näyttää herkimmän puolensa ja antaa tilaa niin hiljaisuudelle kuin suurille tunteille.<br> <br>Lämminhenkisistä keikoistaan tunnettu trio – <b>Reetta Huotarinen, Atte Ranta</b> ja <b>Emil Korkiakoski</b> – on kulkenut yhdessä jo yli kymmenen vuoden matkan. Yhtye on valloittanut kuulijoita hiteillään Hetkeksi, Tässä ja nyt ja Sun numero, sekä uusimmilla julkaisuillaan, kuten tulevalta albumilta poimitut Mustangi II ja Täysikuu.</p><p>Valoa pimeään -illat tarjoavat ainutlaatuisen mahdollisuuden kokea Younghearted uudessa, entistä läheisemmässä valossa - hetkissä, jotka jäävät mieleen.</p><p>Kesto n. 1 h 15 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Younghearted bjuder in publiken till två speciella kvällar, där höstens mörker får sällskap av värme och ljus. De intima konserterna med namnet Valoa pimeään (Ljus i mörkret) äger rum fredagen den 17 oktober i Tuulensuun Palatsi i Tammerfors och fredagen den 21 november på Savoy-teatern i Helsingfors.</p><p>Under de stämningsfulla kvällarna spelas musiken nära inpå, medan belysningen skapar en känslig och kraftfull visuell värld. Det utlovas unika ögonblick, där Younghearted visar sin känsligaste sida och ger utrymme för tystnad såväl som stora känslor.</p><p>Trion Reetta Huotarinen, Atte Ranta och Emil Korkiakoski är kända för sina varmhjärtade spelningar och har spelat tillsammans i över tio år redan. Bandet har fängslat publiken med sina hits Hetkeksi, Tässä ja nyt och Sun numero, liksom med några av sina senaste låtar, till exempel Mustangi II och Täysikuu från det kommande albumet.</p><p>Kvällarna med temat Ljus i mörkret är en unik möjlighet att uppleva Younghearted i ett nytt, ännu intimare ljus – i ögonblick som kommer att dröja sig kvar.</p><p>Längd ca 1 h 15 min., ingen paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Younghearted invites the audience to two special evenings, where the darkness of autumn is accompanied by warmth and light. The intimate Valoa pimeään concerts will take place on Friday 17 October in Tuulensuu Palatsi in Tampere and on Friday 21 November at the Savoy Theatre in Helsinki.</p><p>The band will perform the music close to the skin during these intimate shows, with the lights creating a delicate yet powerful visual world. The evenings will deliver unique moments where Younghearted will showcase its most sensitive side, giving space to both silence and moving emotions.</p><p>The trio – Reetta Huotarinen, Atte Ranta and Emil Korkiakoski – are known for their warm-hearted performances and have been on their shared journey for over a decade. The band has captivated audiences with their hits Hetkeksi, Tässä ja nyt and Sun numero, as well as their latest releases, such as the songs Mustangi II and Täysikuu from their upcoming album.</p><p>The Valoa pimeään evenings offer a unique opportunity to experience Younghearted in a new, more intimate light – in moments that will stay with you.</p><p>Duration approx. 1 h 15 min, no 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>"
            },
            "name": {
                "fi": "Younghearted – Valoa pimeään",
                "sv": "Younghearted – Valoa pimeään",
                "en": "Younghearted – Valoa pimeään"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Live Nation Finland Oy",
                "sv": "Live Nation Finland Oy",
                "en": "Live Nation Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66989/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66927",
            "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:105/?format=api"
                },
                {
                    "@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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20577498",
                        "sv": "https://www.lippu.fi/event/name-20577498",
                        "en": "https://www.lippu.fi/event/name-20577498"
                    },
                    "description": null,
                    "price": {
                        "fi": "32,90 €",
                        "sv": "32,90 €",
                        "en": "32,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490516,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-26T07:14:16.288496Z",
                    "last_modified_time": "2025-08-26T07:14:16.288512Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764241.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490516/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-26T07:14:16.125761Z",
            "last_modified_time": "2025-09-26T10:13:38.907728Z",
            "date_published": null,
            "start_time": "2025-11-14T16: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,
            "short_description": {
                "fi": "Nyt kuuluu upeita uutisia Velhovuorelta! Jurahevin kuninkaat Herra Hevisaurus, Milli Pilli, Komppi Momppi, Riffi Raffija Muffi Puffi eli lasten ja aikuisten suosikkiyhtye Hevisaurus on saanut valmiiksi upouuden levynsä!",
                "sv": "Nu kommer det fantastiska nyheter från Velhovuori, det magiska berget! Jurarockens kungar, Herra Hevisaurus, Milli Pilli, Komppi Momppi, Riffi Raffi och Muffi Puffi, med andra ord barns och vuxnas favoritband Hevisaurus, har blivit klara med ett helt nytt album!",
                "en": "Great news from the Mountain of the Wizards – the birth grounds of Hevisaurus! The kings of dinosaur metal, Herra Hevisaurus, Milli Pilli, Komppi Momppi, Riffi Raffi and Muffi Puffi – i.e. the band Hevisaurus, a favourite of children and adults alike – have finished their brand-new album!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F6D72AACD6AA7B9E03C206CA91B26DB6/Hevisaurus_-_Maailmankiertueella_-_Rayh_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F6D72AACD6AA7B9E03C206CA91B26DB6/Hevisaurus_pa_varldsturn_Ryt_",
                "en": "http://www.savoyteatteri.fi/en/events/event/F6D72AACD6AA7B9E03C206CA91B26DB6/_Hevisaurus_-_Maailmankiertueella_-_Rayh_"
            },
            "description": {
                "fi": "<p>Nyt kuuluu upeita uutisia Velhovuorelta! Jurahevin kuninkaat Herra Hevisaurus, Milli Pilli, Komppi Momppi, Riffi Raffija Muffi Puffi eli lasten ja aikuisten suosikkiyhtye Hevisaurus on saanut valmiiksi upouuden levynsä!</p><p>Uuden levyn nimi on Maailmankiertueella ja se julkaistiin helmikuussa 2025. Albumilta lohkaistiin etukäteen kaksi singleä: Hevimetallisarvet sekä halloweenin suosikkibiisiksi noussut karmaiseva Kalloween. Levyn maailmankiertueella Hevisaurus seikkailee kahdentoista kappaleen voimin ympäri maailmaa niin Irlannissa, Egyptissä, Saksassa kuin Thaimaan lämmössäkin. Maailmankiertueella on Hevisauruksen jo kuusitoista vuotta sitten alkaneen levytysuran yhdeksäs studioalbumi. Edellinen albumi Bändikouluun!julkaistiin vuonna 2019.</p><p>Neljän dinosauruksen ja lohikäärmeen muodostama koko perheen suosikkiyhtye Hevisaurus syntyi vuonna 2009 ajatuksesta tehdä laadukasta hevimusiikkia lapsille ja lapsenmielisille. Räyhäkäs juraheviyhtye on julkaissut yhdeksän studioalbumia ja on palkittu kaksi kertaa parhaan lastenmusiikkilevyn Emmalla. Kolme yhdeksästä Hevisauruksen albumeista on yltänyt kultarajoille, kaksi myynyt platinaa ja vuoden 2009 Jurahevin kuninkaat-esikoisalbumi myi jo ensimmäisenä vuotenaan tuplaplatinaa. Viime vuosina Hevisaurus on ollut maailmankiertueella myös ihan konkreettisesti, kun Heavysaurus-nimellä toimiva yhtye on saavuttanut suurta suosiota Keski-Euroopan saksankielisissä maissa.</p><p>Konsertti soveltuu kaikenikäisille.</p><p>Konsertin kesto on n. 1 tunti. Ei väliaikaa.</p>",
                "sv": "<p>Nu kommer det fantastiska nyheter från Velhovuori, det magiska berget! Jurarockens kungar, Herra Hevisaurus, Milli Pilli, Komppi Momppi, Riffi Raffi och Muffi Puffi, med andra ord barns och vuxnas favoritband Hevisaurus, har blivit klara med ett helt nytt album!</p><p>Det nya albumet heter Maailmankiertueella (På världsturné) och släpptes i februari 2025. Två singlar från albumet släpptes i förväg: Hevimetallisarvet och den kusliga Kalloween, som blivit en halloweenfavorit. På albumets världsturné åker Hevisaurus världen runt med tolv låtar, till såväl Irland, Egypten, Tyskland som Thailands värme. Maailmankiertueella är det nionde studioalbumet under Hevisaurus skivinspelningskarriär, som fick sin början för sexton år sedan. Deras förra album Bändikouluun! släpptes 2019.</p><p>Hevisaurus, ett favoritband för hela familjen bestående av fyra dinosaurier och en drake, föddes 2009 ur idén att göra hårdrock av hög kvalitet för barn och andra med barnasinnet kvar. Det ettriga hårdrocksbandet har släppt nio studioalbum och två gånger belönats med en Emma för bästa musikalbum för barn. Tre av Hevisaurus nio album har nästan sålt guld, två har sålt platina och specialalbumet Jurahevin kuninkaat från 2009 sålde dubbel platina redan under sitt första år. Under de senaste åren har Hevisaurus varit på världsturné också i egentlig mening, då bandet under namnet Heavysaurus har blivit mycket populärt i de tysktalande länderna i Mellaneuropa.</p><p>Konserten lämpar sig för alla åldrar.</p><p>Konserten är ca 1 timme lång. Ingen paus.</p>",
                "en": "<p>Great news from the Mountain of the Wizards – the birth grounds of Hevisaurus! The kings of dinosaur metal, Herra Hevisaurus, Milli Pilli, Komppi Momppi, Riffi Raffi and Muffi Puffi – i.e. the band Hevisaurus, a favourite of children and adults alike – have finished their brand-new album!</p><p>The new album is called Maailmankiertueella – “On a world tour” – and was released in February 2025. Two singles from the album were released in advance: Hevimetallisarvet and Kalloween – a creepy Halloween favourite. The album depicts a world tour, where Hevisaurus will be touring the world with twelve songs, visiting places such as Ireland, Egypt, Germany and Thailand. Maailmankiertueella is the ninth studio album of Hevisaurus’s recording career, which began sixteen years ago. Their previous album, Bändikouluun!, was released in 2019.</p><p>Hevisaurus, a family favourite made up of four dinosaurs and a dragon, was born in 2009 with the idea of making high-quality heavy metal music for children and those young at heart. The raucous Jurassic metal band has released a total of nine studio albums and has twice won the Emma Award for best children's music album. Three of the band's nine albums have gone gold, two have gone platinum and the 2009 special album Jurahevin kuninkaat went double platinum in its first year alone. In recent years, Hevisaurus have also been on a world tour in a very real sense of the word; under the name Heavysaurus, the band has been gaining great popularity in the German-speaking countries of Central Europe.</p><p>The concert is suitable for all ages.</p><p>The duration of the concert is about one hour. No intermission.</p>"
            },
            "name": {
                "fi": "Hevisaurus - Maailmankiertueella - Räyh!",
                "sv": "Hevisaurus på världsturné – Ryt!",
                "en": "Hevisaurus - Maailmankiertueella - Räyh!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Sony Music Entertainment Finland Oy",
                "sv": "Sony Music Entertainment Finland Oy",
                "en": "Sony Music Entertainment Finland Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66927/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66026",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20131315",
                        "sv": "https://www.lippu.fi/event/name-20131315",
                        "en": "https://www.lippu.fi/event/name-20131315"
                    },
                    "description": null,
                    "price": {
                        "fi": "45,50 €",
                        "sv": "45,50 €",
                        "en": "45,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 538176,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-15T06:14:25.178524Z",
                    "last_modified_time": "2025-04-15T06:14:25.178543Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770479.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/538176/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-15T06:14:25.135201Z",
            "last_modified_time": "2025-09-26T10:13:34.532358Z",
            "date_published": null,
            "start_time": "2025-11-01T17: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,
            "short_description": {
                "fi": "Laura Voutilainen jatkaa 50-vuotis juhlakarkeloitaan ainutlaatuisissa Enemmän -konsertissa",
                "sv": "Laura Voutilainen fortsätter sitt 50-årsfirande med den unika konserten Enemmän (Mer)",
                "en": "Laura Voutilainen continues her 50th anniversary celebrations with a unique concert called Enemmän – More."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/584CFF1807C0F058131E396621D8DBB5/Laura_Voutilainen_Enemman",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/584CFF1807C0F058131E396621D8DBB5/Laura_Voutilainen_Enemman",
                "en": "http://www.savoyteatteri.fi/en/events/event/584CFF1807C0F058131E396621D8DBB5/Laura_Voutilainen_Enemman"
            },
            "description": {
                "fi": "<p>Laura Voutilainen jatkaa 50-vuotis juhlakarkeloitaan ainutlaatuisissa Enemmän -konsertissa</p><p>Laura on avoimesti kertonut elämästään artistina ja naisena sekä elämänkoulun antamistaan opeistaan keväällä 2025 julkaistussa kirjassaan Laura Voutilainen - Enemmän kuin ääni. Valikoiduissa viidessä Enemmän -konserteissa Lauran bändin kanssa lavalle nousee RNO:n puhaltajista ja jousista koottu upea muusikkoryhmä. Luvassa on koskettavia ja hauskoja tarinoita elämästä, komeita tulkintoja, sointujen juhlaa - jotain <b>Enemmän</b>.</p><p><i>” Olen haaveillut tästä pitkään ja nyt 50-vuotissyntymäpäiväni kunniaksi halusin antaa tämän lahjan minulle ja sinulle.”</i></p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Laura Voutilainen fortsätter sitt 50-årsfirande med den unika konserten Enemmän (Mer)</p><p>Laura har öppet berättat om sitt liv som artist och kvinna samt de lärdomar hon har fått genom livets skola i sin bok Laura Voutilainen – Enemmän kuin ääni (Mer än en röst), som utkom våren 2025. I fem utvalda konserter med namnet Enemmän får Lauras band sällskap på scenen av en fantastisk grupp bestående av RNO:s blåsare och stråkmusiker. Det utlovas rörande och roliga berättelser om livet, fina tolkningar, en hyllning till ackorden – någonting mer, som konsertens titel säger.</p><p>”Jag har drömt om det här länge och nu på min 50-årsdag vill jag ge den här gåvan till mig och till dig.”</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>Laura Voutilainen continues her 50th anniversary celebrations with a unique concert called Enemmän – More.</p><p>Laura has spoken openly about her life as an artist and a woman, and the lessons she has learned from her life, in her book ‘Laura Voutilainen – Enemmän kuin ääni’, published in spring 2025. In the carefully selected five Enemmän concerts, Laura's band will be joined on stage by a great group of RNO wind and string instrument musicians. The evenings will offer both touching and funny stories of real life, beautiful song interpretations, celebration of melodies... something more.</p><p>“I've been dreaming about this for a long time and now, to honour my 50th birthday, I wanted to give this gift both to me and to you.”</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>"
            },
            "name": {
                "fi": "Laura Voutilainen: Enemmän",
                "sv": "Laura Voutilainen: Enemmän",
                "en": "Laura Voutilainen: Enemmän"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Central Line Entertainment",
                "sv": "Central Line Entertainment",
                "en": "Central Line Entertainment"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66026/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65505",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3819941",
                        "sv": "https://www.lippu.fi/eventseries/name-3819941",
                        "en": "https://www.lippu.fi/eventseries/name-3819941"
                    },
                    "description": null,
                    "price": {
                        "fi": "38,90-48,90 €",
                        "sv": "38,90-48,90 €",
                        "en": "38,90-48,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 192322,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-04T11:14:00.953253Z",
                    "last_modified_time": "2025-02-04T11:14:00.953270Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765020.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192322/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-04T11:14:00.916062Z",
            "last_modified_time": "2025-09-26T10:13:31.631116Z",
            "date_published": null,
            "start_time": "2025-10-24T16: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,
            "short_description": {
                "fi": "Olemme ylpeitä voidessamme esittää Savoy-teatterissa ainutkertaisen konsertin, jonka tähtenä esiintyy Duke Robillard.",
                "sv": "Vi är stolta över att kunna presentera en unik konsert på Savoy-teatern med Duke Robillard i huvudrollen.",
                "en": "We are proud to present this unique concert starring Duke Robillard at the Savoy Theatre."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1C7B457347A132FE5315F33118029C20/Duke_Robillard_USA_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/1C7B457347A132FE5315F33118029C20/Duke_Robillard_USA_",
                "en": "http://www.savoyteatteri.fi/en/events/event/1C7B457347A132FE5315F33118029C20/Duke_Robillard_USA_"
            },
            "description": {
                "fi": "<p>Olemme ylpeitä voidessamme esittää Savoy-teatterissa ainutkertaisen konsertin, jonka tähtenä esiintyy Duke Robillard.</p><p>Robillard (s. 1948) on yksi merkittävimmistä blues-ikoneista. Hänellä on ainutlaatuinen, välittömästi tunnistettava, soundinsa. Häntä pidetään yleisesti maailman parhaimpiin kuuluvana blueskitaristeista. Itse B.B. King kutsui häntä ”yhdeksi suurimmista soittajista”.</p><p>Konsertissa juhlistetaan Duken valtavaa panosta roots-musiikin saralla ja siinä kuullaan kohokohtia Duken uralta sekä henkilökohtaisia suosikkeja. Taustalla esiintyy täysi bändi puhallinsektioineen. Luvassa on kaikille muusikin ystäville hieno ilta intiimissä ympäristössä. Konsertin jälkeen sinulla on mahdollisuus tavata Duke nimikirjoituksen tai valokuvan merkeissä.</p><p>Duke Robillardin ura käynnistyi 1967, kun hän muodosti Roomful Of Bluesin, josta muodostui autenttisen lähestymistavan vuoksi pian yksi arvostetuimmista blues-kokoonpanoista. Hän oli bändissä 10 vuotta, jonka jälkeen jatkoi uraansa useissa erilaisissa kokoonpanoissa. Näihin lukeutuvat kiertueet rockabilly artisti Robert Gordonin kanssa ja yhteistyö Fabulous Thunderbirdsin kanssa, joka oli tuolloin maailman suosituimpia bluesyhtyeitä. Yhteistyön kohokohtia oli vuoden 1991 albumi ”Walk That Walk, Talk That Talk”.</p><p>Robillard työskenteli myös sellaisten blues-legendojen kuin Muddy Waters, Big Joe Turner, Ronnie Earl ja Ruth Brown sekä jopa Bob Dylanin kanssa. Duke on levyttänyt yli 30 arvostettua sooloalbumia. Albumit tutkivat erilaisia tyylejä bluesin genressä, joihin lukeutuvat varhainen R&B, jump blues, blues, swing jazz ja bluesrock. Robillard on palkittu lukuisilla palkinnoilla ja on voittanut viisi kertaa W.C. Handy Palkinnon ”parhaana kitaristina”. Hän on ollut kaksi kertaa Grammy-ehdokkaana.</p><p>Duke Robillard on taiteensa todellinen mestari. Hänen erottuva kitarasoundinsa on vaikuttanut moniin. Duken intohimo ja bluesin syvällinen ymmärtäminen kaikissa muodoissaan heijastuu hänen tuotantoonsa. Artistina hän jatkaa edelleen kehittymistään.</p><p>Tämä konsertti on ainutkertainen mahdollisuus kokea todellinen muusikin jättiläinen läheltä. Duke sanoo odottavansa konserttia, joka on ainoa kerta, kun hän esiintyy Suomessa.</p><p>Kesto n. 2 h 15 min, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Vi är stolta över att kunna presentera en unik konsert på Savoy-teatern med Duke Robillard i huvudrollen.</p><p>Robillard (f. 1948) är en av de mest betydande bluesikonerna. Han har ett unikt och omedelbart igenkännbart sound. Han anses allmänt vara en av de bästa bluesgitarristerna i världen. Självaste B.B. King kallade honom för \"en av de största musikerna\".</p><p>Konserten hyllar Dukes enorma bidrag till rootsmusiken samt innehåller höjdpunkter från Dukes karriär och personliga favoriter. I bakgrunden uppträder ett helt band med blåssektioner. Det kommer att bli en fantastisk kväll i en intim miljö för alla musikälskare. Efter konserten har du möjlighet att träffa Duke för att få en autograf eller ett foto.</p><p>Duke Robillards karriär tog sin början 1967, när han bildade Roomful Of Blues, som tack vare sin autentiska approach snart blev ett av de mest uppskattade bluesbanden. Han var med i bandet i tio år, varefter han fortsatte sin karriär i olika ensembler. Detta inkluderar bland annat turnéer med rockabilly-artisten Robert Gordon och samarbeten med Fabulous Thunderbirds, ett av de mest populära bluesbanden i världen vid den tiden. En av höjdpunkterna i samarbetet var 1991 års album Walk That Walk, Talk That Talk.</p><p>Robillard arbetade också med blueslegender som Muddy Waters, Big Joe Turner, Ronnie Earl och Ruth Brown, och till och med Bob Dylan. Duke har spelat in mer än 30 hyllade soloalbum. Albumen utforskar olika stilar inom bluesgenren, bland annat tidig R&B, jump blues, blues, swing jazz och bluesrock. Robillard har tilldelats ett stort antal priser och vunnit priset för bästa gitarrist vid W.C. Handy Awards fem gånger. Han har två gånger nominerats till en Grammy.</p><p>Duke Robillard är en sann mästare på sin konstform. Hans distinkta gitarrsound har påverkat många. Dukes passion och djupa förståelse för bluesen i alla dess former återspeglar sig i hans produktion. Som artist fortsätter han ännu att utvecklas.</p><p>Denna konsert är en unik möjlighet att uppleva en sann musikalisk gigant på nära håll. Duke säger att han ser fram emot konserten, som är den enda gången han uppträder i Finland.</p><p>Längd ca 2 h 15 min., inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>We are proud to present this unique concert starring Duke Robillard at the Savoy Theatre.</p><p>Robillard (b. 1948) is one of the most significant blues icons. He has a unique, instantly recognisable sound. Robillard is widely regarded as one of the best blues guitarists in the world. B.B. King himself called him ‘one of the greatest players’.</p><p>The concert celebrates Duke's extensive contributions to roots music and features highlights from Duke's career as well as some of his personal favourites. The performance is backed up with a full band with a wind section. This will be a great evening for all music lovers in an intimate setting. After the concert, you will have the opportunity to meet Duke for an autograph or a photo.</p><p>Duke Robillard's career was launched in 1967 when he formed Roomful Of Blues, an ensemble which soon became one of the most well-respected blues groups due to its authentic approach. He was with the band for 10 years, after which he continued his career in several different ensembles. These include tours with rockabilly artist Robert Gordon and collaborations with the Fabulous Thunderbirds, one of the most popular blues bands in the world at the time. One of the highlights of their collaboration was the 1991 album “Walk That Walk, Talk That Talk”.</p><p>Robillard also worked with blues legends such as Muddy Waters, Big Joe Turner, Ronnie Earl and Ruth Brown, and even with Bob Dylan. Duke has recorded more than 30 acclaimed solo albums. The albums explore the different styles of the blues genre, including early R&B, jump blues, blues, swing jazz and blues rock. Robillard has received numerous awards and has won the W.C. Handy Award for ‘Best Guitarist’ five times. He has been nominated for a Grammy Award twice.</p><p>Duke Robillard is a true master of his art. His distinctive guitar sound has influenced many. Duke's passion for and deep understanding of blues in all its forms is reflected in his production. He still continues to evolve as an artist.</p><p>This concert is a unique opportunity to experience a true giant in the music scene up close. Duke says he is looking forward to the concert, which is the only time he will perform in Finland.</p><p>Duration approx. 2 h 15 min, 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>"
            },
            "name": {
                "fi": "Duke Robillard (USA)",
                "sv": "Duke Robillard (USA)",
                "en": "Duke Robillard (USA)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Deelen Consultancies",
                "sv": "Deelen Consultancies",
                "en": "Deelen Consultancies"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65505/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66866",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "sv": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/",
                        "en": "https://www.lippu.fi/artist/the-great-helsinki-swing-big-band/"
                    },
                    "description": null,
                    "price": {
                        "fi": "27/34 €",
                        "sv": "27/34 €",
                        "en": "27/34 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T09:14:03.552368Z",
                    "last_modified_time": "2025-08-18T09:14:03.552388Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775701.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-18T09:14:03.434440Z",
            "last_modified_time": "2025-09-26T10:13:29.824937Z",
            "date_published": null,
            "start_time": "2025-10-17T16: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,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_",
                "en": "http://www.savoyteatteri.fi/en/events/event/679F0DAC168B065FC21B6C3FD613D11C/The_Great_Helsinki_Swing_Big_Band_It_s_a_Swingin_Affair_"
            },
            "description": {
                "fi": "<p>Vuonna 2005 perustettu <b>The Great Helsinki Swing Big Band</b> on Suomen ainoa perinteiseen swing-aikakauden big band -musiikkiin erikoistunut musiikin ammattilaisista koostuva orkesteri. Orkesteri vaalii monimuotoista swing-musiikin historiaa esittämällä swing-aikakauden mestariteoksia mahdollisimman autenttisesti. Tässä konsertissa musiikkinsa kautta mukana ovat Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra ja Anita O Day. Orkesterin solisteina toimivat <b>Annimaria Rinne, Juki Välipakka</b> ja <b>Hanne Rouvalin</b> luotsaama <b>The Oldinaires-lauluyhtye</b>. Konsertin johtaa <b>Antti Rissanen</b>.</p><p>Kesto n. 2 h 30min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>The Great Helsinki Swing Big Band grundades 2005 och är Finlands enda orkester med professionella musiker som specialiserat sig på traditionell storbandsmusik från swingeran. Orkestern hyllar swingmusikens mångfacetterade historia genom att på ett så autentiskt sätt som möjligt framföra mästerverk från swingeran. Denna konsert presenterar Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra och Anita O’Day genom deras musik. Orkesterns solister är Annimaria Rinne, Juki Välipakka och The Oldinaires, en vokalensemble under ledning av Hanne Rouval. Konserten leds av Antti Rissanen.</p><p>Längd ca 2 h 30 min., inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Founded in 2005, The Great Helsinki Swing Big Band is Finland's only orchestra of music professionals specialising in traditional swing-era big band music. The orchestra strives to cherish the diverse history of swing music by performing the masterpieces of the swing era as authentically as possible. Through the music of old masters, this concert will feature Glenn Miller, Tommy Dorsey, Gene Grupa, Frank Sinatra and Anita O'Day. The soloists of the orchestra are Annimaria Rinne, Juki Välipakka and The Oldinaires, a vocal ensemble led by Hanne Rouvali. The concert will be conducted by Antti Rissanen.</p><p>Duration approx. 2 h 30 min, 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>"
            },
            "name": {
                "fi": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\"",
                "sv": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\"",
                "en": "The Great Helsinki Swing Big Band: \"It's a Swingin Affair\""
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry",
                "sv": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry",
                "en": "Savoy-teatteri & The Great Helsinki Swing Big Band -yhdistys ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66866/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66013",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/",
                        "sv": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/",
                        "en": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29-35 €",
                        "sv": "29-35 €",
                        "en": "29-35 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 546547,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-16T10:14:42.189710Z",
                    "last_modified_time": "2025-04-16T10:14:42.189730Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769728.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/546547/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-16T10:14:42.153932Z",
            "last_modified_time": "2025-09-26T10:13:25.801070Z",
            "date_published": null,
            "start_time": "2025-10-04T17: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,
            "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/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_K-18",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-18",
                "en": "http://www.savoyteatteri.fi/en/events/event/83DCE376AF86602C6C858B774ECD8D29/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-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>"
            },
            "name": {
                "fi": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!",
                "sv": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Slutsåld!",
                "en": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Sold out!"
            },
            "provider_contact_info": null,
            "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:66013/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66210",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/",
                        "sv": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/",
                        "en": "https://www.lippu.fi/event/koepi-kallio-huono-suoritus-savoy-teatteri-20233041/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29-35 €",
                        "sv": "29-35 €",
                        "en": "29-35 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 715326,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-08T11:14:03.614336Z",
                    "last_modified_time": "2025-05-08T11:14:03.614354Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772834.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/715326/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-08T11:14:03.499053Z",
            "last_modified_time": "2025-09-26T10:13:25.465947Z",
            "date_published": null,
            "start_time": "2025-10-04T14: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,
            "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/DE86856FA7EA91D2976A5A9CE7DF0E91/Kopi_Kallio_Huono_suoritus_K-18",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DE86856FA7EA91D2976A5A9CE7DF0E91/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-18",
                "en": "http://www.savoyteatteri.fi/en/events/event/DE86856FA7EA91D2976A5A9CE7DF0E91/Kopi_Kallio_Huono_suoritus_stand_up_-esitys_K-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>"
            },
            "name": {
                "fi": "Köpi Kallio: Huono suoritus K-18 – Loppuunmyyty! / Sold out!",
                "sv": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Slutsåld!",
                "en": "Köpi Kallio: Huono suoritus, stand up -esitys K-18 – Sold out!"
            },
            "provider_contact_info": null,
            "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:66210/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65921",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20089538",
                        "sv": "https://www.lippu.fi/event/name-20089538",
                        "en": "https://www.lippu.fi/event/name-20089538"
                    },
                    "description": null,
                    "price": {
                        "fi": "45,90 €",
                        "sv": "45,90 €",
                        "en": "45,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 484901,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-07T12:15:21.610711Z",
                    "last_modified_time": "2025-04-07T12:15:21.610730Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_768348.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/484901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-07T12:15:21.563518Z",
            "last_modified_time": "2025-09-26T10:13:25.063243Z",
            "date_published": null,
            "start_time": "2025-10-03T16: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,
            "short_description": {
                "fi": "Saara Aalto ja Teemu Roivainen lähtevät yhdessä Rakkaustarina -20-vuotisjuhlakiertueelle syksyllä 2025.",
                "sv": "Saara Aalto och Teemu Roivainen ger sig tillsammans ut på 20-årsjubileumsturnén Rakkaustarina (En kärlekshistoria) hösten 2025.",
                "en": "Saara Aalto and Teemu Roivainen will embark on their 20th anniversary tour, entitled Rakkaustarina (Love story), in autumn 2025."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D673A0B6472A00E55E76BE504018CC63/Saara_Aalto_Teemu_Roivainen_-_Rakkaustarina",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D673A0B6472A00E55E76BE504018CC63/Saara_Aalto_Teemu_Roivainen_-_Rakkaustarina",
                "en": "http://www.savoyteatteri.fi/en/events/event/D673A0B6472A00E55E76BE504018CC63/Saara_Aalto_Teemu_Roivainen_-_Rakkaustarina"
            },
            "description": {
                "fi": "<p>Saara Aalto ja Teemu Roivainen lähtevät yhdessä Rakkaustarina -20-vuotisjuhlakiertueelle syksyllä 2025.</p><p>Tavatessaan toisensa lukiossa vuonna 2002 heistä syntyi nopeasti tiivis pari, joka jakoi rakkauden musiikkiin ja alkoi esiintymään yhdessä niin lavoilla kuin levyillä. Tällä kiertueella kuulet heidän uransa hienoimpia ja tärkeimpiä kappaleita yli 20-vuotisen matkan varrelta, sekä pääset seuraamaan parin uskomatonta tarinaa tarinoiden muodossa.<br> <br>Luvassa kauneimpia duettoja, ennen kuulemattomia yllätyskappaleita, parhaita paloja vuosien varrelta, sekä pysäyttävimpiä esityksiä Teemun tangokuninkuusvuosilta ja Saaran X Factor UK-matkalta.<br> <br><i>\"En malta odottaa, että ihmiset kuulevat ennen kuulemattomia tarinoita meidän yhteisestä matkastamme ja pääsevät kuulemaan kaikki ne upeat kappaleet, jotka ovat muovanneet meidät siksi keitä nyt olemme.\"</i><br>  <br>Kesto n. 2 tuntia sis. väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Saara Aalto och Teemu Roivainen ger sig tillsammans ut på 20-årsjubileumsturnén Rakkaustarina (En kärlekshistoria) hösten 2025.</p><p>När de träffades på gymnasiet 2002 blev de snabbt ett oskiljaktigt par, som delade kärleken till musiken och började uppträda tillsammans på scen och spela in skivor tillsammans. På den här turnén får du höra några av de finaste och viktigaste låtarna från deras över 20 år långa karriär och följa deras otroliga historia i form av berättelser.</p><p>Det utlovas vackra duetter, aldrig tidigare spelade överraskningslåtar, de bästa låtarna genom åren, liksom de mest häpnadsväckande framföranden från Teemus år som tangokung och Saras resa i X Factor UK.</p><p>\"Jag längtar efter att människor ska få höra aldrig tidigare hörda berättelser om vår resa tillsammans och alla de fantastiska låtar som har gjort oss till dem vi är i dag.\"</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>Saara Aalto and Teemu Roivainen will embark on their 20th anniversary tour, entitled Rakkaustarina (Love story), in autumn 2025.</p><p>After meeting in a general upper secondary school in 2002, they quickly became a close couple who shared a love of music and began performing together, both live and on records. On this tour, you will hear some of the greatest and most important songs of their career, spanning more than 20 years, and will be able to follow their incredible journey through the stories told.</p><p>The concert offers their most beautiful duets, never-before-heard surprise songs, best bits from over the years, and the most show-stopping performances from Teemu's years as a Tango Royal and Saara’s journey in the X Factor UK.</p><p>“I can't wait for people to hear the never-before-heard stories of our journey together and to listen to all the great songs that have shaped us into who we are today.”</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>"
            },
            "name": {
                "fi": "Saara Aalto & Teemu Roivainen - Rakkaustarina",
                "sv": "Saara Aalto & Teemu Roivainen - Rakkaustarina",
                "en": "Saara Aalto & Teemu Roivainen - Rakkaustarina"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Sony Music Live",
                "sv": "Sony Music Live",
                "en": "Sony Music Live"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65921/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmyldwgtq",
            "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:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?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:p2739/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-26T10:09:18.326925Z",
            "last_modified_time": "2025-09-26T10:09:18.326946Z",
            "date_published": null,
            "start_time": "2025-11-01T09:00:00Z",
            "end_time": "2025-11-01T12: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,
            "short_description": {
                "fi": "Tule mukaan luovaan työpajaan, jossa tehdään hauskoja liikkuvia eläinhahmoja värikkäistä tikuista, napeista ja huovasta. ",
                "sv": "Kom med på en kreativ verkstad där vi gör roliga rörliga djurfigurer av färgglada pinnar, knappar och filt.",
                "en": "Join a creative workshop where we make fun moving animal characters out of colorful sticks, buttons, and felt."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Haaraniittien avulla hahmot saavat liikkuvat osat; suu voi aueta, häntä heilua tai siivet liikkua. Työpaja sopii kaikenikäisille ja tarjoaa onnistumisia sekä mahdollisuuden käyttää mielikuvitusta. Lopputuloksena persoonallinen oma eläin tai mielikuvitushahmo. Työpaja on maksuton.</p>",
                "sv": "<p>Med hjälp av jungfruben får figurerna rörliga delar; munnen kan öppnas, svansen vifta eller vingarna röra sig. Verkstaden passar för alla åldrar och bjuder på både lyckade resultat och möjlighet att använda fantasin. Som slutresultat får du ett personligt eget djur eller fantasifigur. Verkstaden är gratis.</p><p><br></p>",
                "en": "<p>With the help of paper fasteners, the characters get moving parts; the mouth can open, the tail can wag, or the wings can move. The workshop is suitable for all ages and offers both a sense of achievement and the chance to use your imagination. The end result is a unique personal animal or fantasy character. The workshop is free of charge.</p>"
            },
            "name": {
                "fi": "Liikkuvat eläinhahmot työpaja",
                "sv": "Arbetsverkstad med rörliga djurfigurer",
                "en": "Workshop with moving animal characters"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": {
                "fi": "Käsityö- ja muotoilukoulu Taito",
                "sv": "Käsityö- ja muotoilukoulu Taito",
                "en": "Käsityö- ja muotoilukoulu Taito"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmyldwgtq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66170",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1169714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T06:13:53.190737Z",
                    "last_modified_time": "2025-07-03T06:13:53.190753Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772416.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-03T06:13:53.071281Z",
            "last_modified_time": "2025-09-26T09:13:27.410362Z",
            "date_published": null,
            "start_time": "2025-10-18T08:00:00Z",
            "end_time": "2025-10-18T11: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,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9817273C1DB6A9EB2771F705D8728858/Annantalon_taidelauantai_Yokukkujat",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9817273C1DB6A9EB2771F705D8728858/Annegardens_konstlordag_Nattugglor",
                "en": "http://www.annantalo.fi/en/events/event/9817273C1DB6A9EB2771F705D8728858/Annantalo_Art_Saturday_Yokukkujat_Night_Owls"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Yökukkujat</b></p><p>Mitä öisessä metsässä lymyää? Tuntuuko sinusta joskus pimeässä siltä, että jokin kurkistaa kannon takaa tai piilottelee puussa? Voisiko se olla eläin tai mielikuvitusolento? Tässä Annantalon taidelauantain (t)yöpajassa tehdään paperista ja kartongista yllättävästi esiin ponnahtava otus. Kukkuu!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaikenkielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat. <br>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Nattugglor</b></p><p>Vad döljer sig i den nattliga skogen? Känns det ibland som att någon kikar fram bakom en stubbe eller gömmer sig i ett träd i mörkret? Kan det vara ett djur eller en fantasifigur? I den här workshoppen under Annegårdens konstlördag får du göra en varelse av papper och kartong som överraskande hoppar fram. Tittut!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. <br>Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Yökukkujat – Night Owls</b></p><p>What is hiding in a forest at night? Do you sometimes feel like someone is peeking behind a tree stump in the dark, or hiding up in a tree? Could it be an animal or some imaginary creature? In this Annantalo Art Saturday workshop, you will get to create a fun pop-up creature from paper and cardstock. Peekaboo!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Yökukkujat",
                "sv": "Annegårdens konstlördag: Nattugglor",
                "en": "Annantalo Art Saturday: Yökukkujat – Night Owls"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67059",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?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:42/?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/kulke:755/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/kolme-bluesmiestae-ja-battle-3989345/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/kolme-bluesmiestae-ja-battle-3989345/",
                        "en": "https://www.lippu.fi/artist/malmitalo/kolme-bluesmiestae-ja-battle-3989345/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,80 €",
                        "sv": "22,80 €",
                        "en": "22,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490910,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-26T08:13:41.388574Z",
                    "last_modified_time": "2025-09-26T08:13:41.388586Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777712.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490910/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-09-26T08:13:41.253078Z",
            "last_modified_time": "2025-09-26T08:13:41.538293Z",
            "date_published": null,
            "start_time": "2025-11-22T17: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,
            "short_description": {
                "fi": "Maailman ehdotonta huippua edustavat yhden miehen bluesyhtyeet kohtaavat toisensa Malmitalolla!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/98F5F242FADFEADB9A03361408920483/Kolme_bluesmiesta_ja_battle",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/98F5F242FADFEADB9A03361408920483/Kolme_bluesmiesta_ja_battle",
                "en": "http://www.malmitalo.fi/en/events/event/98F5F242FADFEADB9A03361408920483/Kolme_bluesmiesta_ja_battle"
            },
            "description": {
                "fi": "<p>Maailman ehdotonta huippua edustavat yhden miehen bluesyhtyeet kohtaavat toisensa Malmitalolla!</p><p>Kolme itsenäistä artistia - kolme erilaista mutta sitäkin vaikuttavampaa lähestymistapaa sinisävelten esittämiseen soolona. Tule kokemaan ainutkertainen \"battle of the one man blues bands\", jossa leikkimielisessä kamppailussa toisistaan mittaa ottavat kalifornialainen Nathan James, Lontoossa huomattavan osan arjestaan nykyisin viettävä Jussi \"Jo' Buddy\" Raulamo sekä helsinkiläinen Jantso Jokelin. <br> <br>International Blues Challenge -kilpailun soolo/duo -sarjan Yhdysvaltain Memphisissä vuonna 2007 yhdessä Ben Hernandezin kanssa voittanut Nathan James tunnetaan virtuoosimaisena kielisoitinten taitajana sekä omaa musiikkiaan 2000-luvun alusta lähtien levyttäneenä lahjakkaana laulaja-lauluntekijänä. Kotikulmillaan Kalifornian Oceansidessa myös Sacred Cat -studiotaan pyörittävän moniosaajan yhteistyökumppaneiksi ovat vuosien saatossa valikoituneet mm. Buddy Guy, James Harman ja Kim Wilson. Suomessa Nathan James on esiintynyt edellisen kerran vuonna 2013. <br> <br>Suomen kansainvälisimpiin sekä samalla karismaattisimpiin juurimusiikin sanansaattajiin lukeutuvalle Jussi Raulamolle on kertynyt aktiivisen bänditoiminnan ohella myös globaalia soolokeikka- ja katusoittokokemusta lähes 40 vuoden jaksolta. Lisäksi artisti on julkaissut vuonna 2023 albumillisen luomu-tuotantoista soolomateriaalia nimikkeen Jo' Buddy's One Man Stomptet takaa. <br> <br>Bluesmuusikon roolinsa lisäksi myös toimittajana ja kirjailijana ansioitunut Jantso Jokelin palkittiin Kroatian Splitissä huhtikuussa 2025 käydyssä European Blues Challengessa kisan parhaat tuomaristoäänet saavuttaneena soolo/duoesiintyjänä. Huuliharppua ja kitaroita pääinstrumentteinaan soittavan valovoimaisen laulaja-lauluntekijän esikoisalbumi \"Spark Of Luck\" on kerännyt kauttaaltaan ylistäviä kriitikkoarvioita aina Yhdysvaltoja myöten.<br>Kesto: 2h 10 min, sis. väliajan 20 min <br>Liput: 22,80 €</p>"
            },
            "name": {
                "fi": "Kolme bluesmiestä ja battle – Nathan James (USA), Jo' Buddy (FIN), Jantso Jokelin (FIN)",
                "sv": "Kolme bluesmiestä ja battle – Nathan James (USA), Jo' Buddy (FIN), Jantso Jokelin (FIN)",
                "en": "Kolme bluesmiestä ja battle – Nathan James (USA), Jo' Buddy (FIN), Jantso Jokelin (FIN)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67059/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66876",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@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:46/?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/kulke:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/breloque-theatre-group/",
                        "sv": "https://www.lippu.fi/artist/breloque-theatre-group/",
                        "en": "https://www.lippu.fi/artist/breloque-theatre-group/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490513,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T14:14:02.914675Z",
                    "last_modified_time": "2025-08-25T14:14:02.914691Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776407.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490513/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-25T14:14:02.784717Z",
            "last_modified_time": "2025-09-26T08:13:33.394915Z",
            "date_published": null,
            "start_time": "2025-10-11T12: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,
            "short_description": {
                "fi": "Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.",
                "sv": "En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.",
                "en": "A colorful performance full of music, painting and theatre art for everyone over 3 years old."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B2B360C730704ED2198A29BF2352A12B/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B2B360C730704ED2198A29BF2352A12B/Bright_spots_Eye_catchers_Fargglada_aventyr_i_tiden",
                "en": "http://www.annantalo.fi/en/events/event/B2B360C730704ED2198A29BF2352A12B/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa"
            },
            "description": {
                "fi": "<p>Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.</p><p>Taidemaalari Daniela Kasperer, näyttelijä Andreas Simma ja muusikko Yorgos Pervolarakis tulkitsevat tarinan ihmiselämästä käänteisessä järjestyksessä: esitys alkaa vanhuudesta ja sen aikajana kelautuu hitaasti takaisin taaperoikään ja vauva-aikaan. Kuvat, äänet, leikki ja ihmissuhteet muodostavat narratiivin siitä, mitä on tapahtunut ja mitä on kuviteltu. Esitys tarjoaa inhimillisyyttä ja ihmisyyttä paljaimmillaan, niin hauskuutta ja väriä kuin syvällistä ja kepeääkin, ja tähtää nautinnon ja ilon tuottamiseen.</p><p>Päällekkäiset tekstin ja kuvan tasot muuttuvat taas näkyviksi kun niiden pintaa raaputtaa. BRIGHT SPOTS & EYE CATCHERS avaa uusia näkökulmia elämään, jossa olisi voinut käydä aivan toisinkin. Se on täynnä toisiinsa liittyviä kuvia ja muuttuvia musiikin ja oikukkaan leikin tasoja, jotka on suunnattu niin vanhoille kuin nuorillekin. <br> <br>Ja vielä yksi kysymys: Oletko koskaan yrittänyt maalata elämää?</p><p><b>Luova ryhmä</b><br>Tuotannon kehitys: luova ryhmä<br>Ohjaaja, outside eye: Myrto Dimitriadou<br>Lavastus, outside eye: Ragna Heiny<br>Musiikki (sävellys ja tulkinta): Yorgos Pervolarakis <br>Esiintyjä: Andreas Simma <br>Maalaus: Daniela Kasperer</p><p>Sanaton<br>Kesto 35 min<br>Ikäsuositus 3–90-vuotiaille</p><p><b>Huomaa myös:</b><br>Annantalon syyslomakurssi 13.-15.10.2025 <br>Voin matkustaa ajassa – I can travel in time<br>Breloque-ryhmän taiteilijat järjestävät alakoululaisille kolmen kurssin kokonaisuuden: fyysistä ilmaisua, äänimaisemaa ja maalausta, joka kootaan pieneksi yhteisesitykseksi kurssin päätteeksi. <br><u><a href=\"https://www.annantalo.fi/fi/taidekurssit/course/3B6A7F7977A049C0D9EBB4CF5A499737/Voin_matkustaa_ajassa_-_esittamisen_ja_klovnerian_syyslomatyopaja\">Lue lisää ja ilmoittaudu</a></u></p>",
                "sv": "<p>En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.</p><p>Konstnären Daniela Kasperer, skådespelaren Andreas Simma och musikern Yorgos Pervolarakis tolkar historien om ett människoliv berättat i omvänd ordning: med början i ålderdomen och långsamt rullande tillbaka till småbarn och baby. Bilder och ljud, lek och relationer blir till en berättelse om vad som har hänt och vad som har fantiserats. Föreställningen bjuder på det mänskliga och det alltför mänskliga, det roliga och det färgstarka, det djupsinniga och det tokiga, och har inget mindre syfte än att skapa glädje och nöje.</p><p>Lager av text och bild som har lagts omlott görs synliga igen genom skrapning. BRIGHT SPOTS & EYE-CATCHERS öppnar upp nya perspektiv på ett liv som kunde ha blivit helt annorlunda. Föreställningen är full av associerade bilder, skiftande musiklager och nyckfull lek, riktad till både unga och gamla. <br> <br>Och en sak till: Har du någonsin försökt måla ett liv?</p><p><b>Det konstnärliga teamet</b><br>Produktionsutveckling: det konstnärliga teamet<br>Regissör, det externa ögat: Myrto Dimitriadou<br>Scenografi, det externa ögat: Ragna Heiny<br>Musik (komposition och tolkning): Yorgos Pervolarakis <br>Skådespelare: Andreas Simma <br>Konstnär: Daniela Kasperer</p><p>Språk: Mållös<br>Längd: 35 min<br>Åldersrekommendation: 3–90 år</p>",
                "en": "<p>A colorful performance full of music, painting and theatre art for everyone over 3 years old.</p><p>The painter Daniela Kasperer, the actor Andreas Simma and the musician Yorgos Pervolarakis interpret the story of a human life, told in reverse order: starting at old age and slowly scrolling back to toddler and baby. Images and sounds, play and relationships become a narrative of what has happened and what has been imagined. The performance offers the human and the all-too-human, the funny and the colorfully, the profound and the silly, and has no less the intention than to create joy and pleasure.</p><p>Layers of text and image that have been superimposed are made visible again by scraping. “BRIGHT SPOTS & EYE-CATCHERS” opens up new perspectives on a life that could have turned out quite differently. It is full of associated images, changing layers of music and wayward play, aimed at young and old. <br> <br>And one more thing: Have you ever tried to paint a life?</p><p><b>The artistic team</b><br>Production development: the artistic team<br>Director, outside eye: Myrto Dimitriadou<br>Set design, outside eye: Ragna Heiny<br>Music (composition & interpretation): Yorgos Pervolarakis <br>Acting: Andreas Simma <br>Painting: Daniela Kasperer</p><p>Language: Speechless performance<br>Duration: 35 min<br>Age recommendation: 3–90 years old</p><p><b>Also note:</b><br>Annantalo autumn holiday course 13.-15.10.2025<br>I can travel in time<br>The artists of the Breloque group will organize a three-course course for elementary school students: physical expression, soundscape and painting, which will be put together into a small joint performance at the end of the course.<br><u><a href=\"https://www.annantalo.fi/en/art-courses/course/3B6A7F7977A049C0D9EBB4CF5A499737/I_can_travel_in_time_-_performance_and_clownery_workshop\">Read more and register for the course</a></u></p>"
            },
            "name": {
                "fi": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group",
                "sv": "Bright spots & Eye catchers – Färgglada äventyr i tiden – Breloque Theatre Group",
                "en": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66876/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?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/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1178694,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T09:13:57.420870Z",
                    "last_modified_time": "2025-07-04T09:13:57.420886Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772438.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178694/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-04T09:13:57.314936Z",
            "last_modified_time": "2025-09-26T08:13:33.031460Z",
            "date_published": null,
            "start_time": "2025-10-11T10:00:00Z",
            "end_time": "2025-10-11T12:30: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,
            "short_description": {
                "fi": "Nyt poimitaan parhaat päältä! Annantalon työpajapäivässä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D56BBBC212B789696FA06FBA81E987A2/Rusinat_pullasta_-_Alyvapaiden_taidepajojen_riemua_jo_10_vuotta_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D56BBBC212B789696FA06FBA81E987A2/Russinen_ur_bullen_De_intelligensbefriade_Konstworkshopparna_fyller_10_ar_",
                "en": "http://www.annantalo.fi/en/events/event/D56BBBC212B789696FA06FBA81E987A2/Picking_the_best_bits_Alyvapaat_Joy_of_art_workshops_for_a_decade_"
            },
            "description": {
                "fi": "<p>Nyt poimitaan parhaat päältä! Annantalon työpajapäivässä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö jo kymmenettä kertaa – luvassa siis taidepajojen riemua täyden kympin verran!</p><p>Pajoissa pääset tekemään unelmista asumuksia, osallistumaan Annantalon ajoihin ja kenties käymään myös kuussa! Juhlan kunniaksi tehdään myös omia juhlatamineita, joita voi esitellä muotinäytöksessä!<br> <br>Kaikkiin työpajoihin on vapaa pääsy, ei ennakkoilmoittautumista.<br>Ikäsuositus: kaikenikäisille, lapset alle 8 v. aikuisen kanssa.<br>Työskentelykieli: suomi</p><p>Huom! Pajoihin viimeiset osallistujat otetaan sisään klo 15.00</p><p>_</p><p>Työpajapäivän ohjelma:</p><p><b>Annantalon Suurajot</b> klo 13–15.30 | 2.krs käytävä</p><p>Tule kokemaan kilpa-ajon ja vauhdin hurmaa! Ota mukaasi varikolle parhaat pikkuautosi tai lainaa Annantalon tallista.<br>Selvitätkö haastavan radan mutkaiset kurvit, nousu ja laskut? Lopuksi ajetaan huippunopeiden turboautojen mestaruusluokka ja kilpailujen paras palkitaan ruutulipulla!<br>Kisaa ohjaavat Pirelli-Pirjo ja Imola-Ilkka</p><p><b>Q – Matka kuuhun</b> klo 13–15.30 | Pohjoisgalleria (2. krs)</p><p>Rakennetaan kaupunki kuun uusille asukkaille! Q:ssa on palikoita, joista pääset rakentamaan omaa siirtokuntaa.<br>Nokia vei kännykkäverkon kuuhun. Mutta kuka verkkoja käyttää. Missä he asuvat? Mitä rakennuksia siellä tarvitaan ja miltä ne näyttävät?</p><p><b>Unelmien huone</b> klo 13–15.30 | Kuva 2 luokka</p><p>Tule mukaan rakentamaan Unelmiesi huone!<br>Onko mielessäsi tila, jossa on liukumäkiä, pehmeä pilvilattia tai salainen ovi vaikkapa karkkikaappiin? Rakennamme pajassa pahvista pienoishuoneen - vain mielikuvitus on rajana!</p><p><b>Muotihuone</b> klo 13–15.30 | Kuva 1 luokka</p><p>Muotihuoneessa suunnitellaan ja valmistetaan juhlavaatteita Älyvapaiden 10-vuotisjuhlaan: toppeja, patellavöitä, kellohameita, boleroita, perhosmekkoja – kaiken kirjavia muotiluomuksia!  Materiaalina käytämme papereita, liimaa, teippejä ja värejä. Lopuksi tuotteet esitellään muotinäytöksessä.</p><p>Yhteinen muotinäytös klo 15.45<br>Ikäsuositus: 4+</p><p><b>Kuka taskussa luuraa?</b> klo 13–15.30 | Kuva 3 luokka<br>Pikkuolentojen muotoilupaja<br>Käännä, väännä, leikkaa, liimaa! Pikkuruisten olentojen pajassa tehdään helpolla tekniikalla pehmeistä ja taipuvista materiaaleista taskuun mahtuvia pörheitä peikkoja, hurjia mörköjä tai keijuja ja muita siivekkäitä.</p><p>Ikäsuositus: 4+</p><p><b>Muotinäytös</b> klo 15.45 | ala-aula<br>Yhteinen näytös esittelee pajoissa syntyneitä muotiluomuksia.</p><p><b>Poppareita</b> klo 16.15 | etupiha<br>Tapahtuma päätteeksi tuoretta popcornia tarjolla etupihalla!</p><p>_</p><p>Tapahtuma on osa Annantalon taidelauantai-tapahtumia. Niissä koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p>"
            },
            "name": {
                "fi": "Rusinat pullasta - Älyvapaiden taidepajojen riemua jo 10 vuotta! – Koko perheen taidepäivä",
                "sv": "Russinen ur bullen – De intelligensbefriade: Konstworkshopparna fyller 10 år! – Verkstadsdag för hela familjen",
                "en": "Picking the best bits – Älyvapaat: Joy of art workshops for a decade! – Workshop day for the whole family"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66875",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@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:46/?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/kulke:752/?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:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/breloque-theatre-group/",
                        "sv": "https://www.lippu.fi/artist/breloque-theatre-group/",
                        "en": "https://www.lippu.fi/artist/breloque-theatre-group/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490512,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-25T14:14:02.317682Z",
                    "last_modified_time": "2025-08-25T14:14:02.317698Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776406.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490512/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-08-25T14:14:02.175617Z",
            "last_modified_time": "2025-09-26T08:13:32.713669Z",
            "date_published": null,
            "start_time": "2025-10-11T09: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,
            "short_description": {
                "fi": "Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.",
                "sv": "En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.",
                "en": "A colorful performance full of music, painting and theatre art for everyone over 3 years old."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BB7AE854F36193440AF0A8A82F127A48/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/BB7AE854F36193440AF0A8A82F127A48/Bright_spots_Eye_catchers_Fargglada_aventyr_i_tiden",
                "en": "http://www.annantalo.fi/en/events/event/BB7AE854F36193440AF0A8A82F127A48/Bright_spots_Eye_catchers_Varikkaita_seikkailuja_ajassa"
            },
            "description": {
                "fi": "<p>Värikäs musiikkia, kuvataidetta ja teatteria yhdistelevä esitys kaikille yli kolmevuotiaille.</p><p>Taidemaalari Daniela Kasperer, näyttelijä Andreas Simma ja muusikko Yorgos Pervolarakis tulkitsevat tarinan ihmiselämästä käänteisessä järjestyksessä: esitys alkaa vanhuudesta ja sen aikajana kelautuu hitaasti takaisin taaperoikään ja vauva-aikaan. Kuvat, äänet, leikki ja ihmissuhteet muodostavat narratiivin siitä, mitä on tapahtunut ja mitä on kuviteltu. Esitys tarjoaa inhimillisyyttä ja ihmisyyttä paljaimmillaan, niin hauskuutta ja väriä kuin syvällistä ja kepeääkin, ja tähtää nautinnon ja ilon tuottamiseen.</p><p>Päällekkäiset tekstin ja kuvan tasot muuttuvat taas näkyviksi kun niiden pintaa raaputtaa. BRIGHT SPOTS & EYE CATCHERS avaa uusia näkökulmia elämään, jossa olisi voinut käydä aivan toisinkin. Se on täynnä toisiinsa liittyviä kuvia ja muuttuvia musiikin ja oikukkaan leikin tasoja, jotka on suunnattu niin vanhoille kuin nuorillekin. <br> <br>Ja vielä yksi kysymys: Oletko koskaan yrittänyt maalata elämää?</p><p><b>Luova ryhmä</b><br>Tuotannon kehitys: luova ryhmä<br>Ohjaaja, outside eye: Myrto Dimitriadou<br>Lavastus, outside eye: Ragna Heiny<br>Musiikki (sävellys ja tulkinta): Yorgos Pervolarakis <br>Esiintyjä: Andreas Simma <br>Maalaus: Daniela Kasperer</p><p>Sanaton<br>Kesto 35 min<br>Ikäsuositus 3–90-vuotiaille</p><p><b>Huomaa myös:</b><br>Annantalon syyslomakurssi 13.-15.10.2025 <br>Voin matkustaa ajassa – I can travel in time<br>Breloque-ryhmän taiteilijat järjestävät alakoululaisille kolmen kurssin kokonaisuuden: fyysistä ilmaisua, äänimaisemaa ja maalausta, joka kootaan pieneksi yhteisesitykseksi kurssin päätteeksi. <br><u><a href=\"https://www.annantalo.fi/fi/taidekurssit/course/3B6A7F7977A049C0D9EBB4CF5A499737/Voin_matkustaa_ajassa_-_esittamisen_ja_klovnerian_syyslomatyopaja\">Lue lisää ja ilmoittaudu</a></u></p>",
                "sv": "<p>En färgsprakande föreställning full av musik, måleri och teaterkonst för alla över 3 år.</p><p>Konstnären Daniela Kasperer, skådespelaren Andreas Simma och musikern Yorgos Pervolarakis tolkar historien om ett människoliv berättat i omvänd ordning: med början i ålderdomen och långsamt rullande tillbaka till småbarn och baby. Bilder och ljud, lek och relationer blir till en berättelse om vad som har hänt och vad som har fantiserats. Föreställningen bjuder på det mänskliga och det alltför mänskliga, det roliga och det färgstarka, det djupsinniga och det tokiga, och har inget mindre syfte än att skapa glädje och nöje.</p><p>Lager av text och bild som har lagts omlott görs synliga igen genom skrapning. BRIGHT SPOTS & EYE-CATCHERS öppnar upp nya perspektiv på ett liv som kunde ha blivit helt annorlunda. Föreställningen är full av associerade bilder, skiftande musiklager och nyckfull lek, riktad till både unga och gamla. <br> <br>Och en sak till: Har du någonsin försökt måla ett liv?</p><p><b>Det konstnärliga teamet</b><br>Produktionsutveckling: det konstnärliga teamet<br>Regissör, det externa ögat: Myrto Dimitriadou<br>Scenografi, det externa ögat: Ragna Heiny<br>Musik (komposition och tolkning): Yorgos Pervolarakis <br>Skådespelare: Andreas Simma <br>Konstnär: Daniela Kasperer</p><p>Språk: Mållös<br>Längd: 35 min<br>Åldersrekommendation: 3–90 år</p>",
                "en": "<p>A colorful performance full of music, painting and theatre art for everyone over 3 years old.</p><p>The painter Daniela Kasperer, the actor Andreas Simma and the musician Yorgos Pervolarakis interpret the story of a human life, told in reverse order: starting at old age and slowly scrolling back to toddler and baby. Images and sounds, play and relationships become a narrative of what has happened and what has been imagined. The performance offers the human and the all-too-human, the funny and the colorfully, the profound and the silly, and has no less the intention than to create joy and pleasure.</p><p>Layers of text and image that have been superimposed are made visible again by scraping. “BRIGHT SPOTS & EYE-CATCHERS” opens up new perspectives on a life that could have turned out quite differently. It is full of associated images, changing layers of music and wayward play, aimed at young and old. <br> <br>And one more thing: Have you ever tried to paint a life?</p><p><b>The artistic team</b><br>Production development: the artistic team<br>Director, outside eye: Myrto Dimitriadou<br>Set design, outside eye: Ragna Heiny<br>Music (composition & interpretation): Yorgos Pervolarakis <br>Acting: Andreas Simma <br>Painting: Daniela Kasperer</p><p>Language: Speechless performance<br>Duration: 35 min<br>Age recommendation: 3–90 years old</p><p><b>Also note:</b><br>Annantalo autumn holiday course 13.-15.10.2025<br>I can travel in time<br>The artists of the Breloque group will organize a three-course course for elementary school students: physical expression, soundscape and painting, which will be put together into a small joint performance at the end of the course.<br><u><a href=\"https://www.annantalo.fi/en/art-courses/course/3B6A7F7977A049C0D9EBB4CF5A499737/I_can_travel_in_time_-_performance_and_clownery_workshop\">Read more and register for the course</a></u></p>"
            },
            "name": {
                "fi": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group",
                "sv": "Bright spots & Eye catchers – Färgglada äventyr i tiden – Breloque Theatre Group",
                "en": "Bright spots & Eye catchers – Värikkäitä seikkailuja ajassa – Breloque Theatre Group"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66875/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}