Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 32780,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=53",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=51"
    },
    "data": [
        {
            "id": "kulke:67611",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-21006857",
                        "sv": "https://www.lippu.fi/event/name-21006857",
                        "en": "https://www.lippu.fi/event/name-21006857"
                    },
                    "description": null,
                    "price": {
                        "fi": "44 €",
                        "sv": "44 €",
                        "en": "44 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493994,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-02T13:12:54.242473Z",
                    "last_modified_time": "2025-12-02T13:12:54.242491Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782101.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493994/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T12:13:11.347716Z",
            "last_modified_time": "2026-03-20T01:13:29.717516Z",
            "date_published": null,
            "start_time": "2026-03-10T17: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": "Club For Five kotimaisempana kuin koskaan",
                "sv": "Club For Five är mer inhemsk än någonsin",
                "en": "Club For Five more Finnish than ever"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/60CDD44619B0610E030BB5D7A05A1A4F/Club_for_Five_-_Suuret_suomalaiset",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/60CDD44619B0610E030BB5D7A05A1A4F/Club_for_Five_Stora_finlandare",
                "en": "http://www.savoyteatteri.fi/en/events/event/60CDD44619B0610E030BB5D7A05A1A4F/Club_for_Five_Great_Finns"
            },
            "description": {
                "fi": "<p>Club For Five kotimaisempana kuin koskaan</p><p>Tämä konsertti kumoaa lavalle repullisen suomalaisen sydämen kieliä soittavia lauluja eri vuosikymmeniltä. Club For Five pohtii suomalaisuutta omasta näkökulmastaan musiikin ja muistojen kautta. Lauluyhtyeen luotsauksessa matkataan ympäri suomenmaan ja hämmästellään niin kotimaisen musiikin helmiä kuin tulevaisuuden suuruuksia. Konsertti kartoittaa viiden laulajan otannalla, mistä suuret suomalaiset on tehty. Millaista on olla suomalainen.<br> <br>Vanhaa härmäläistä kansanperinnettä tai hassuja hetken villityksiä – suomalaiset sävelet kuvaavat oikeaa elämää, mutta myös rakentavat identiteettiämme ja heijastelevat katajaisen kansamme luonteenpiirteitä. Yhteiseen kulttuuriseen DNA:hamme on tallentunut kaikenlaista Katri-Helenasta Nightwishiin, Dingosta Kuumaa-yhtyeeseen ja Georg Malmsténista Juha-Tapioon. Club For Five käärii kaiken pakettiin luovalla ja yllätyksellisellä otteellaan. Huumori, suuret tunteet ja loisto yhdistyvät tavalla, joka saa kuulijan tuntemaan, että musiikki kiertää suonissa ja sykkii sydämessä. Ihmisäänellä tuotettu a cappella -musiikki ja ainutlaatuinen suomenkieli ovat kuin luodut toisilleen.</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>Club For Five är mer inhemsk än någonsin</p><p>Den här konserten bjuder på en ryggsäck full av låtar från olika decennier, som talar till finländarnas hjärtan. Club For Five reflekterar över finskhet ur sitt eget perspektiv genom musik och minnen. Sånggruppen leder oss på en resa runtom i Finland där vi får förundra oss över pärlor i den inhemska musiken och framtidens storheter. Genom ett urval av fem sångare kartlägger konserten vad de stora finländarna består av. Hur det är att vara finländare.</p><p>Gammal tavastländsk folktradition eller knasiga infall – de finländska tonerna beskriver det verkliga livet, men bygger också upp vår identitet och återspeglar vårt sega folks karaktär. I vårt gemensamma kulturella DNA finns allt från Katri Helena till Nightwish, från Dingo till Kuumaa och Georg Malmstén till Juha Tapio. Club For Five paketerar allt med ett kreativt och överraskande grepp. Humor, stora känslor och briljans kombineras på ett sätt som får dig att känna musiken cirkulera i dina ådror och slå i ditt hjärta. A cappella-musik som skapas med den mänskliga rösten och det unika finska språket är som gjorda för varandra.</p><p>Åldersgräns: Tillåten för alla åldrar</p><p>Längd ca 2 h, inklusive paus.</p>",
                "en": "<p>Club For Five more Finnish than ever</p><p>This concert will bring to the stage a backpack full of songs from different decades that play the strings of the Finnish heart. Club For Five reflects on Finnishness from its own perspective through music and memories. The vocal ensemble’s journey around Finland will involve enjoying past gems of Finnish music and future greats alike. With a selection of five singers, the concert will map out what great Finns are made of. What it is like to be Finnish.</p><p>Old Härmälä folklore or funny whims of the moment – Finnish tunes not only describe real life, but they also build our identity and reflect the character of our resilient people. Our shared cultural DNA includes everything from Katri Helena to Nightwish, Dingo to Kuumaa and Georg Malmstén to Juha Tapio. Club For Five wraps it all up with a creative and surprising approach. Humour, grand emotions and brilliance combine in a way that makes you feel the music circulating through your veins and beating in your heart. A cappella music, produced with the human voice, and the unique Finnish language are a match made in heaven.</p><p>Age rating: suitable for all ages</p><p>Duration: roughly 2 h, incl. intermission</p>"
            },
            "name": {
                "fi": "Club for Five - Suuret suomalaiset",
                "sv": "Club for Five – Stora finländare",
                "en": "Club for Five – Great Finns"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy",
                "sv": "Helmi Promotion Oy",
                "en": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67611/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67486",
            "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/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/",
                        "sv": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/",
                        "en": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29€/27€",
                        "sv": "29€/27€",
                        "en": "29€/27€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494585,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T10:13:40.315010Z",
                    "last_modified_time": "2026-01-21T10:13:40.315028Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781540.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494585/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T10:13:40.193283Z",
            "last_modified_time": "2026-03-20T01:13:29.604614Z",
            "date_published": null,
            "start_time": "2026-03-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin",
                "en": "http://www.malmitalo.fi/en/events/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin"
            },
            "description": {
                "fi": "<p>Finnair Pilots´ Big Band palaa jälleen Malmitaloon upeiden solistien, Sami Pitkämön sekä Sari Tuliniemen kera.</p><p>Sari on pitkän linjan finnairilainen sekä tuttu useimpien big bandien riveistä. Konsertissa kuullaan<br>lennokasta musiikkia, Sami Pitkämön levytyskappaleita sekä hienoja big band -klassikoita.</p><p>Tästä konsertista ei tulkintaa eikä tunnelmaa tule puuttumaan.</p><p>Tervetuloa lennolle!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>"
            },
            "name": {
                "fi": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin",
                "sv": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin",
                "en": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67486/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67467",
            "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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494011,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:08.728071Z",
                    "last_modified_time": "2025-12-03T08:13:08.728117Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781432.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:08.617891Z",
            "last_modified_time": "2026-03-20T01:13:29.382388Z",
            "date_published": null,
            "start_time": "2026-03-10T15: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 mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8156A6A6FB98E2A8741FC66E74D984D8/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8156A6A6FB98E2A8741FC66E74D984D8/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/8156A6A6FB98E2A8741FC66E74D984D8/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67467/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68007",
            "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: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/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"
                }
            ],
            "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": 1574421,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-09T07:12:53.568582Z",
                    "last_modified_time": "2026-03-09T07:12:53.568599Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780426.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1574421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-09T07:12:53.421392Z",
            "last_modified_time": "2026-03-20T01:13:29.262243Z",
            "date_published": null,
            "start_time": "2026-03-10T12: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": "Tarkastellaan antiikin Rooman hygieniaa ja jätehuoltoa.",
                "sv": "En titt på hygien och avfallshantering i antikens Rom.",
                "en": "A look at hygiene and waste management in ancient Rome."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5E3E88DE9C9341FAC1836C363FB693D0/Tyovaenopiston_luento_Puhtaus_lika_ja_jatteet_antiikin_Roomassa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5E3E88DE9C9341FAC1836C363FB693D0/Renlighet_smuts_och_avfall_i_antikens_Rom",
                "en": "http://www.vuotalo.fi/en/events/event/5E3E88DE9C9341FAC1836C363FB693D0/Cleanliness_dirt_and_waste_in_ancient_Rome"
            },
            "description": {
                "fi": "<p>Tarkastellaan antiikin Rooman hygieniaa ja jätehuoltoa.</p><p>Mitä roomalaiset ajattelivat liasta ja puhtaudesta? Millaisia tietoja meillä on roomalaisten jätteistä ja mitä ne kertovat? Rooman kaupungin lisäksi luennolla puhutaan Pompejin ja Ostian kaupungeista sekä piipahdetaan Rooman provinsseissa.</p><p>Luennoitsijana FT Marja-Leena Hänninen.</p><p>Kesto: 1,5 tuntia</p><p>Kieli: suomi</p><p>Vapaa pääsy</p>",
                "sv": "<p>En titt på hygien och avfallshantering i antikens Rom.</p><p>Hur tänkte romarna kring smuts och renlighet? Vad vet vi om romarnas avfall, och vad berättar det för oss? Förutom staden Rom tar föreläsningen upp Pompeji och Ostia, och vi tar också en titt på Roms provinser.</p><p>Föreläsare FD Marja-Leena Hänninen.</p><p>Längd: 1,5 timmar</p><p>Språk: finska</p><p>Fritt inträde</p>",
                "en": "<p>A look at hygiene and waste management in ancient Rome.</p><p>What did the Romans think about dirt and cleanliness? What kind of information do we have about waste in ancient Rome, and what does it tell us? In addition to the city of Rome, the lecture will focus on the cities of Pompeii and Ostia, and briefly on the Roman provinces.</p><p>Lecture given by PhD Marja-Leena Hänninen.</p><p>Duration: 1.5 h</p><p>Language: Finnish</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Työväenopiston luento: Puhtaus, lika ja jätteet antiikin Roomassa",
                "sv": "Renlighet, smuts och avfall i antikens Rom",
                "en": "Cleanliness, dirt and waste in ancient Rome"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68007/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67436",
            "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:104/?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: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/kulke:755/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": 1494078,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:57.641424Z",
                    "last_modified_time": "2025-12-04T13:12:57.641440Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781256.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494078/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:12:57.552301Z",
            "last_modified_time": "2026-03-20T01:13:29.083208Z",
            "date_published": null,
            "start_time": "2026-03-09T16: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": "Hyvällä tai sahalla (Otava 2025). Suomalainen suviyö, mies, nainen – ja saha. Antti Tuomaisen jännäripenkissä syntyy muutakin kuin pientä purua.",
                "sv": "Hyvällä tai sahalla (Otava 2025). En finsk sommarnatt, en man, en kvinna – och en såg. I Antti Tuomainens thriller blir det mer än bara lite spån.",
                "en": "Saw Hard (Otava 2025). A Finnish summer night, a man, a woman – and a sawmill. Antti Tuomainen's suspenseful work leaves behind a great deal more than just sawdust."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3A95DDD1FCA2C0130B3642A09003468D/Kirjailijavieraana_Antti_Tuomainen_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3A95DDD1FCA2C0130B3642A09003468D/Forfattarbesok_Antti_Tuomainen_",
                "en": "http://www.kanneltalo.fi/en/events/event/3A95DDD1FCA2C0130B3642A09003468D/_Guest_author_Antti_Tuomainen_"
            },
            "description": {
                "fi": "<p>Hyvällä tai sahalla (Otava 2025). Suomalainen suviyö, mies, nainen – ja saha. Antti Tuomaisen jännäripenkissä syntyy muutakin kuin pientä purua.</p><p>Heikki, rahavaikeuksissa kamppaileva sahayrittäjä, saa kylän pikkugangsterilta Sipolta karmivan tehtävän: jos Heikki haluaa pitää perintösahansa, hänen tulee hankkiutua eroon Sipon vaimon ruumiista. Heikki järkyttyy, mutta lähtee ajamaan Annaleena takapenkillä. Seuraava järkytys koittaa kotipihassa: ruumis ei olekaan aivan niin ruumis kuin Heikki luuli.</p><p>Kun belgialainen ostaja paukkaa paikalle tarkastamaan sahan tuotteiden laatua, Heikki tekee kaikkensa pitääkseen hämärähommat piilossa. Sahan työntekijöillä on kuitenkin aivan omat metkut mielessään.</p><p>Antti Tuomainen on Suomen kansainvälisesti menestyneimpiä nykykirjailijoita. Tuomainen on voittanut Vuoden johtolanka -palkinnon, ja hänen teoksiaan on julkaistu yli 30 maassa. Jäniskerroin-romaanista on tekeillä Hollywood-elokuva ja Pikku Siperiasta Netflix-elokuva, joka ilmestyi 2025.</p><p>Antti Tuomaista haastattelee FM Tuija Takala.<br>Vapaa pääsy</p>",
                "sv": "<p>Hyvällä tai sahalla (Otava 2025). En finsk sommarnatt, en man, en kvinna – och en såg. I Antti Tuomainens thriller blir det mer än bara lite spån.</p><p>Heikki, en sågföretagare som kämpar med ekonomiska problem, får en fasansfull uppgift av byns smågangster Sippo: om Heikki vill behålla sin ärvda såg måste han göra sig av med Sippos frus kropp. Heikki blir chockad, men kör iväg med Annaleena i baksätet. Nästa chock kommer hemma på gården: kroppen är inte riktigt så död som Heikki trodde.</p><p>När en belgisk köpare dyker upp för att kontrollera kvaliteten på sågens produkter gör Heikki allt för att dölja de skumma affärerna. Arbetarna på sågen har dock en helt egen agenda.</p><p>Antti Tuomainen hör till Finlands internationellt mest framgångsrika samtida författare. Tuomainen har vunnit Årets ledtråd-priset, och hans verk har getts ut i över 30 länder. Romanen Kaninfaktorn ska bli Hollywoodfilm och Lilla Sibirien kom som Netflix-film 2025.<br>Antti Tuomainen intervjuas av FM Tuija Takala.</p><p>Fritt inträde</p>",
                "en": "<p>Saw Hard (Otava 2025). A Finnish summer night, a man, a woman – and a sawmill. Antti Tuomainen's suspenseful work leaves behind a great deal more than just sawdust.</p><p>Heikki, a struggling sawmill owner, is given a grisly task by the village gangster Sippo: if Heikki wants to keep his inherited saw, he must get rid of the body of Sippo's wife. Heikki is shocked, but starts off with Annaleena in the back seat. The next shock comes in the backyard: the body is not quite the corpse Heikki thought it was.</p><p>When a Belgian buyer drops by to check the quality of the sawmill's products, Heikki does everything he can to keep the shady dealings under wraps. But the sawmill workers have their own agenda.</p><p>Antti Tuomainen is one of Finland's most internationally successful contemporary writers. Tuomainen has won the Clew of the Year award, and his works have been published in more than 30 countries. His The Rabbit Factor novel is the subject of an upcoming Hollywood film, and Little Siberia was made into a 2025 Netflix movie.<br>Antti Tuomainen will be interviewed by M.A. Tuija Takala.</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Antti Tuomainen – Maksuttomat maanantait",
                "sv": "Författarbesök: Antti Tuomainen – Avgiftsfria måndagar",
                "en": "Guest author Antti Tuomainen – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67436/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68016",
            "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: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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api"
            },
            "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": 1494621,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T09:12:49.298049Z",
                    "last_modified_time": "2026-01-26T09:12:49.298062Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777679.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494621/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T09:12:49.194222Z",
            "last_modified_time": "2026-03-20T01:13:28.972752Z",
            "date_published": null,
            "start_time": "2026-03-09T14:00:00Z",
            "end_time": "2026-03-09T16: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": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.",
                "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.",
                "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/39BFE36CA6FF906062F429AA4A071A37/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/39BFE36CA6FF906062F429AA4A071A37/Eftermiddagar_planerade_av_unga",
                "en": "http://www.vuotalo.fi/en/events/event/39BFE36CA6FF906062F429AA4A071A37/Afternoons_planned_by_young_people"
            },
            "description": {
                "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>",
                "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>",
                "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>"
            },
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi",
                "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi",
                "en": "Afternoons planned by young people – Operation Pulse!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68016/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67829",
            "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/kulke:732/?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:p1278/?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:p39924/?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://holvi.com/shop/tsonehelsinki/section/enter-the-tsone/",
                        "sv": "https://holvi.com/shop/tsonehelsinki/section/enter-the-tsone/",
                        "en": "https://holvi.com/shop/tsonehelsinki/section/enter-the-tsone/"
                    },
                    "description": null,
                    "price": {
                        "fi": "35 € / 32 € / 10 €",
                        "sv": "35 € / 32 € / 10 €",
                        "en": "35 € / 32 € / 10 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1497383,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-02T11:12:49.257275Z",
                    "last_modified_time": "2026-03-02T11:12:49.257287Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780656.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1497383/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-02T11:12:49.127692Z",
            "last_modified_time": "2026-03-20T01:13:28.828036Z",
            "date_published": null,
            "start_time": "2026-03-08T10:00:00Z",
            "end_time": "2026-03-08T15: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 kansainvälinen katu- ja klubitanssifestivaali.",
                "en": "Enter the Tsone is an international street and club dance festival by Tsone Helsinki."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DFBA724B69079745148DDE1706F7A9C7/Enter_the_Tsone",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DFBA724B69079745148DDE1706F7A9C7/Enter_the_Tsone",
                "en": "http://www.stoa.fi/en/events/event/DFBA724B69079745148DDE1706F7A9C7/Enter_the_Tsone"
            },
            "description": {
                "fi": "<p>Enter the Tsone on Tsone Helsingin kansainvälinen katu- ja klubitanssifestivaali.</p><p>Enter the Tsone-paneelikeskustelu ja työpajat järjestetään sunnuntaina 8.3. klo 11–17 Stoan teatteri- ja musiikkisalissa.</p><p><b>Paneelikeskustelu</b><br>Tapahtuman kansainväliset taitelijavieraat Sophie May ja Tatiana Desardouin keskustelevat taiteilijuudestaan, freestylen ja koreografian yhtymäkohdista ja eroavaisuuksista ja kokemuksistaan hip hop -kentällä toimimisesta erityisesti naiseuden näkökulmasta. Yleisö pääsee myös esittämään kysymyksiä.</p><p>Paneelikeskusteluun voi ostaa paikan etukäteen osoitteessa: https://holvi.com/shop/tsonehelsinki</p><p><b>Työpajat</b><br>Tapahtumaan sisältyy kolme avoimen tason työpajaa (emme suosittele työpajoja vasta-alkajille). Työpajoja ohjaavat kansainväliset taiteilijavieraat Sophie May ja Tatiana Desardouin.</p><p>Työpajojen aikataulu sunnuntaina 8.3.:<br>• 12.30-14.00 hiphop, Sophie May<br>• 14.00-15.30 hiphop, Tatiana Desardouin<br>• 15.30-17.00 house, Tatiana Desardouin</p><p>Työpajoihin voi ostaa paikan etukäteen osoitteessa: https://holvi.com/shop/tsonehelsinki</p>",
                "en": "<p>Enter the Tsone is an international street and club dance festival by Tsone Helsinki.</p><p>Panel discussion and workshops will be held on Sunday 8.3. at 11-17 in Stoa Theater and Music hall.</p><p><b>Panel discussion</b><br>The event’s international artists Sophie May and Tatiana Desardouin discuss their work as dancers and choreographers, the intersections of choreography and freestyle, their perspectives on being a woman within hiphop culture, and how we can make street & club dance spaces more inclusive.</p><p>Get your ticket to the panel discussion in https://holvi.com/shop/tsonehelsinki</p><p><b>Workshops</b><br>3 workshops for open levels (not recommended for total beginners) with Sophie May and Tatiana Desardouin:<br>• 12.30-14.00 hiphop with Sophie May<br>• 14.00-15.30 hiphop with Tatiana Desardouin<br>• 15.30-17.00 house with Tatiana Desardouin</p><p>Get your ticket to the workshops in https://holvi.com/shop/tsonehelsinki</p>"
            },
            "name": {
                "fi": "Enter the Tsone – Paneelikeskustelu ja työpajat",
                "sv": "Enter the Tsone",
                "en": "Enter the Tsone – Panel discussion and workshops"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67829/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "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:67676",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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/yso:p1278/?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": 1493978,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-01T13:14:17.175988Z",
                    "last_modified_time": "2025-12-01T13:14:17.176002Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782325.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493978/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-01T13:14:17.078142Z",
            "last_modified_time": "2026-03-20T01:13:27.475040Z",
            "date_published": null,
            "start_time": "2026-03-07T12: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 liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!",
                "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!",
                "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FAD5B6E17FCEBEE7AE1A61BD5DB11324/Kaikkien_lasten_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/FAD5B6E17FCEBEE7AE1A61BD5DB11324/Danslektion_for_alla_barn",
                "en": "http://www.annantalo.fi/en/events/event/FAD5B6E17FCEBEE7AE1A61BD5DB11324/All_children_s_dance_class"
            },
            "description": {
                "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>",
                "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>",
                "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>"
            },
            "name": {
                "fi": "Kaikkien lasten tanssitunti – kaikenikäisille",
                "sv": "Danslektion för alla barn – för alla åldrar",
                "en": "All children's dance class – for all ages"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67676/?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"
        }
    ]
}