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&hide_recurring_children=true&page=25
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 21734,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=26",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=24"
    },
    "data": [
        {
            "id": "kulke:68120",
            "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: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: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:616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27260/?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:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5759/?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": 1494889,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-17T16:13:21.052978Z",
                    "last_modified_time": "2026-02-17T16:13:21.053008Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785666.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494889/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-17T16:13:20.892777Z",
            "last_modified_time": "2026-03-20T01:13:28.661847Z",
            "date_published": null,
            "start_time": "2026-03-07T19:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa viettämään Savoy JAZZFestin päätösjuhlaa lauantaina 7.3. klo 21:30 alkaen Savoy-teatterin yhteydessä sijaitsevaan Minne Garden & Lounge -ravintolaan",
                "sv": "Välkommen till Minne Garden & Lounge för att fira avslutningskvällen av Savoy JAZZFest på lördagen den 7 mars med start kl. 21.30.",
                "en": "Welcome to Minne Garden & Lounge to celebrate the closing night of Savoy JAZZFest on Saturday, March 7th, starting at 9:30 PM."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DA1C786200E68A2B8CF663AFC97B4F7E/Jatkoklubi_Duo_Virtanen_Huhtala_jamit",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DA1C786200E68A2B8CF663AFC97B4F7E/Afterklubb_Duo_Virtanen_Huhtala_jam",
                "en": "http://www.savoyteatteri.fi/en/events/event/DA1C786200E68A2B8CF663AFC97B4F7E/After_club_Duo_Virtanen_Huhtala_jam_session"
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään Savoy JAZZFestin päätösjuhlaa lauantaina 7.3. klo 21:30 alkaen Savoy-teatterin yhteydessä sijaitsevaan Minne Garden & Lounge -ravintolaan</p><p>Jatkoklubin tunnelma on vertaansa vailla, kun vibrafonisti Olli Virtasen ja kontrabasisti Otso Huhtalan muodostama duo Virtanen/Huhtala esittää raikkaalla otteellaan kappaleita Suuresta amerikkalaisesta laulukirjasta sekä jazzklassikoita mm. Horace Silveriltä, Lee Morganilta ja Grant Greeniltä. Setin päätteeksi lava on myös vapaa kaikille halukkaille jammailijoille. Tule siis mukaan nauttimaan jazzin svengistä ja koko illan juhlijoita palvelevan ravintola Minnen herkullisesta tarjonnasta.</p><p>Olli Virtanen on Sibelius-Akatemian jazzmusiikin aineryhmässä maisteriopintojaan viimeistelevä vibrafonisti. Hän johtaa seitsenhenkistä Olli Virtanen Groupia, jonka debyyttialbumi julkaistiin lokakuussa 2023, sekä huippumuusikoista koostuvaa Virtanen/Niittynen Quartettia yhdessä pianisti Markus Niittysen kanssa. Lisäksi Virtanen on esiintynyt useiden muiden merkittävien jazzartistien kanssa.</p><p>Otso Huhtala on niin ikään Sibelius-Akatemian jazzmusiikin aineryhmässä opiskeleva kontrabasisti. Hän on esiintynyt aktiivisesti mm. UMO Helsinki Jazz Orchestran, Joonatan Henriksson Quintetin ja Mikael Jakobsson Sextetin kanssa, sekä rivimuusikkona useiden kotimaisten ja kansainvälisten tähtien rinnalla.</p><p>Savoy JAZZFestin jatkoklubille on vapaa pääsy!</p><p>Käynti tapahtumaan Savoy-teatterin kautta.</p>",
                "sv": "<p>Välkommen till Minne Garden & Lounge för att fira avslutningskvällen av Savoy JAZZFest på lördagen den 7 mars med start kl. 21.30.</p><p>Stämningen på efterklubben blir minst sagt unik när duon Virtanen/Huhtala – vibrafonisten Olli Virtanen och kontrabasisten Otso Huhtala – framför fräscha tolkningar av låtar ur The Great American Songbook samt jazzklassiker av bland andra Horace Silver, Lee Morgan och Grant Green. Efter setet är scenen dessutom öppen för alla som vill komma och jamma. Kom och njut av svängig jazz och restaurang Minne som serverar godsaker åt kvällens festdeltagare hela kvällen.</p><p>Olli Virtanen är en vibrafonist som slutför sina magisterstudier vid Sibelius-Akademins jazzinstitution. Han leder den sju man starka Olli Virtanen Group, vars debutalbum släpptes i oktober 2023, samt Virtanen/Niittynen Quartet, som han driver tillsammans med pianisten Markus Niittynen och ett gäng toppmusiker. Virtanen har dessutom uppträtt med flera andra betydande jazzartister.</p><p>Otso Huhtala studerar även han vid Sibelius-Akademins jazzinstitution. Han har uppträtt flitigt med bland andra UMO Helsinki Jazz Orchestra, Joonatan Henriksson Quintet och Mikael Jakobsson Sextet, samt verkat som sektionsmusiker bredvid en rad finländska och internationella stjärnor.</p><p>Fritt inträde till Savoy JAZZFests efterklubb!</p><p>Ingång till evenemanget sker via Savoyteatern.</p>",
                "en": "<p>Welcome to Minne Garden & Lounge to celebrate the closing night of Savoy JAZZFest on Saturday, March 7th, starting at 9:30 PM.</p><p>The after‑club atmosphere will be truly unmatched as the duo Virtanen/Huhtala — vibraphonist Olli Virtanen and double bassist Otso Huhtala — performs fresh interpretations of songs from the Great American Songbook as well as jazz classics by the likes of Horace Silver, Lee Morgan, and Grant Green. To top off the set, the stage will also be open for all willing jammers. Join us to enjoy the vibrant swing of jazz and the delicious offerings of Restaurant Minne, serving guests throughout the night.</p><p>Olli Virtanen is a vibraphonist completing his master’s studies in the Jazz Department at the Sibelius Academy. He leads the seven‑piece Olli Virtanen Group, whose debut album was released in October 2023, as well as the Virtanen/Niittynen Quartet, formed together with pianist Markus Niittynen and featuring top‑tier musicians. Virtanen has also performed with several other notable jazz artists.</p><p>Otso Huhtala is likewise a double bassist studying in the Jazz Department of the Sibelius Academy. He has performed actively with groups such as UMO Helsinki Jazz Orchestra, Joonatan Henriksson Quintet, and Mikael Jakobsson Sextet, and has worked as a section musician alongside numerous Finnish and international stars.</p><p>Admission to the Savoy JAZZFest after‑club is free!</p><p>Entrance to the event is through the Savoy Theatre.</p>"
            },
            "name": {
                "fi": "Jatkoklubi: Duo Virtanen/Huhtala + jamit – Savoy JAZZFest",
                "sv": "Afterklubb: Duo Virtanen/Huhtala + jam – Savoy JAZZFest",
                "en": "After‑club: Duo Virtanen/Huhtala + jam session – Savoy JAZZFest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Ravintola Minne",
                "sv": "Restaurang Minne",
                "en": "Restaurant Minne"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68120/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67229",
            "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-3853393",
                        "sv": "https://www.lippu.fi/eventseries/name-3853393",
                        "en": "https://www.lippu.fi/eventseries/name-3853393"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-67 €",
                        "sv": "17-67 €",
                        "en": "17-67 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491318,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-06T14:13:30.783020Z",
                    "last_modified_time": "2025-11-06T14:13:30.783037Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780031.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491318/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-06T14:13:30.634378Z",
            "last_modified_time": "2026-03-20T01:13:28.465305Z",
            "date_published": null,
            "start_time": "2026-03-07T18: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 merkittävimpiin jazzmuusikkoihin kuuluva Joe Lovano kohtaa suomalaiset jazznimet ainutlaatuisessa konsertissa",
                "sv": "Joe Lovano, en av världens största jazzmusiker, möter finska jazznamn i en unik konsert",
                "en": "Joe Lovano, one of the world’s greatest jazz musicians, will meet Finnish jazz masters in a unique concert"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/47CB16D0806A19AC12E794183831F3A1/Joe_Lovano_Leo_Genovese_Antti_Lotjonen_Joonas_Riippa_USA_Argentiina_Suomi_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/47CB16D0806A19AC12E794183831F3A1/Joe_Lovano_Leo_Genovese_Antti_Lotjonen_Joonas_Riippa_USA_Argentina_Finland_",
                "en": "http://www.savoyteatteri.fi/en/events/event/47CB16D0806A19AC12E794183831F3A1/Joe_Lovano_Leo_Genovese_Antti_Lotjonen_Joonas_Riippa_USA_Argentina_Finland_"
            },
            "description": {
                "fi": "<p>Maailman merkittävimpiin jazzmuusikkoihin kuuluva Joe Lovano kohtaa suomalaiset jazznimet ainutlaatuisessa konsertissa</p><p>Grammy-voittaja, legendaarinen amerikkalaissaksofonisti <b>Joe Lovano</b> esiintyy Savoy JAZZFestissä ainutlaatuisessa kansainvälisessä kokoonpanossa, jossa hänen rinnallaan soittavat argentiinalainen tähtipianisti <b>Leo Genovese</b> sekä suomalaiset huippumuusikot <b>Antti Lötjönen</b> (kontrabasso) ja <b>Joonas Riippa</b> (rummut). Nelikko yhdistää vaikuttavasti jazzin eri mantereiden sävyt ja rytmit – New Yorkin improvisaatioperinteen, Etelä-Amerikan melodisen vapauden ja pohjoismaisen herkkyyden.</p><p><i>“One of the jazz world’s most celebrated musicians”</i> <b>NPR</b><br><i>“The titan among us”</i> <b>DownBeat</b><br><i>“Jazz royalty”</i> <b>The Boston Globe</b></p><p>Joe Lovano on yksi aikamme arvostetuimmista jazzsaksofonisteista ja säveltäjistä. Hän on julkaissut kymmeniä albumeja muun muassa Blue Note Recordsilla, esiintynyt <b>Paul Motianin, Herbie Hancockin</b> ja <b>Bill Frisellin</b> rinnalla sekä johtanut useita omia yhtyeitään. Lovanon soitossa yhdistyvät syvä jazzin traditio, rajaton luovuus ja henkinen ilmaisuvoima, mikä on tehnyt hänestä esikuvan monen sukupolven muusikoille.</p><p>Leo Genovese tunnetaan muun muassa <b>Esperanza Spaldingin</b> yhtyeen pitkäaikaisena pianistina sekä rock-yhtye Mars Voltasta. Genovese on palkittu Grammylla vuonna 2023 sarjassa <i>Best Improvised Jazz Solo</i>. Yrjö-palkinnon voittanut Antti Lötjönen puolestaan on kotimaan lisäksi kiertänyt Eurooppaa muun muassa <b>Jeff “Tain” Watts</b> Trion jäsenenä ja esiintynyt mm. Blue Note -klubeilla New Yorkissa, Tokiossa ja Milanossa. Arvostettu rumpali Joonas Riippa on soittanut muun muassa yhtyeissä Plop, Verneri Pohjola Quintet ja <b>Mikko Innasen</b> Innkvisitio ja esiintynyt laajasti kotimaassa sekä kansainvälisesti.</p><p>Yhtye saapuu Helsinkiin Turusta, jossa se esiintyy perjantaina 6.3. Turku Jazz Festivalilla. Kokoonpanon kohtaaminen rakentuu neljän vahvan persoonan dynamiikalle, jossa improvisaatio ja yhteinen kuuntelu muodostavat konsertista ainutlaatuisen musiikillisen matkan. Konsertti sopii täydellisesti Jazz Suomi 100 -juhlavuoden teemaan: se on kunnianosoitus jazzin elinvoimalle ja kansainväliselle vuoropuhelulle sekä jazzin historialle että sen jatkuvalle uudistumiselle.</p><p>Konsertin kesto n. 1,5 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>***</p><p><b>Osta lauantaille edullinen päivälippu</b></p><p>Myynnissä on rajattu erä päivälippuja 80 euron hintaan Savoy JAZZFestin lauantaille 7.3.2026.</p><p>Päivälippu sisältää <b>Joe Lovano – Leo Genovese – Antti Lötjönen – Joonas Riippa</b> -kokoonpanon konsertin lisäksi  <b>Shake Stew</b> -yhtyeen konsertin klo 17.30. Konsertit järjestetään Savoy-teatterissa.</p><p>Kuuntele Joe Lovanon soittoa Youtubesta:</p>",
                "sv": "<p>Joe Lovano, en av världens största jazzmusiker, möter finska jazznamn i en unik konsert</p><p>Den Grammy-belönade, legendariske amerikanska saxofonisten Joe Lovano uppträder på Savoy JAZZFest i en unik internationell ensemble, med den argentinske stjärnpianisten Leo Genovese och de finska toppmusikerna Antti Lötjönen (kontrabas) och Joonas Riippa (trummor). Kvartetten kombinerar på ett imponerande sätt toner och rytmer från jazz från olika världsdelar – New Yorks improvisationstradition, Sydamerikas melodiska frihet och den nordiska känsligheten.</p><p>”One of the jazz world’s most celebrated musicians” NPR<br>”The titan among us” DownBeat<br>”Jazz royalty” The Boston Globe</p><p>Joe Lovano är en av vår tids mest respekterade jazzsaxofonister och kompositörer. Han har släppt dussintals album bland annat på Blue Note Records, uppträtt tillsammans med Paul Motian, Herbie Hancock och Bill Frisell samt lett flera egna band. Lovanos musik kombinerar en djup jazztradition, gränslös kreativitet och intellektuell uttrycksfullhet som har gjort honom till en förebild för generationer av musiker.</p><p>Leo Genovese är känd bland annat som mångårig pianist i Esperanza Spaldings band och från rockbandet Mars Volta. Genovese belänades med en Grammy år 2023 i serien Best Improvised Jazz Solo. Antti Lötjönen, som vunnit Yrjö-priset, har förutom i hemlandet turnerat i Europa som medlem i Jeff ”Train” Watts Trio och uppträtt bland annat på Blue Note-klubbarna i New York, Tokyo och Milano. Den hyllade trummisen Joonas Riippa har spelat i band som Plop, Verneri Pohjola Quintet och Mikko Innasen Innkvisitio och har gjort många framträdanden i Finland och internationellt.</p><p>Bandet kommer till Helsingfors från Åbo, där det uppträder fredagen den 6 mars på Turku Jazz Festival. Ensemblens möte bygger på dynamiken mellan fyra starka personligheter, där improvisation och gemensamt lyssnande gör konserten till en unik musikalisk resa. Konserten passar perfekt in i temat för jubileumsåret Jazz Finland 100: den är en hyllning till jazzens livskraft och internationella dialog, till dess historia och till dess ständiga förnyelse.</p><p>Konserten varar ca 1,5 timmar, ingen paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>***</p><p>Köp en förmånlig dagsbiljett till lördagen</p><p>Ett begränsat antal dagsbiljetter till JAZZFest lördagen den 7 mars 2026 finns till salu för 80 euro.</p><p>Dagsbiljetten gäller för konserten med gruppen Joe Lovano – Leo Genovese – Antti Lötjönen – Joonas Riippa och konserten med Shake Stew kl. 17.30. Konserterna hålls på Savoy-teatern.</p><p>Lyssna på Joe Lovano på Youtube:</p>",
                "en": "<p>Joe Lovano, one of the world’s greatest jazz musicians, will meet Finnish jazz masters in a unique concert</p><p>Grammy-winning, legendary American saxophonist Joe Lovano will perform at Savoy JAZZFest with a unique international line-up, featuring Argentinian star pianist Leo Genovese and top Finnish musicians Antti Lötjönen (double bass) and Joonas Riippa (drums). The quartet impressively combines the tones and rhythms of jazz from different continents: the improvisation tradition of New York, melodic freedom from South America and Nordic sensibility.</p><p>“One of the jazz world’s most celebrated musicians” – NPR<br>“The titan among us” – DownBeat<br>“Jazz royalty” – The Boston Globe</p><p>Joe Lovano is one of the most respected jazz saxophonists and composers of our time. He has released dozens of albums on labels such as Blue Note Records, performed alongside Paul Motian, Herbie Hancock and Bill Frisell, and led several bands of his own. Lovano’s playing combines a deep jazz tradition, boundless creativity and emotional expressiveness that have made him a role model for generations of musicians.</p><p>Leo Genovese is known as the long-time pianist of Esperanza Spalding’s band and from the rock band Mars Volta, among others. In 2023, he won a Grammy for Best Improvised Jazz Solo. Antti Lötjönen, who has won the Yrjö Award, has toured Europe as a member of the Jeff “Tain” Watts Trio and performed at venues such as Blue Note clubs in New York, Tokyo and Milan. Acclaimed drummer Joonas Riippa has played in bands such as Plop, Verneri Pohjola Quintet and Mikko Innanen & Innkvisitio, and he has performed extensively in Finland and around the world.</p><p>The band will come to Helsinki from Turku, where they will perform on Friday 6 March at the Turku Jazz Festival. The collaboration of the ensemble is built on the dynamics of four strong personalities, where improvisation and listening together make the concert a unique musical journey. The concert fits perfectly with the theme of the Jazz Finland 100 centenary year: it is a tribute to jazz’s vitality and international dialogue, to its history and to its ongoing renewal.</p><p>Concert duration: roughly 1.5 hours, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>***</p><p>Buy an affordable day ticket for Saturday</p><p>A limited number of day tickets will be on sale for €80 for Savoy JAZZFest on Saturday 7 March 2026.</p><p>The day ticket covers a concert by the line-up of Joe Lovano, Leo Genovese, Antti Lötjönen and Joonas Riippa, as well as a concert by Shake Stew at 17.30. The concerts will be held at the Savoy Theatre.</p><p>Check out Joe Lovano’s playing on YouTube:</p>"
            },
            "name": {
                "fi": "Joe Lovano – Leo Genovese – Antti Lötjönen – Joonas Riippa (USA/Argentiina/Suomi) – Savoy JAZZFest",
                "sv": "Joe Lovano – Leo Genovese – Antti Lötjönen – Joonas Riippa (USA/Argentina/Finland) – Savoy JAZZFest",
                "en": "Joe Lovano – Leo Genovese – Antti Lötjönen – Joonas Riippa (USA/Argentina/Finland) – Savoy JAZZFest"
            },
            "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:67229/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67903",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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/helsingin-kulttuurikeskus-vuotalo-sanskriti-suomi-presents-sakhii-sakhiam-vuotalo-21101882/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-sanskriti-suomi-presents-sakhii-sakhiam-vuotalo-21101882/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-sanskriti-suomi-presents-sakhii-sakhiam-vuotalo-21101882/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 12 €",
                        "sv": "15 € / 12 €",
                        "en": "15 € / 12 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494324,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-29T11:13:31.696080Z",
                    "last_modified_time": "2025-12-29T11:13:31.696097Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780425.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494324/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-29T11:13:31.544734Z",
            "last_modified_time": "2026-03-20T01:13:28.345967Z",
            "date_published": null,
            "start_time": "2026-03-07T16: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": "Intialainen klassinen tanssi ja musiikki yhdistyvät konsertissa, joka nostaa esiin ystävyyden ja sisaruuden voiman.",
                "sv": "Indisk klassisk dans och musik förenas i en konsert som lyfter fram vänskapens och systerskapets kraft.",
                "en": "Indian classical dance and music come together in a concert that highlights the power of friendship and sisterhood."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/82BD329804B19031CA1B473FF54AE210/Sanskriti_Suomi_presents_Sakhii_Sakhiam",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/82BD329804B19031CA1B473FF54AE210/Sanskriti_Suomi_presents_Sakhii_Sakhiam",
                "en": "http://www.vuotalo.fi/en/events/event/82BD329804B19031CA1B473FF54AE210/Sanskriti_Suomi_presents_Sakhii_Sakhiam"
            },
            "description": {
                "fi": "<p>Intialainen klassinen tanssi ja musiikki yhdistyvät konsertissa, joka nostaa esiin ystävyyden ja sisaruuden voiman.</p><p>Sanskriti Suomi juhlistaa ylpeästi kansainvälistä naistenpäivää ja esittää konsertin, jonka teemana on “Sakhii Sakhiam”. Tämä tuotanto kokoaa yhteen lahjakkaita intialaisen klassisen tanssin ja musiikin esittäjiä sekä Pohjois- että Etelä-Intian perinteistä tutkimaan naiseuden monia ulottuvuuksia sisaruuden näkökulmasta.<br>Sakhii Sakhiam on ystävyyden, yhteyden, luottamuksen ja voimaantumisen juhla – ylistyslaulu naisten hengelle kaikissa heidän kauniissa sävyissään, toisiaan tukien ja yhdessä vahvempina nousten.</p><p>Kesto noin 90 min.</p><p>Sanskriti Suomi edistää intialaista klassista perintöä konserttien, koulutuksen ja kulttuurienvälisen yhteistyön kautta.</p>",
                "sv": "<p>Indisk klassisk dans och musik förenas i en konsert som lyfter fram vänskapens och systerskapets kraft.</p><p>Sanskriti Suomi firar stolt den internationella kvinnodagen och framför Vasantotsav-konserten 2026 på temat ”Sakhii Sakhiam”. Denna produktion samlar begåvade artister inom klassisk indisk dans och musik från traditioner i både norra och södra Indien för att utforska kvinnlighetens många dimensioner ur systerskapets perspektiv.</p><p>Sakhii Sakhiam är en hyllning till vänskap, samhörighet, tillit och krafthämtning – en lovsång till kvinnosjälen i alla dess sköna nyanser, att stödja varandra och tillsammans resa sig starkare.</p><p>Längd cirka 90 min.</p><p>Sanskriti Suomi främjar det klassiska indiska arvet genom konserter, utbildning och interkulturellt samarbete.</p>",
                "en": "<p>Indian classical dance and music come together in a concert that highlights the power of friendship and sisterhood.</p><p>As we celebrate International Women’s Day, Sanskriti Suomi is proud to present this year’s Vasantotsav concert 2026, themed, “Sakhii Sakhiam”. This production brings together talented Indian classical dancers and musicians from both North and South Indian traditions to explore the many dimensions of womanhood through the lens of sisterhood.</p><p>Sakhii Sakhiam is a celebration of friendship, connection, trust, and empowerment - an ode to the spirit of women in all their beautiful shades, lifting one another and rising stronger together.</p><p>Duration: 90 min</p>"
            },
            "name": {
                "fi": "Sanskriti Suomi presents: Sakhii Sakhiam – Women Empowered Together",
                "sv": "Sanskriti Suomi presents: Sakhii Sakhiam – Women Empowered Together",
                "en": "Sanskriti Suomi presents: Sakhii Sakhiam – Women Empowered Together"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67903/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67316",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?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/event/pekko-kappi-k-h-h-l-pekko-kappi-khhl-kanneltalo-20930151/",
                        "sv": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-pekko-kappi-khhl-kanneltalo-20930151/",
                        "en": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-pekko-kappi-khhl-kanneltalo-20930151/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494036,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T07:12:51.997668Z",
                    "last_modified_time": "2025-12-04T07:12:51.997690Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780949.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494036/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T07:12:51.913616Z",
            "last_modified_time": "2026-03-20T01:13:28.201315Z",
            "date_published": null,
            "start_time": "2026-03-07T16: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": "Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikkö.",
                "sv": "Pekko Käppi & K:H:H:L är den hetaste och mest högljudda kvartetten inom Finlands folkrock just nu.",
                "en": "Pekko Käppi & K:H:H:L from Tampere is the hottest and loudest four-piece in the Finnish folk rock scene today."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A72DC511181E00993476035FD9678A00/Pekko_Kappi_K_H_H_L",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A72DC511181E00993476035FD9678A00/Pekko_Kappi_K_H_H_L",
                "en": "http://www.kanneltalo.fi/en/events/event/A72DC511181E00993476035FD9678A00/Pekko_Kappi_K_H_H_L"
            },
            "description": {
                "fi": "<p>Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikkö.</p><p>Yhtye perustettiin jouhikkotaiteilijana ja laulaja-lauluntekijänä tunnetun Pekko Käpin Rammat jumalat levyn ilmestyttyä vuonna 2013. Sittemmin yhtye on tehnyt viisi levyä, saaneet moisista kiitosta sekä kiertäneet planeettaamme ristiin rastiin. Arvostettu englantilainen musiikkijulkaisu kuvaili yhtyettä lauseella: ”T. Rex of Finland”.</p><p>Pekko Käpin huhmareeseen on heitetty ilmavaa folk -ilmaisua, bluesin juurekkuutta ja psykedelisvivahteista rockia. Maljamaisessa astiassa hienonnettu lopputulos on ihastuttavaa ja omaleimaisen nerokkaalla tavalla helposti lähestyttävän populaarimusiikin muottiin istutettua kansanmusiikkia. Livenä yhtyeen sointi yltyy helposti jopa hypnoottisesti, kun kepeän hengittävästi etenevät tunnelmat ja huojuvan vaivaton folk- soitanta ajautuu täysin huomaamattasi kuin omaa häntäänsä jahtaavan pillastuneen koiran kaltaiseksi raivokkaana junnaavaksi rock -paasaukseksi.</p><p>Pohjoista gotiikkaa sekä olevaisuuden mosaaikkipeilimaailman mantramaisia sirpaleita pärskyvät tarinat sulautuvat mitä mainiommilla tavoilla yhtyeen orgaaniseen voimaan, jota ei voi pysäyttää ja joka saa sielusi pikkulinnun tanssimaan.</p><p>Yhtyeen kuudes albumi Oli kerran ryytimaassa... julkaistiin 2025.</p><p>Yhtye:<br>Pekko Käppi – laulu, jouhikot<br>Tommi Laine – kitara, laulu<br>Nuutti Vapaavuori – basso, laulu<br>Gilbert Kuppusami – rummut, laulu</p><p>Kesto n. 1h 15 min.</p>",
                "sv": "<p>Pekko Käppi & K:H:H:L är den hetaste och mest högljudda kvartetten inom Finlands folkrock just nu.</p><p>Gruppen bildades efter att stråkharpsvirtuosen och singer-songwritern Pekko Käppis skiva Rammat jumalat kommit ut år 2013. Sedan dess har bandet gjort fem album, hyllats för sina insatser och turnerat jorden runt. En uppskattad engelsk musikpublikation beskrev bandet som: ”T. Rex of Finland”.</p><p>Pekko Käppi har kastat luftiga folk-uttryck, rotig blues och psykedelisk rock i sin mortel. Bägaren med det finfördelade slutresultatet är förtjusande med folkmusik i form av populärmusik på ett säreget genialiskt sätt som är lätt att närma sig. Live blir gruppens klang till och med hypnotisk, när stämningen rör sig från den lätta vaggande bekymmerslösa folkmusiken och helt omärkligt förändras till rasande rock likt en upphetsad hund som jagar sin egen svans.</p><p>Den nordiska gotiken och berättelserna med de mantralika fragmenten av tillvarons mosaikspegelvärld smälter på ett ypperligt sätt samman med bandets organiska kraft, som inte kan stoppas och som får din själ att dansa.</p><p>Bandets sjätte album Oli kerran ryytimaassa... kom år 2025.</p><p>Band:<br>Pekko Käppi – sång, stråkharpa<br>Tommi Laine – gitarr, sång<br>Nuutti Vapaavuori – bas, sång<br>Gilbert Kuppusami – trummor, sång</p>",
                "en": "<p>Pekko Käppi & K:H:H:L from Tampere is the hottest and loudest four-piece in the Finnish folk rock scene today.</p><p>The band was formed after the release of Pekko Käppi's Rammat jumalat album in 2013. Since then, the band has released five albums, received praise for their efforts and toured the planet. A distinguished English music publication described the band as follows: ”T. Rex of Finland.”</p><p>Pekko Käppi churns away at his craft, combining airy folk, rootsy blues and psychedelic rock. The end result is delightful, unique, ingenious and approachable folk music dressed up as popular music. Live, the sound easily becomes hypnotic, as the airy moods progress and the effortlessly flowing folk sound turns into a fierce, thumping rock sound resembling a dog chasing its own tail.</p><p>The stories merging Nordic Gothic with mantra-like shards of a world reflected in mosaic mirrors boil over and seamlessly blend with the raw, unstoppable power of the group, which makes the tiny bird in your soul dance.</p><p>The band's sixth album Oli kerran ryytimaassa... was released in 2025.</p><p>Band:<br>Pekko Käppi – vocals, bowed harp<br>Tommi Laine – guitar, vocals<br>Nuutti Vapaavuori – bass, vocals<br>Gilbert Kuppusami – drums, vocals</p>"
            },
            "name": {
                "fi": "Pekko Käppi & K:H:H:L",
                "sv": "Pekko Käppi & K:H:H:L",
                "en": "Pekko Käppi & K:H:H:L"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67316/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67485",
            "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/event/lauluyhtye-chime-luontomme-malmitalo-20992912/",
                        "sv": "https://www.lippu.fi/event/lauluyhtye-chime-luontomme-malmitalo-20992912/",
                        "en": "https://www.lippu.fi/event/lauluyhtye-chime-luontomme-malmitalo-20992912/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17,80 € / 19,80 €",
                        "sv": "17,80 € / 19,80 €",
                        "en": "17,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494021,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T09:12:53.383977Z",
                    "last_modified_time": "2025-12-03T09:12:53.383989Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781538.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494021/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T09:12:53.312553Z",
            "last_modified_time": "2026-03-20T01:13:28.046986Z",
            "date_published": null,
            "start_time": "2026-03-07T16: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": "Miten ihminen suhtautuu elinympäristöönsä ja miten luonto vastaa siihen?",
                "sv": "Hur reagerar människan på sin livsmiljö och hur svarar naturen på det?",
                "en": "How do humans feel about their living environment and how does nature respond?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4DA2B24A1C29A31B3F31565E1BECC2C6/Lauluyhtye_Chime_Luontomme_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4DA2B24A1C29A31B3F31565E1BECC2C6/Sanggruppen_Chime_Luontomme",
                "en": "http://www.malmitalo.fi/en/events/event/4DA2B24A1C29A31B3F31565E1BECC2C6/Lauluyhtye_Chime_Luontomme_Our_nature"
            },
            "description": {
                "fi": "<p>Miten ihminen suhtautuu elinympäristöönsä ja miten luonto vastaa siihen?</p><p>Näemmekö oman toimintamme vaikutukset, entä onko meillä rohkeutta toimia säilyttääksemme meille niin tärkeän planeettamme? Mitä ihminen on ilman luontoa ja mitä meistä jää jäljelle, jos kadotamme sen?</p><p>Näitä kysymyksiä Lauluyhtye Chime pohtii a cappella -laulun keinoin Luontomme -konsertissa Malmitalolla 7.3.2026. Konsertti vie matkalle, jossa luonto peilaa ihmisyyttä ja näyttää, keitä me olemme.</p><p>Kesto 1 t 15 min, ei väliaikaa</p>",
                "sv": "<p>Hur reagerar människan på sin livsmiljö och hur svarar naturen på det?</p><p>Ser vi konsekvenserna av våra egna handlingar, och har vi modet att agera för att bevara den planet som vi bryr oss så mycket om? Vad är människan utan natur och vad blir kvar av oss om vi förlorar den?</p><p>Dessa frågor funderar sånggruppen Chime på i form av a cappella-sång på konserten Luontomme på Malms kulturhus den 7 mars 2026. Konserten för publiken på en resa där naturen speglar mänskligheten och visar vilka vi är.</p><p>Längd 1 h 15 min., utan paus</p>",
                "en": "<p>How do humans feel about their living environment and how does nature respond?</p><p>Do we see the impacts of our actions and do we have the courage to act to preserve the planet that is so vital to us? What are humans without nature and what will be left of us if we lose it?</p><p>These are the questions that Lauluyhtye Chime will ask in their a cappella songs at their Luontomme concert at Malmitalo on 7 March 2026. The concert will take the audience on a journey where nature reflects humanity and shows us who we are.</p><p>Duration 1 hour 15 min, no intermission</p>"
            },
            "name": {
                "fi": "Lauluyhtye Chime: Luontomme",
                "sv": "Sånggruppen Chime: Luontomme",
                "en": "Lauluyhtye Chime: Luontomme – Our nature"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67485/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67372",
            "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:29/?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:p16919/?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/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299698/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299698/",
                        "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299698/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494743,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T13:14:06.911809Z",
                    "last_modified_time": "2026-02-05T13:14:06.911828Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781050.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T13:14:06.810096Z",
            "last_modified_time": "2026-03-20T01:13:27.930813Z",
            "date_published": null,
            "start_time": "2026-03-07T16: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": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E10B117BE95722461DA12462BE295B7/Kaunis_rietas_onnellinen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6E10B117BE95722461DA12462BE295B7/Kaunis_rietas_onnellinen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6E10B117BE95722461DA12462BE295B7/Kaunis_rietas_onnellinen_12_"
            },
            "description": {
                "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Kaunis rietas onnellinen (12) – Kino Helios",
                "sv": "Kaunis rietas onnellinen (12) – Kino Helios",
                "en": "Kaunis rietas onnellinen (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67372/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67117",
            "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/savoyjazzfest/",
                        "sv": "https://www.lippu.fi/artist/savoyjazzfest/",
                        "en": "https://www.lippu.fi/artist/savoyjazzfest/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-57 €",
                        "sv": "17-57 €",
                        "en": "17-57 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491112,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-16T10:13:28.104927Z",
                    "last_modified_time": "2025-10-16T10:13:28.104941Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778120.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491112/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T15:15:06.388126Z",
            "last_modified_time": "2026-03-20T01:13:27.707176Z",
            "date_published": null,
            "start_time": "2026-03-07T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7005ED61A6811EF3905FB277130586D4/Shake_Stew_Itavalta_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7005ED61A6811EF3905FB277130586D4/Shake_Stew_Osterrike_",
                "en": "http://www.savoyteatteri.fi/en/events/event/7005ED61A6811EF3905FB277130586D4/Shake_Stew_Austria_"
            },
            "description": {
                "fi": "<p>Itävallan seitsemänhenkinen groove-sensaatio <b>Shake Stew</b> juhlistaa 10-vuotista taivaltaan Savoy JAZZFestin konsertissa. Shake Stew on viime vuosina noussut yhdeksi Euroopan puhutuimmista jazz-kokoonpanoista. Yhtyeen hypnoottiset äänimaisemat, sykkivät rytmit ja vastustamaton energia ovat vieneet heidät loppuunmyydyille saleille aina Wienin Konzerthausista Hampurin Elbphilharmonieen ja maailman suurimmille jazz festivaaleille – nyt he esiintyvät ensimmäistä kertaa Suomessa!</p><p><i>”Sinun ei tarvitse pitää jazzista rakastaaksesi Shake Stew’ta – tämä ei ole musiikkia, tämä on dynamiittia!”</i> – Wiener Zeitung</p><p>Vuonna 2016 basisti-säveltäjä <b>Lukas Kranzelbinderin</b> perustama bändi rikkoo perinteisen jazz-yhtyeen muotin: lavalla on kaksi rumpalia, basisti, kitaristi ja kolme puhallinta. Yhtye on saanut riveihinsä myös uuden vahvistuksen, saksofonisti <b>Yvonne Morielin</b>, joka tuo soundiin uudenlaista sävyä ja raikkautta. Tämä harvinaislaatuinen kokoonpano luo musiikkia, jossa kohtaavat afro-jazzin rytmit, funk, spiritual jazz ja transsimaiset soundit. Tuloksena on musiikillinen kokemus, joka on yhtä aikaa lumoava ja räjähtävä.</p><p>Shake Stew on palkittu mm. German Jazz Awardilla (Vuoden kansainvälinen yhtye) sekä Itävallan arvostetulla Amadeus Music Awardilla. Arvostettu saksalaislehti Die ZEIT on kutsunut heitä ”Itävallan tämän hetken jazz-yhtyeeksi”.</p><p>Yhtye juhlii vuonna 2026 10-vuotista uraansa ja julkaisee tulevan juhlavuoden kunniaksi uuden albumin marraskuussa 2025.</p><p>Savoy JAZZFestissä koetaan Shake Stewn Suomen-debyyttikeikka, joka lupaa hengästyttävää energiaa ja musiikillisen matkan, jota et unohda.<br> <br>Kesto n. 1 t, ei väliaikaa.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>***</p><p>Myynnissä on rajattu erä edullisia päivälippuja Savoy JAZZFestin lauantaille 7.3.2026. 80 euron hintainen päivälippu sisältää <b>Shake Stew</b> -kokoonpanon konsertin klo 17.30 sekä klo 20.00 alkavan konsertin, jonka esiintyjä julkaistaan myöhemmin.</p><p>Katso Shake Stewn musiikkivideo kappaleesta Lila:</p>",
                "sv": "<p>Den österrikiska groove-sensationen, sjumannabandet Shake Stew, firar 10-årsjubileum på Savoy JAZZFest. Under de senaste åren har Shake Stew blivit en av de mest omtalade jazzgrupperna i Europa. Bandets hypnotiska ljudlandskap, pulserande rytmer och oemotståndliga energi har tagit dem till utsålda arenor från Konzerthaus i Wien till Elbphilharmonie i Hamburg och världens största jazzfestivaler – och nu uppträder de för första gången i Finland!</p><p>”Man behöver inte gilla jazz för att älska Shake Stew – det här är inte musik, det här är dynamit!” – Wiener Zeitung</p><p>Bandet, som grundades 2016 av basisten och tonsättaren Lukas Kranzelbinder, bryter mot det traditionella jazzbandets form: två trummisar, en basist, en gitarrist och tre blåsinstrument medverkar på scenen. Bandet har också fått förstärkning av saxofonisten Yvonne Moriel, som ger en ny ton och fräschör till soundet. Denna extraordinära grupp skapar musik som kombinerar afro-jazzrytmer, funk, spirituell jazz och transartade sound. Resultatet är en musikalisk upplevelse som på samma gång är fascinerande och explosiv.</p><p>Shake Stew har belönats med German Jazz Award (årets internationella band) och det prestigefyllda Amadeus Music Award i Österrike. Den prestigefyllda tyska tidningen Die ZEIT har kallat dem ”Österrikes jazzband just nu”..</p><p>Bandet firar 10-årsjubileum 2026 och släppte ett nytt album i november 2025 för att uppmärksamma jubileumsåret.</p><p>Savoy JAZZFest blir Shake Stews debut i Finland, och där utlovas en hisnande energi och en musikalisk resa du sent kommer att glömma.</p><p>Längd ca 1 timme, ingen paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>***</p><p>Ett begränsat antal dagsbiljetter säljs till Savoy JAZZFest lördagen den 7 mars 2026. Dagsbiljetten kostar 80 euro och gäller för Shake Stews konsert kl. 17.30 och konserten som börjar kl. 20.00, vars artister offentliggörs senare.</p><p>Titta på Shake Stews musikvideo till låten Lila:</p>",
                "en": "<p>The Austrian seven-piece groove sensation Shake Stew will celebrate their 10th anniversary at Savoy JAZZFest. In recent years, Shake Stew has become one of the most talked about jazz groups in Europe. The band’s hypnotic soundscapes, pulsating rhythms and irresistible energy have taken them to sold-out venues from the Konzerthaus in Vienna to the Elbphilharmonie in Hamburg and the world’s biggest jazz festivals – and now they will perform in Finland for the first time!</p><p>“You don’t have to like jazz to love Shake Stew – this is not music, this is dynamite!” – Wiener Zeitung</p><p>Founded in 2016 by bassist and composer Lukas Kranzelbinder, the band breaks the mould of a traditional jazz band and opts for a line-up featuring two drummers, a bassist, a guitarist and three wind instruments. The band has also recently supplemented its line-up with saxophonist Yvonne Moriel, who brings a new tone and freshness to the sound. This extraordinary line-up creates music that combines Afro-jazz rhythms, funk, spiritual jazz and trance-like sounds. The result is a musical experience that is simultaneously mesmerising and explosive.</p><p>Shake Stew has won awards such as a German Jazz Award (International Band of the Year) and the prestigious Amadeus Music Award in Austria. The prestigious German magazine Die ZEIT has called the group “Austria’s number one jazz band today”.</p><p>The band will celebrate its 10-year career in 2026 and released a new album in November 2025 to mark the upcoming anniversary.</p><p>Savoy JAZZFest will feature Shake Stew’s first show in Finland, promising breathtaking energy and a musical journey that you will never forget.</p><p>Duration: roughly 1 h, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>***</p><p>A limited number of affordable day tickets will be on sale for Savoy JAZZFest on Saturday 7 March 2026. The €80 day ticket includes the concert by Shake Stew at 17.30 and another concert starting at 20.00, the performer of which will be announced later.</p><p>Watch Shake Stew’s music video for the song Lila:</p>"
            },
            "name": {
                "fi": "Shake Stew (Itävalta) – Savoy JAZZFest",
                "sv": "Shake Stew (Österrike) – Savoy JAZZFest",
                "en": "Shake Stew (Austria) – Savoy JAZZFest"
            },
            "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:67117/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67371",
            "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:29/?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:p16919/?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/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299672/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299672/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299672/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494735,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T10:13:20.351960Z",
                    "last_modified_time": "2026-02-05T10:13:20.351974Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781049.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494735/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T10:13:20.246121Z",
            "last_modified_time": "2026-03-20T01:13:27.590953Z",
            "date_published": null,
            "start_time": "2026-03-07T13: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": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1B9B53D759E3F43BA57626F968262FF/Vinski_2_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1B9B53D759E3F43BA57626F968262FF/Vinski_2_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D1B9B53D759E3F43BA57626F968262FF/Vinski_2_7_"
            },
            "description": {
                "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Vinski 2 (7) – Kino Helios",
                "sv": "Vinski 2 (7) – Kino Helios",
                "en": "Vinski 2 (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67371/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67740",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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/yso:p1278/?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/enter-the-tsone-katutanssifestivaali-stoa-21056705/",
                        "sv": "https://www.lippu.fi/event/enter-the-tsone-katutanssifestivaali-stoa-21056705/",
                        "en": "https://www.lippu.fi/event/enter-the-tsone-katutanssifestivaali-stoa-21056705/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50€ / 16,50€ / 11€",
                        "sv": "24,50€ / 16,50€ / 11€",
                        "en": "24,50€ / 16,50€ / 11€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-15T15:16:17.256887Z",
                    "last_modified_time": "2025-12-15T15:16:17.256904Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780655.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-15T15:16:17.029781Z",
            "last_modified_time": "2026-03-20T01:13:27.256035Z",
            "date_published": null,
            "start_time": "2026-03-07T12:00:00Z",
            "end_time": "2026-03-07T21: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": "Enter the Tsone on Tsone Helsingin järjestämä kansainvälinen katu- ja klubitanssifestivaali.",
                "en": "Enter the Tsone is an international street and club dance festival organized by Tsone Helsinki."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6501F74FA3003F5B944DFFECFE9772EE/Enter_the_Tsone",
                "sv": "http://www.stoa.fi/sv/evenemang/event/6501F74FA3003F5B944DFFECFE9772EE/Enter_the_Tsone",
                "en": "http://www.stoa.fi/en/events/event/6501F74FA3003F5B944DFFECFE9772EE/Enter_the_Tsone"
            },
            "description": {
                "fi": "<p>Enter the Tsone on Tsone Helsingin järjestämä kansainvälinen katu- ja klubitanssifestivaali.</p><p>Tapahtumassa nähdään hiphop-battle, jonka karsintarinkeihin voi osallistua kuka tahansa. Ringeistä valitaan 16 tanssijaa, jotka kohtaavat toisensa ensin 1 vs. 1 -battleissa ja kärkikahdeksikon kesken käydään 7 to smoke -battle. Battlen tuomaristoon kuuluvat Marika Peura, martiniquelainen Sophie May sekä haitilais-sveitsiläinen Tatiana Desardouin.</p><p>Kaikki halukkaat voivat osallistua myös tapahtumassa tanssirinkien muodossa toteutettavaan koetanssiin. Koetanssista valitaan 2-4 tanssijaa mukaan uudenlaiseen teosprosessiin: teos harjoitellaan ja ensi-ilta pidetään jo tapahtuman aikana!</p><p>Ohjelmassa on myös useita lyhyempiä esityksiä, joista yleisö pääsee äänestämään suosikkinsa. Loppuillasta on varattu runsaasti aikaa \"jatkoille\" eli tanssilattia on vapaa kaikille ja tunnelmasta vastaavat paikalliset deejiit.</p><p><b>Lauantai 7.3.2026 ohjelma</b><br>14.00 Ovet auki<br>14.15-15.00 Hiphop-karsintaringit<br>15.00-15.45 Koetanssiringit<br>15.45-16.00 Tauko / avoin tanssilattia<br>16.00 The Choreo Tsone -esitys <br>16.15-17.00  Tsone stage: showcaset ja yleisöäänestys<br>17.00-17.45 Hiphop 1 vs. 1 top 16 -battlet<br>17.45-18.00 Tauko / avoin tanssilattia<br>18.00-18.15 Instant creation -teos<br>18.15-18.30 Tuomarien esitykset<br>18.30-19.15 Hiphop 7 to smoke<br>19.15-19.30  Palkintojenjako<br>19.30-22.30 Jatkot</p><p>Lue lisää ohjelmasta<br>https://tsonehelsinki.fi/enter-the-tsone/</p>",
                "en": "<p>Enter the Tsone is an international street and club dance festival organized by Tsone Helsinki.</p><p>Part of the program is a hiphop battle and anyone can join the cypher preselections. 16 dancers will go through to the next round, where the dancers will face each other in 1 vs. 1 battles. The top 8 dancers will compete in a 7 to smoke format. The battle will be judged by Marika Peura, Sophie May from Martinique, and Tatiana Desardouin from Haiti/Switzerland.</p><p>There will also be an audition cypher, that anyone can participate. 2-4 dancers will be selected to participate in a creative process, where the dancers will rehearse and perform a new piece during the event!</p><p>We will see multiple shorter performances and the crowd gets to vote for their favorites. And of course, there is going to be time for everyone to dance freely. At the end of the evening the dance floor turns into an \"after party\" with local deejays.</p><p><b>Saturday 7.3.2026</b><br>14.00 Doors open<br>14.15-15.00 Hiphop preselection cypher<br>15.00-15.45  Audition cypher<br>15.45-16.00 Break / open floor<br>16.00 The Choreo Tsone performance<br>16.15-17.00  Tsone stage: showcases and crowd vote<br>17.00-17.45 Hiphop 1 vs. 1 top 16 battles<br>17.45-18.00 Break / open floor<br>18.00-18.15 Instant creation performance<br>18.15-18.30  Judges showcases<br>18.30-19.15 Hiphop 7 to smoke<br>19.15-19.30  Awards<br>19.30-22.30 After party</p><p>Read more about the programme: https://tsonehelsinki.fi/enter-the-tsone/</p>"
            },
            "name": {
                "fi": "Enter the Tsone",
                "sv": "Enter the Tsone",
                "en": "Enter the Tsone"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67740/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67861",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?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": 1494661,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T13:13:07.115544Z",
                    "last_modified_time": "2026-01-28T13:13:07.115557Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783167.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494661/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T13:13:06.988503Z",
            "last_modified_time": "2026-03-20T01:13:27.135902Z",
            "date_published": null,
            "start_time": "2026-03-07T11: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": "My Mother Became a Bird (äidistäni tuli lintu) on runollinen animaatiodokumentti tytöstä, joka on menettänyt äitinsä.",
                "sv": "My Mother Became a Bird är en poetisk dokumentär och en animation om en flicka som förlorade sin mamma.",
                "en": "My Mother Became a Bird is a poetic documentary narrating an animation about a girl who lost her mother."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/E556A59AB2C9CBBBDD96A1527C13AC5E/Viittomakielinen_opastus_nayttelyyn_suomeksi_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/E556A59AB2C9CBBBDD96A1527C13AC5E/Viittomakielinen_opastus_nayttelyyn_suomeksi_",
                "en": "http://www.caisa.fi/en/events/event/E556A59AB2C9CBBBDD96A1527C13AC5E/Viittomakielinen_opastus_nayttelyyn_suomeksi_"
            },
            "description": {
                "fi": "<p>My Mother Became a Bird (äidistäni tuli lintu) on runollinen animaatiodokumentti tytöstä, joka on menettänyt äitinsä.</p><p>Tytöllä on paljon kysymyksiä elämästä ja kuolemasta ja hän kertoo tarinaansa muistojen ja unohtamisen pelon välimaastossa. Teos seuraa kahta tarinaa taiteilijan omasta nykyhetkestä ja äidin elinajasta. Lopussa nämä tarinat yhdistyvät.</p><p>Elokuva on omaelämäkerrallinen ja henkilökohtainen taideteos. Alustava konsepti ja käsikirjoitus on jo laadittu. Teoksen muoto on näyttely, joka yhdistää animaatiota, installaatiota ja videotaidetta. Myöhemmin hankkeen pohjalta tehdään lyhyt animaatioelokuva.<br>Teos jakautuu neljään osaan, joiden nimet ovat: Stove (hella), Sewing Machine (ompelukone), Washing Machine (pesukone) ja My Mother Became a Bird (äidistäni tuli lintu).</p><p>Visuaalisesti teos koostuu perinteisestä 2D-animaatiosta, jossa hyödynnetään kolmea erilaista analogista menetelmää: öljymaalausta, hiilipiirrosta ja kameran alla kuvattua stop motion -animaatiota (taiteilijan äidille kuuluneilla tavaroilla).<br>Näyttelyssä on monikieliset tekstitykset ja selostus kielellisen saavutettavuuden varmistamiseksi, ja näyttelyn kuvakerronta ylittää kielelliset rajat. Lisäksi installaatio on suunniteltu ottamaan huomioon erilaiset liikkumisen tarpeet.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 7.3.2025 klo 13–14.</p>",
                "sv": "<p>My Mother Became a Bird är en poetisk dokumentär och en animation om en flicka som förlorade sin mamma.</p><p>Hon har många frågor om liv och död och berättar sin historia mellan sitt minne och rädslan för att glömma. De två berättelserna växlar mellan konstnärens eget liv just nu och hennes mors livstid. Till slut förenas dessa två berättelser.</p><p>Detta projekt är ett biografiskt och personligt konstnärligt arbete. Det första konceptet och manuset är redan färdiga. Projektet tar form som en utställning som kombinerar animation, installation och videokonst. Senare kommer det att omarbetas till en kort animerad film.</p><p>Verket är indelat i fyra delar med titlarna: Stove, Sewing Machine, Washing Machine och My Mother Became a Bird.</p><p>Det visuella konceptet som utforskas omfattar traditionell 2D-animation med tre olika analoga tekniker: oljefärg, kol och objektanimation (med föremål som tillhör modern) som filmas med kamera.</p><p>Utställningen har undertexter och berättarröster på flera språk för att säkerställa språklig tillgänglighet med tydligt bildberättande som överskrider språkbarriärerna. Den fysiska installationen utformas också för att tillgodose olika mobilitetsbehov.</p>",
                "en": "<p>My Mother Became a Bird is a poetic documentary narrating an animation about a girl who lost her mother.</p><p>She has a lot of questions about life and death and tells her story between her memory and fear of forgetting. Two stories alternate between the artist’s own present life and her mother’s lifetime. In the end, these two stories join together.</p><p>This project is a biographical and personal artistic work. The initial concept and screenplay have already been developed. It will take shape as an exhibition that combines animation, installation, and video art. Later on, the project will be adapted into a short, animated film.</p><p>The work is divided into four parts, with each episode titled: \"Stove,\" \"Sewing Machine,\" \"Washing Machine,\" and \"My Mother Became a Bird.\"</p><p>The visual concept to be explored involves traditional 2D animation using three different analog techniques: oil paint, charcoal, and object animation (using objects belonging to my mother) filmed under the camera.</p><p>The exhibition will include subtitles and voiceovers in multiple languages to ensure linguistic accessibility, with clear visual storytelling that transcends language barriers. Additionally, the physical installation will be designed to accommodate various mobility needs.</p>"
            },
            "name": {
                "fi": "Viittomakielinen opastus näyttelyyn (suomeksi)",
                "sv": "Viittomakielinen opastus näyttelyyn (suomeksi)",
                "en": "Viittomakielinen opastus näyttelyyn (suomeksi)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67861/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67498",
            "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/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": 1494291,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-22T14:13:39.043729Z",
                    "last_modified_time": "2025-12-22T14:13:39.043751Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781605.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494291/?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-12-22T14:13:38.942892Z",
            "last_modified_time": "2026-03-20T01:13:27.024717Z",
            "date_published": null,
            "start_time": "2026-03-07T09:00:00Z",
            "end_time": "2026-03-07T12: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/42996AFC72CDB97F4160456779FFA7A6/Annantalon_taidelauantai_Kampilla",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/42996AFC72CDB97F4160456779FFA7A6/Annegardens_konstlordagar_Kampilla_I_folks_lyor_",
                "en": "http://www.annantalo.fi/en/events/event/42996AFC72CDB97F4160456779FFA7A6/Annantalo_Art_Saturdays_In_the_apartment_"
            },
            "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>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</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 kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>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>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</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. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>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>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>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.<br>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: Kämpillä",
                "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor",
                "en": "Annantalo Art Saturdays: In the apartment"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67498/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67484",
            "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/eventseries/name-4048779",
                        "sv": "https://www.lippu.fi/eventseries/name-4048779",
                        "en": "https://www.lippu.fi/eventseries/name-4048779"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494226,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-16T14:13:40.472993Z",
                    "last_modified_time": "2025-12-16T14:13:40.473010Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781536.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494226/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-16T14:13:40.320706Z",
            "last_modified_time": "2026-03-20T01:13:26.909702Z",
            "date_published": null,
            "start_time": "2026-03-06T17: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": "Folk Saimaa tarjoilee rakastetun Saimaa-yhtyeen musiikkia intiimillä kvartettikokoonpanolla."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A79010D5B7C23894C7388DFA136667B2/Folk_Saimaa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A79010D5B7C23894C7388DFA136667B2/Folk_Saimaa",
                "en": "http://www.malmitalo.fi/en/events/event/A79010D5B7C23894C7388DFA136667B2/Folk_Saimaa"
            },
            "description": {
                "fi": "<p>Folk Saimaa tarjoilee rakastetun Saimaa-yhtyeen musiikkia intiimillä kvartettikokoonpanolla.</p><p>Kokoonpanossa soittavat kitaristi Petri Kautto sekä laulajat Kimmo Härmä, Unna Kortehisto ja Liisa Anastasiadis.<br> <br>Saimaa julkaisi vuonna 2024 viiden tähden arvioita keränneet albumit Vol. 6 & Vol. 7, joista yhtye pokkasi myös Vuoden iskelmä -Emma-palkinnon.</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät.</p><p>Kesto: 1 t 40min, sis 20 min väliajan</p><p>Keikka on ikärajaton.</p>",
                "sv": "<p>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft.<br> <br>Den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare erbjuder varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass.</p><p>A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik.<br>Spelningen har ingen åldersgräns.</p>",
                "en": "<p>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music.</p><p>The high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art.</p><p>A la Malmi doesn’t care about genre boundaries but brings the best independent musicians to its audiences.<br>The show is for all ages.</p>"
            },
            "name": {
                "fi": "Folk Saimaa – A la Malmi",
                "sv": "Folk Saimaa – A la Malmi",
                "en": "Folk Saimaa – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67484/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67118",
            "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/savoyjazzfest/",
                        "sv": "https://www.lippu.fi/artist/savoyjazzfest/",
                        "en": "https://www.lippu.fi/artist/savoyjazzfest/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-67 €",
                        "sv": "17-67 €",
                        "en": "17-67 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-10T14:14:27.688838Z",
                    "last_modified_time": "2025-10-10T14:14:27.688857Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778121.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491077/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-10T14:14:27.523397Z",
            "last_modified_time": "2026-03-20T01:13:26.689077Z",
            "date_published": null,
            "start_time": "2026-03-06T17: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": "Tule kokemaan Duke Ellingtonin musiikin ajaton nerokkuus, kun pianisti Jason Moran tekee kunniaa säveltäjän perinnölle loistokkaasti – viime vuonna vietetyn 125-vuotisjuhlan hengessä.",
                "sv": "Upplev den tidlösa genialiteten i Duke Ellingtons musik när pianisten Jason Moran hyllar kompositörens arv i storslagen stil – i samma anda som förra årets 125-årsjubileum.",
                "en": "Come experience the timeless genius of Duke Ellington’s music as pianist Jason Moran pays glorious tribute to the composer’s legacy – in the spirit of the artist’s 125th anniversary last year."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C945B14294E169FEBD056DED89DD3F09/Jason_Moran_UMO_Helsinki_Jazz_Orchestra_Celebrating_Duke_Ellington_USA_Suomi_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C945B14294E169FEBD056DED89DD3F09/Jason_Moran_UMO_Helsinki_Jazz_Orchestra_Celebrating_Duke_Ellington_USA_Finland_",
                "en": "http://www.savoyteatteri.fi/en/events/event/C945B14294E169FEBD056DED89DD3F09/Jason_Moran_UMO_Helsinki_Jazz_Orchestra_Celebrating_Duke_Ellington_USA_Finland_"
            },
            "description": {
                "fi": "<p>Tule kokemaan Duke Ellingtonin musiikin ajaton nerokkuus, kun pianisti Jason Moran tekee kunniaa säveltäjän perinnölle loistokkaasti – viime vuonna vietetyn 125-vuotisjuhlan hengessä.</p><p><i>”Hätkähdyttävän lahjakas pianisti, jonka kokeilunhalu on loputon”</i> (Los Angeles Times)</p><p>Newyorkilainen pianisti <b>Jason Moran</b> kunnioittaa <b>Duke Ellingtonin</b> perintöä uudella, rohkealla otteella astuessaan Savoy JAZZFestin lavalle <b>UMO Helsinki Jazz Orchestran</b> kanssa. My Heart Sings -konsertissa kuullaan myös laulusolistina vierailevaa upeaa <b>Nina Myaa</b> sekä Moranin soolonumeroita.</p><p>Duke Ellington (1899–1974) oli yksi 1900-luvun suurimmista säveltäjistä, orkesterinjohtajista ja pianisteista – jazzin ikoni, jonka ainutlaatuinen tyyli yhdisti vallankumouksellisesti jazzin, bluesin ja swingin. Hänen hittikappaleensa, kuten <i>It Don’t Mean a Thing (If It Ain’t Got That Swing), In a Sentimental Mood</i> ja <i>Take the A Train</i> inspiroivat edelleen muusikoita ja yleisöjä ympäri maailmaa.</p><p><b>Jason Moran</b> (s. 1975) on Houstonista, Texasista kotoisin oleva jazzpianisti, säveltäjä ja taiteellinen johtaja, jota pidetään yhtenä sukupolvensa merkittävimmistä jazzmuusikoista. Hän on julkaissut yli viisitoista albumia, säveltänyt musiikkia teatteriin ja elokuviin (Selma, 13th) sekä tehnyt yhteistyötä mm. <b>Charles Lloydin</b> ja <b>Cassandra Wilsonin</b> kanssa. Moran toimii Washington D.C.:n Kennedy Centerin jazzin taiteellisena johtajana, opettaa New England Conservatoryssa ja on saanut urallaan useita arvostettuja palkintoja, kuten MacArthur-stipendin.</p><p>Luvassa upea swingintäyteinen ilta, jossa Moranin pianismi, klassikkosävellykset ja UMO Helsingin muhkea big band -soundi kohtaavat!</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>Kuuntele esimakua Youtubesta:</p>",
                "sv": "<p>Upplev den tidlösa genialiteten i Duke Ellingtons musik när pianisten Jason Moran hyllar kompositörens arv i storslagen stil – i samma anda som förra årets 125-årsjubileum.</p><p>\"En häpnadsväckande begåvad pianist med en oändlig experimentlust\" (Los Angeles Times)</p><p>Pianisten Jason Moran från New York hyllar Duke Ellingtons arv med ett djärvt nytt grepp när han intar Savoy JAZZFest-scenen tillsammans med UMO Helsinki Jazz Orchestra.</p><p>Duke Ellington (1899–1974) var en av 1900-talets största tonsättare, orkesterledare och pianister – en jazzikon vars unika stil på ett revolutionerande sätt kombinerade jazz, blues och swing. Hans hitlåtar som It Don't Mean a Thing (If It Ain't Got That Swing), In a Sentimental Mood och Take the A Train fortsätter att inspirera musiker och publik över hela världen.</p><p>Jason Moran (född 1975) är en jazzpianist, tonsättare och konstnärlig ledare från Houston, Texas, som anses vara en av de mest betydande jazzmusikerna i sin generation. Han har gett ut över femton album, komponerat musik för teater och film (Selma, 13th) och samarbetat med bland andra Charles Lloyd och Cassandra Wilson. Moran är konstnärlig ledare för jazz vid Kennedy Center i Washington D.C., undervisar vid New England Conservatory och har fått flera prestigefyllda utmärkelser under sin karriär, bland annat ett MacArthur-stipendium.</p><p>Det blir en härlig swingkväll, där Morans pianospel, klassiska låtar och UMO Helsinkis fylliga storbandssound möts!</p><p>Längd: ca 2 timmar inklusive paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Lyssna på ett smakprov på YouTube:</p>",
                "en": "<p>Come experience the timeless genius of Duke Ellington’s music as pianist Jason Moran pays glorious tribute to the composer’s legacy – in the spirit of the artist’s 125th anniversary last year.</p><p>“A startlingly gifted pianist with a relentless thirst for experimentation” (Los Angeles Times)</p><p>Hailing from New York, pianist Jason Moran will pay tribute to Duke Ellington’s legacy with a bold new approach when he takes to the Savoy JAZZFest stage with the UMO Helsinki Jazz Orchestra. My Heart Sings concert has also special guest, amazing Finnish vocalist Nina Mya. The programm also contains solo pieces of Jason Moran.</p><p>Duke Ellington (1899–1974) was one of the greatest composers, conductors and pianists of the 20th century, a jazz icon whose unique style revolutionarily combined jazz, blues and swing. His hit songs, such as It Don’t Mean a Thing (If It Ain’t Got That Swing), In a Sentimental Mood and Take the A Train, continue to inspire musicians and audiences around the world.</p><p>Jason Moran (born 1975) is a jazz pianist, composer and artistic director from Houston, Texas, who is regarded as one of the most important jazz musicians of his generation. He has released over fifteen albums, composed music for theatre and film (Selma, 13th) and collaborated with artists such as Charles Lloyd and Cassandra Wilson. Moran is the artistic director of jazz at the Kennedy Center in Washington D.C., teaches at the New England Conservatory and has received several prestigious awards in his career, including the MacArthur Fellowship prize.</p><p>The event will be a great swing-filled evening that brings together Moran’s pianism, classical compositions and UMO Helsinki’s hefty big band sound!</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>Check out what is to come on YouTube:</p>"
            },
            "name": {
                "fi": "Jason Moran & UMO Helsinki Jazz Orchestra: Celebrating Duke Ellington (USA/Suomi) – Savoy JAZZFest",
                "sv": "Jason Moran & UMO Helsinki Jazz Orchestra: Celebrating Duke Ellington (USA/Finland) – Savoy JAZZFest",
                "en": "Jason Moran & UMO Helsinki Jazz Orchestra: Celebrating Duke Ellington (USA/Finland) – Savoy JAZZFest"
            },
            "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:67118/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67370",
            "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:29/?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:p16919/?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/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299553/",
                        "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299553/",
                        "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299553/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494725,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T08:13:43.462788Z",
                    "last_modified_time": "2026-02-05T08:13:43.462805Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781047.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494725/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T08:13:43.349059Z",
            "last_modified_time": "2026-03-20T01:13:26.573944Z",
            "date_published": null,
            "start_time": "2026-03-06T16: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": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FBA56FFDE46D24A43E47449960BA0CDB/Luottomies-elokuva_Lepoloma_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FBA56FFDE46D24A43E47449960BA0CDB/Luottomies-elokuva_Lepoloma_7_",
                "en": "http://www.malmitalo.fi/en/events/event/FBA56FFDE46D24A43E47449960BA0CDB/_Luottomies-elokuva_Lepoloma_7_"
            },
            "description": {
                "fi": "<p>Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle.</p><p>Johanilla on yksi ehto: hän haluaa autonsa mukaan. Tommi lupautuu ajamaan Johanin auton Espanjaan – yhdessä Juhiksen kanssa. Asiat eivät kuitenkaan mene aivan suunnitellusti, ja kun Johanin auto varastetaan, Tommi ja Juhis päättävät selvittää tilanteen omin avuin ja pian sankarimme syöksyvät taas kiihtyvällä vauhdilla katastrofista toiseen.</p><p>Ikäraja: 7<br>Kesto: 88 min<br>Ensi-ilta: 4.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Luottomies-elokuva: Lepoloma (7) – Kino Helios",
                "sv": "Luottomies-elokuva: Lepoloma (7) – Kino Helios",
                "en": "Luottomies-elokuva: Lepoloma (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67370/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68064",
            "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:616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27260/?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:p5759/?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": 1494721,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-04T14:13:45.205116Z",
                    "last_modified_time": "2026-02-04T14:13:45.205132Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785374.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494721/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-04T14:13:45.118799Z",
            "last_modified_time": "2026-03-20T01:13:26.466252Z",
            "date_published": null,
            "start_time": "2026-03-06T15:00:00Z",
            "end_time": "2026-03-06T16: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": "Savoy JAZZFestin perjantai-illan avaa ainutlaatuinen keskustelutilaisuus, joka juhlistaa Jazz Suomi 100 -vuotta. Illan aikana sukelletaan kotimaisen jazzin historiaan ja jazzin merkitykseen."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/567534898857DA0EFB83871E2E4ECE11/Jazz_Suomi_100_-keskustelu_Jazztarinoita_Suomesta"
            },
            "description": {
                "fi": "<p>Savoy JAZZFestin perjantai-illan avaa ainutlaatuinen keskustelutilaisuus, joka juhlistaa Jazz Suomi 100 -vuotta. Illan aikana sukelletaan kotimaisen jazzin historiaan ja jazzin merkitykseen.</p><p>Moderaattori: Nina Öhman (PhD, MBA, musiikintutkija, Filosofian, historian ja taiteiden tutkimuksen osasto, Helsingin yliopisto)</p><p>Puhujat:<br>Vieno Kekkonen (muusikko)<br>Erkki Liikanen (eurooppaneuvos)<br>Sami Linna (muusikko, jazzmusiikin lehtori)<br>Pekka Jalkanen (säveltäjä, dosentti)<br>Kaisa Mäensivu (muusikko)</p><p>Alkutervehdyksen lausuu Jari Perkiömäki, Jazzliiton puheenjohtaja, lehtori, rehtori emeritus</p><p>Illan aikana sukelletaan kotimaisen jazzin historiaan ja jazzin merkitykseen populaarikulttuurissamme ja yhteiskunnassamme laajemmin. Keskustelijat valottavat jazzin musiikillista ja kulttuurista roolia eri vuosikymmeninä – aina vastakulttuurista valtavirran ytimeen – ja myös haastavat perinteisiä narratiiveja.</p><p>Esille nousevat mm. jazzin asema nuorisokulttuurin ilmentäjänä sekä sen symbolit ja merkitykset eri aikakausina. Samalla vertaillaan jazzin juurtumista Suomessa ja sen kehitystä Yhdysvalloissa, poliittiset, kulttuuriset ja historialliset kontekstit huomioiden. Monipuolinen keskustelijajoukko tuo esiin niin arkisia kuin ikimuistoisia hetkiä jazzin historiassa. Elävät tarinat eri vuosikymmeniltä sekä moninaiset näkökulmat rikastuttavat ymmärrystämme suomalaisen jazzin tiestä 1920-luvulta nykypäivään.</p><p>Keskustelutilaisuuden järjestää Suomen Jazzliitto, Taideyliopisto, Helsingin yliopisto sekä Savoy-teatteri. Keskustelu pidetään Savoy-teatterissa. Vapaa pääsy.</p><p>Keskustelun jälkeen ilta jatkuu UMO Helsinki Jazz Orchestran konsertilla klo 19, liput lippu.fi. UMO on ollut keskeinen osa kotimaisen jazzin kehitystä, ja tänä vuonna orkesteri juhlii 50-vuotista taivaltaan. Tule mukaan kokemaan jazzin tarinaa tutuista ja uusista näkökulmista.</p><p>Katso Savoy JAZZFestin muu ohjelma: savoyteatteri.fi</p>"
            },
            "name": {
                "fi": "Jazz Suomi 100 -keskustelu: Jazztarinoita Suomesta – Savoy JAZZFest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Jazzliitto, Taideyliopisto, Helsingin yliopisto sekä Savoy-teatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68064/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67369",
            "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:29/?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:p16919/?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/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299760/",
                        "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299760/",
                        "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299760/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494742,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T13:14:06.127559Z",
                    "last_modified_time": "2026-02-05T13:14:06.127644Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781046.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T13:14:06.018023Z",
            "last_modified_time": "2026-03-20T01:13:26.352854Z",
            "date_published": null,
            "start_time": "2026-03-06T13: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": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44C1BDB63087CAB4126B2A6105C6BFA3/EPiC_Elvis_Presley_in_Concert",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/44C1BDB63087CAB4126B2A6105C6BFA3/EPiC_Elvis_Presley_in_Concert",
                "en": "http://www.malmitalo.fi/en/events/event/44C1BDB63087CAB4126B2A6105C6BFA3/EPiC_Elvis_Presley_in_Concert"
            },
            "description": {
                "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita. Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: ei tiedossa<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "EPiC: Elvis Presley in Concert – Kino Helios",
                "sv": "EPiC: Elvis Presley in Concert – Kino Helios",
                "en": "EPiC: Elvis Presley in Concert – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67369/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67524",
            "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/savoyjazzfest/",
                        "sv": "https://www.lippu.fi/artist/savoyjazzfest/",
                        "en": "https://www.lippu.fi/artist/savoyjazzfest/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-57 €",
                        "sv": "17-57 €",
                        "en": "17-57 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493850,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-20T11:13:04.822145Z",
                    "last_modified_time": "2025-11-20T11:13:04.822158Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781632.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493850/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-20T11:13:04.704033Z",
            "last_modified_time": "2026-03-20T01:13:26.204441Z",
            "date_published": null,
            "start_time": "2026-03-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": "Kaksi ainutlaatuista jazzmaailmaa – yksi unohtumaton ilta Savoy JAZZFestissä",
                "sv": "Två unika jazzvärldar – en oförglömlig kväll på Savoy JAZZFest",
                "en": "Two unique jazz worlds – one unforgettable evening at Savoy JAZZFest"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/1651FF7E96E3D5231C37C87E342B82D7/Andreas_Schaerer_A_Novel_of_Anomaly_Sveitsi_Italia_Sun_Mi_Hong_Quintet_Etela-Korea_Italia_Iso-Britannia_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/1651FF7E96E3D5231C37C87E342B82D7/Andreas_Schaerer_A_Novel_of_Anomaly_Schweiz_Italien_Sun_Mi_Hong_Quintet_Sydkorea_Italien_Storbritannien_",
                "en": "http://www.savoyteatteri.fi/en/events/event/1651FF7E96E3D5231C37C87E342B82D7/Andreas_Schaerer_A_Novel_of_Anomaly_Switzerland_Italy_Sun_Mi_Hong_Quintet_South_Korea_Italy_UK_"
            },
            "description": {
                "fi": "<p>Kaksi ainutlaatuista jazzmaailmaa – yksi unohtumaton ilta Savoy JAZZFestissä</p><p>Konsertti tuo Savoy JAZZFestiin kaksi kansainvälisesti arvostettua yhtyettä, jotka edustavat jazzin rohkeaa ja omaperäistä nykysuuntausta. Illan ensimmäisellä puolikkaalla esiintyy Andreas Schaerer: A Novel of Anomaly, palkitun sveitsiläisen vokalistin ja säveltäjän <b>Andreas Schaererin</b> johtama nelikko, jossa soittavat kitaristi <b>Kalle Kalima</b>, harmonikkataiteilija <b>Luciano Biondini</b> ja rumpali <b>Lucas Niggli</b>. Yhtyeen musiikki liikkuu luontevasti jazzin, improvisaation ja kamarimusiikin rajapinnoilla – yhdistäen virtuoottisen yhteissoiton, huumorin ja yllättävät äänimaisemat.</p><p>Konsertin toisen puoliskon täyttää <b>Sun Mi Hong Quintet</b>, korealaissyntyisen ja Amsterdamissa vaikuttavan rumpalin <b>Sun Mi Hongin</b> johtama yhtye. Kvintetti tunnetaan dynaamisesta ilmaisustaan, jossa eurooppalainen ja aasialainen estetiikka sulautuvat nykypäivän jazzin monivivahteiseen rytmiikkaan ja tunnesyvyyteen. Viime vuonna arvostetun Paul Acket -palkinnon voittanut Sun Mi Hong on noussut nopeasti eurooppalaisen jazzin kiinnostavimpien säveltäjien ja yhtyeenjohtajien joukkoon, ja hänen yhtyeensä on kerännyt ylistystä muun muassa albumeistaan <i>A Self-Strewn Portrait</i> ja <i>Third Page: Resonance</i>. Yhtyeessä soittavat <b>Chaerin Im</b>, piano, <b>Alessandro Fongaro</b>, kontrabasso, <b>Nicolò Ricci</b>, tenorisaksofoni ja <b>Alistair Payne</b>, trumpetti.</p><p>Kuuntele A Novel of Anomalyn kappale <i>Planet Zumo</i> Youtubesta: https://youtu.be/aPKIEOryhjE?si=5sccwb-6ka_ZGE4i</p><p>Kuuntele Sun Mi Hong Quintetin kappale <i>P stands for Palace</i> Youtubesta: https://youtu.be/YWk9lIdHAZ4?si=VLZslduStV18-dgu</p><p>Kesto n. 2,5 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Två unika jazzvärldar – en oförglömlig kväll på Savoy JAZZFest</p><p>Konserten bjuder på internationellt hyllade band på Savoy JazzFest. De representerar en djärv och originell riktning inom modern jazz. Under den första halvan av kvällen uppträder Andreas Schaerer: A Novel of Anomaly, en kvartett under ledning av den prisbelönte schweiziske sångaren och kompositören Andreas Schaerer, med gitarristen Kalle Kalima, dragspelaren Luciano Biondini och trummisen Lucas Niggli. Bandets musik rör sig naturligt i gränssnittet mellan jazz, improvisation och kammarmusik – och kombinerar virtuost ensemblespel, humor och överraskande ljudlandskap.</p><p>Den andra halvan av konserten fylls av Sun Mi Hong Quintet, ledd av den koreanskfödda och Amsterdambaserade trummisen Sun Mi Hong. Kvintetten är känd för sitt dynamiska uttryck, där europeisk och asiatisk estetik blandas med den moderna jazzens komplexa rytmer och känslomässiga djup. Sun Mi Hong, förra årets vinnare av det prestigefyllda Paul Acket-priset, har snabbt seglat upp som en av de mest spännande tonsättarna och bandledarna inom europeisk jazz, och hennes ensemble har hyllats för album som A Self-Strewn Portrait och Third Page: Resonance. Ensemblen består av Chaerin Im, piano, Alessandro Fongaro, kontrabas, Nicolò Ricci, tenorsaxofon och Alistair Payne, trumpet.</p><p>Lyssna på A Novel of Anomalys låt Planet Zumo på Youtube: https://youtu.be/aPKIEOryhjE?si=5sccwb-6ka_ZGE4i</p><p>Lyssna på Sun Mi Hong Quintets låt P stands for Palace på Youtube: https://youtu.be/YWk9lIdHAZ4?si=VLZslduStV18-dgu</p><p>Längd: ca 2,5 h inklusive paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Two unique jazz worlds – one unforgettable evening at Savoy JAZZFest</p><p>This concert will bring two internationally acclaimed bands representing a bold and original contemporary jazz trend to Savoy JAZZFest. The first half of the evening will feature Andreas Schaerer: A Novel of Anomaly, a quartet led by award-winning Swiss vocalist and composer Andreas Schaerer, featuring guitarist Kalle Kalima, accordionist Luciano Biondini and drummer Lucas Niggli. The band’s music naturally navigates the boundaries of jazz, improvisation and chamber music – combining virtuosic ensemble playing, humour and surprising soundscapes.</p><p>The second half of the concert will give the stage to the Sun Mi Hong Quintet, led by Korean-born and Amsterdam-based drummer Sun Mi Hong. The quintet is known for its dynamic expression, blending European and Asian aesthetics with the complex rhythms and emotional depth of contemporary jazz. Last year’s winner of the prestigious Paul Acket Award, Sun Mi Hong has quickly become one of the most exciting composers and bandleaders in European jazz, and her ensemble has garnered praise for albums such as A Self-Strewn Portrait and Third Page: Resonance. The line-up features Chaerin Im on piano, Alessandro Fongaro on double bass, Nicolò Ricci on tenor saxophone and Alistair Payne on trumpet.</p><p>Listen to the A Novel of Anomaly song Planet Zumo on YouTube: https://youtu.be/aPKIEOryhjE?si=5sccwb-6ka_ZGE4i</p><p>Listen to Sun Mi Hong Quintet’s song P stands for Palace on YouTube: https://youtu.be/YWk9lIdHAZ4?si=VLZslduStV18-dgu</p><p>Duration: roughly 2.5 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>"
            },
            "name": {
                "fi": "Andreas Schaerer: A Novel of Anomaly (Sveitsi/Italia) / Sun Mi Hong Quintet (Etelä-Korea/Italia/Iso-Britannia) – Savoy JAZZFest",
                "sv": "Andreas Schaerer: A Novel of Anomaly (Schweiz/Italien)/Sun Mi Hong Quintet (Sydkorea/Italien/Storbritannien) – Savoy JAZZFest",
                "en": "Andreas Schaerer: A Novel of Anomaly (Switzerland/Italy) / Sun Mi Hong Quintet (South Korea/Italy/UK) – Savoy JAZZFest"
            },
            "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:67524/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67447",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?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/event/name-20978154",
                        "sv": "https://www.lippu.fi/event/name-20978154",
                        "en": "https://www.lippu.fi/event/name-20978154"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494034,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T14:13:08.998875Z",
                    "last_modified_time": "2025-12-03T14:13:08.998896Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781371.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494034/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T14:13:08.888603Z",
            "last_modified_time": "2026-03-20T01:13:26.079291Z",
            "date_published": null,
            "start_time": "2026-03-05T16: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": "Konsertissa kuullaan musiikillinen matka Latinalaiseen Amerikkaan.",
                "sv": "Konserten är en musikalisk resa till Latinamerika.",
                "en": "The concert takes the audience on a musical journey through Latin America."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/385F29814C34F1F82DA56AD5F988ABDF/Lauluyhtye_Luna_Latinolaulajat",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/385F29814C34F1F82DA56AD5F988ABDF/Sanggruppen_Luna_Latinolaulajat",
                "en": "http://www.kanneltalo.fi/en/events/event/385F29814C34F1F82DA56AD5F988ABDF/Lauluyhtye_Luna_Latinolaulajat"
            },
            "description": {
                "fi": "<p>Konsertissa kuullaan musiikillinen matka Latinalaiseen Amerikkaan.</p><p>Isoksi kasvanut Lauluyhtye Luna Helsingin työväenopistosta juhlii 25-vuotista taivaltaan yhdessä rinnakkaisryhmänsä Latinolaulajien kanssa. Menossa mukana ovat myös Latinalaisen Amerikan musiikkiin erikoistuneet taiturit Fabio de Oliveira (kitara), Ricardo Padilla (perkussiot) ja Helena Kallas (piano) yhdessä vierailijoiden kanssa. Musiikinjohdosta, laulujen valmennuksesta ja viuluosuuksista vastaa Sanna Mansikkaniemi.</p><p>Kesto 1 h 45 min (sis. väliaika)</p>",
                "sv": "<p>Konserten är en musikalisk resa till Latinamerika.</p><p>Luna, sånggruppen från Helsingfors arbetarinstitut som vuxit sig stor, firar 25-årsjubileum tillsammans med sin parallellgrupp Latinolaulajat. På programmet står också mästarna på latinamerikansk musik Fabio de Oliveira (gitarr), Ricardo Padilla (slagverk) och Helena Kallio (piano), tillsammans med gäster. Sanna Mansikkaniemi ansvarar för musikregin, låtcoachningen och fiolinslagen.</p><p>Längd 1 h 45 min (inkl. paus)</p>",
                "en": "<p>The concert takes the audience on a musical journey through Latin America.</p><p>The expanded Lauluyhtye Luna from the Helsinki Finnish Adult Education Centre marks its 25th anniversary alongside its parallel group, Latinolaulajat. Also joining the performance are Latin American music specialists Fabio de Oliveira (guitar), Ricardo Padilla (percussion) and Helena Kallio (piano), along with guest artists. Musical direction, vocal coaching and the violin parts are led by Sanna Mansikkaniemi.</p><p>Duration 1 h 45 min (incl. intermission)</p>"
            },
            "name": {
                "fi": "Lauluyhtye Luna & Latinolaulajat – Un Viaje Musical – Musiikkimatka Latinalaiseen Amerikkaan",
                "sv": "Sånggruppen Luna & Latinolaulajat – Un Viaje Musical – En musikalisk resa till Latinamerika",
                "en": "Lauluyhtye Luna & Latinolaulajat – Un Viaje Musical – A musical journey to Latin America"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67447/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67701",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:613/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": 1494020,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T09:12:52.979146Z",
                    "last_modified_time": "2025-12-03T09:12:52.979160Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782444.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494020/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T09:12:52.899946Z",
            "last_modified_time": "2026-03-20T01:13:25.943992Z",
            "date_published": null,
            "start_time": "2026-03-05T16: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": "Miltä maailma ja yhteiskunta näyttävät elokapinalaisen silmin? Saku Soukan dokumenttielokuva vie meidät tapahtumien ytimeen.",
                "sv": "Hur ser världen och samhället ut med en Elokapina-aktivists ögon? Saku Soukkas dokumentärfilm tar oss till händelsernas kärna.",
                "en": "How do the world and society look like through the eyes of a member of Extinction Rebellion? Saku Soukka's documentary film takes us to the heart of the events."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8BF12395807EA5818B044C1469CCDB36/Doc_Helios_Kapina_elaman_puolesta_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8BF12395807EA5818B044C1469CCDB36/Doc_Helios_Kapina_elaman_puolesta_7_",
                "en": "http://www.malmitalo.fi/en/events/event/8BF12395807EA5818B044C1469CCDB36/Doc_Helios_Kapina_elaman_puolesta_7_Rebelling_for_existence"
            },
            "description": {
                "fi": "<p>Miltä maailma ja yhteiskunta näyttävät elokapinalaisen silmin? Saku Soukan dokumenttielokuva vie meidät tapahtumien ytimeen.</p><p>Valokuvataiteilijana tunnetun Saku Soukan esikoiselokuva Kapina elämän puolesta kuvaa Elokapina-yhteisön toimia sisältäpäin. Minkä hinnan yhteiskunnassa vallitsevien käytäntöjen kritisoimisesta joutuu maksamaan? Miltä tuntuu, kun vastassa ovat valtaapitävät viranomaiset ja kovat otteet?</p><p>Pitkä dokumenttielokuva seuraa tapahtumia tiiviisti kahden vuoden ajan niin Lapin aapasuolla kuin Helsingin kaduillakin. Pyrkiessään hillitsemään ilmastokriisiä ja luontokatoa kapinalliset käyttävät omia kehojaan, joilla he blokkaavat tehtaita, tuotantovälineitä ja katuja. Yhteenotot virkavallan kanssa hiertävät, ja kapinalliset joutuvat välillä putkaan, oikeuden eteen ja myös väkivallan kohteeksi.</p><p>Kesto: 80 min<br>Ikäraja: K-7<br>Vapaa pääsy!</p>",
                "sv": "<p>Hur ser världen och samhället ut med en Elokapina-aktivists ögon? Saku Soukkas dokumentärfilm tar oss till händelsernas kärna.</p><p>Fotokonstnären Saku Soukkas debutfilm, Kapina elämän puolesta, skildrar Elokapina-rörelsens verksamhet inifrån. <br>Vilket pris måste man betala för att kritisera rådande praxis i samhället?<br>Hur känns det när man möts av makthavande myndigheter och hårda grepp?</p><p>Den långa dokumentärfilmen följer händelserna intensivt under två års tid både på aapamyren i Lappland och på gatorna i Helsingfors. <br>I ett försök att stävja klimatkrisen och minskningen av den biologiska mångfalden använder rebellerna sina egna kroppar med vilka de blockerar fabriker, produktionsmedel och gator. <br>Sammandrabbningarna med myndigheterna skapar friktion och rebeller hamnar ibland i finkan, ställs inför rätten och utsätts till och med för våld.</p><p>Längd: 80 min.<br>Åldersgräns: K-7<br>Fritt inträde!</p>",
                "en": "<p>How do the world and society look like through the eyes of a member of Extinction Rebellion? Saku Soukka's documentary film takes us to the heart of the events.</p><p>Kapina elämän puolesta, the debut film of Saku Soukka, who is best known as a photographer, depicts the workings of the Elokapina community – the Finnish Extinction Rebellion – from the inside. What is the price they have to pay for criticising the prevailing practices in society? How does it feel when you stand against powerful authorities, facing rough treatment?</p><p>The feature-length documentary film follows events closely over a period of two years, both in the string bogs of Lapland and on the streets of Helsinki. In an effort to mitigate the climate crisis and the loss of biodiversity, these rebels are using their own bodies to block factories, production equipment and streets. Clashes with the authorities bring their own problems, and the rebels are sometimes jailed, tried in court and even subjected to violence.</p><p>Duration: 80 min<br>Age rating: 7<br>Free entry!</p>"
            },
            "name": {
                "fi": "Doc Helios: Kapina elämän puolesta (7)",
                "sv": "Doc Helios: Kapina elämän puolesta (7)",
                "en": "Doc Helios: Kapina elämän puolesta (7) – Rebelling for existence"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67701/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68063",
            "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:616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27260/?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:p5759/?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": 1494720,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-04T14:13:44.705432Z",
                    "last_modified_time": "2026-02-04T14:13:44.705449Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785372.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494720/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-04T14:13:44.596219Z",
            "last_modified_time": "2026-03-20T01:13:25.837861Z",
            "date_published": null,
            "start_time": "2026-03-05T15:00:00Z",
            "end_time": "2026-03-05T16: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": "Mitä jazz muusikoille merkitsee ja miten se värittää heidän omaa ilmaisuaan?"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/21BE096C8F07D8144E47510C253ABBBF/Jazz_Suomi_100_-keskustelu_Jazzin_rajamailla"
            },
            "description": {
                "fi": "<p>Mitä jazz muusikoille merkitsee ja miten se värittää heidän omaa ilmaisuaan?</p><p>Moderaattori:<br>Tuuli Saksala (musiikkitoimittaja, YLE)</p><p>Puhujina muusikot ja musiikintekijät:<br>Teppo Mäkynen<br>Jimi Tenor<br>Mariska<br>Hassan Maikal</p><p>Mitä tapahtuu, kun muusikot liikkuvat yli genre¬rajojen ja lainaavat ideoita toinen toisiltaan? Miten jazz elää, muuttuu ja heijastuu tämän päivän tekijöiden työssä – ja miten eri tyylisuunnista ponnistavat artistit itse sanoittavat suhdettaan jazziin? Keskustelutilaisuudessa sukelletaan jazzin ja muiden musiikin tyylilajien välisiin yhteyksiin, rajapintoihin ja hedelmällisiin törmäyspisteisiin.</p><p>Paneelissa puhutaan jazzista sekä omana traditionaan että avoimena vaikutteiden lähteenä: siitä, mitä jazz muusikoille merkitsee, miten se värittää heidän omaa ilmaisuaan ja millaisia uusia polkuja rajoja ylittävä musiikillinen työskentely voi avata. Keskustelu kulkee joustavasti jazzin ytimistä sen rajamaille – ja ennen kaikkea hyvän musiikin äärelle.</p><p>Keskustelutilaisuuden järjestää Suomen Jazzliitto, Taideyliopisto, Helsingin yliopisto sekä Savoy-teatteri. Keskustelu pidetään Savoy-teatterissa. Vapaa pääsy.</p><p>Ilta jatkuu Andreas Schaerer: A Novel of Anomaly / Sun Mi Hong Quintet -konsertilla klo 19, liput lippu.fi.</p><p>Katso koko Savoy JAZZFestin ohjelma: savoyteatteri.fi</p>"
            },
            "name": {
                "fi": "Jazz Suomi 100 -keskustelu: Jazzin rajamailla – Savoy JAZZFest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Suomen Jazzliitto, Taideyliopisto, Helsingin yliopisto sekä Savoy-teatteri"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68063/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}