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/?division=malmi&format=api&page=4
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 1627,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=5",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=3"
    },
    "data": [
        {
            "id": "kulke:67478",
            "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-4044935",
                        "sv": "https://www.lippu.fi/eventseries/name-4044935",
                        "en": "https://www.lippu.fi/eventseries/name-4044935"
                    },
                    "description": null,
                    "price": {
                        "fi": "19,80€/24,80€",
                        "sv": "19,80€/24,80€",
                        "en": "19,80€/24,80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494099,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T09:12:53.509739Z",
                    "last_modified_time": "2025-12-05T09:12:53.509756Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781454.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494099/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T09:12:53.371858Z",
            "last_modified_time": "2026-03-20T01:13:55.462119Z",
            "date_published": null,
            "start_time": "2026-04-08T16: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": "Tervetuloa kokemaan Blues Bizarren levyjulkkarikeikka Malmitalolla – varaudu outoon mutta voimaannuttavaan kokemukseen!",
                "sv": "Välkommen att uppleva Blues Bizarrs skivsläpp i Malms kulturhus – förbered dig på en märklig men kraftgivande upplevelse!",
                "en": "Welcome to Blues Bizarre's album release gig at Cultural Centre Malmitalo – prepare for a strange yet empowering experience!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F681D6CCD3E589A8578F8306E537ECC/Blues_Bizarre",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9F681D6CCD3E589A8578F8306E537ECC/Blues_Bizarre",
                "en": "http://www.malmitalo.fi/en/events/event/9F681D6CCD3E589A8578F8306E537ECC/Blues_Bizarre"
            },
            "description": {
                "fi": "<p>Tervetuloa kokemaan Blues Bizarren levyjulkkarikeikka Malmitalolla – varaudu outoon mutta voimaannuttavaan kokemukseen!</p><p>Blues Bizarren toinen levy räjäyttää pankin vielä kovempaa kuin edellinen. Levyä saa vuoroin kuunnella suu auki sen nerokkuutta ja taidokkuutta ihaillen ja vuoroin nauraen ja ihmetellen sen tarjoamia hulluja ideoita. Toisella levyllään yhtye jatkaa omaa rajoja rikkovaa tyyliään sekoittaen perinteisen juurevan bluesin kanssa vaikutteita aina itämaisista sävyistä psykedeeliseen bluesiin.</p><p>Blues Bizarrea voidaan pitää suomalaisen modernin bluesin lipunkantajana. Nuoren sukupolven uraa uurtavista muusikoista koostuva yhtye on kiinnittänyt puolelleen huomiota bluespiireissä sen perustusvuodesta 2021 asti, ja Blues Bizarre nähtiinkin muun muassa Puistobluesin pääkonsertissa kesällä 2025. Yhtyeen keulan muodostavat karismaattinen laulaja-kitaristi Sylvi Saarekas ja slidekitaran mestarina tunnettu Marko Karppi. Tiiviisti toimivasta komppiryhmästä löytyvät rumpali Leevi Heikkilä ja basisti Nikolas Rissanen.</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Välkommen att uppleva Blues Bizarrs skivsläpp i Malms kulturhus – förbered dig på en märklig men kraftgivande upplevelse!</p><p>Blues Bizarres andra album överraskar ännu hårdare än det föregående. Man får turvis lyssna på albumet med gapande mun i beundran över dess genialitet och skicklighet samt turvis skrattande och förundrande över de galna idéer som det bjuder på. På sitt andra album fortsätter bandet sin gränsöverskridande stil och blandar traditionell rootsig blues med intryck som sträcker sig från orientaliska toner till psykedelisk blues.</p><p>Blues Bizarre kan betraktas som banbrytare för den finska moderna bluesmusiken. Bandet består av banbrytande unga musiker och det har väckt uppmärksamhet i blueskretsarna sedan 2021 då bandet grundades, och Blues Bizarre sågs på huvudkonserten i Puistoblues sommaren 2025. Bandet leds av den karismatiska sångaren och gitarristen Sylvi Saarekas och Marko Karppi, känd som mästare på slidegitarr. Det sammansvetsade bandet omfattar också trummisen Leevi Heikkilä och basisten Nikolas Rissanen.</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>",
                "en": "<p>Welcome to Blues Bizarre's album release gig at Cultural Centre Malmitalo – prepare for a strange yet empowering experience!</p><p>The second album by Blues Bizarre blows off the roof even harder than their previous one. At times, you will listen to this album with your mouth agape in admiration of its ingenuity and skill, and at times you will laugh and marvel at its range of crazy ideas. On their second album, the band stays true to their boundary-breaking style, mixing traditional deep-rooted blues with influences ranging from oriental tones to psychedelic blues.</p><p>Blues Bizarre could be said to be the flagship of Finnish modern blues. The band, made up of trailblazing musicians of the younger generation, has been attracting attention in the blues circles since its founding in 2021, and it was one of the performers of the main concert of Puistoblues in summer 2025. The band is fronted by the charismatic singer-guitarist Sylvi Saarekas and Marko Karppi, known as a master of slide guitar. The tight-knit band also includes drummer Leevi Heikkilä and bassist Nikolas Rissanen.</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>"
            },
            "name": {
                "fi": "Blues Bizarre – Roots-musiikin evoluutio",
                "sv": "Blues Bizarre – Roots-musikens evolution",
                "en": "Blues Bizarre – The evolution of roots music"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67478/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67394",
            "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-orava-malmitalo-21468709/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468709/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468709/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672534,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T11:14:32.236408Z",
                    "last_modified_time": "2026-03-19T11:14:32.236424Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781083.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T11:14:32.133821Z",
            "last_modified_time": "2026-03-20T01:13:55.345656Z",
            "date_published": null,
            "start_time": "2026-04-08T15: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/381C11B17BF318BC73C3DC31ABEDAAE6/_Orava_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/381C11B17BF318BC73C3DC31ABEDAAE6/_Orava_12_",
                "en": "http://www.malmitalo.fi/en/events/event/381C11B17BF318BC73C3DC31ABEDAAE6/_Orava_12_"
            },
            "description": {
                "fi": "<p>Orava on absurdi tarina Pasista, yksinäisestä mutta hyväsydämisestä keinotekoisten eläinten suunnittelijasta, joka elää maailmassa, missä luonto on vain muisto ja ihmisen hyvinvointi on järjestetty jopa liiankin huolellisesti.</p><p>Eräänä päivänä Pasi (Miro Lopperi) löytää sattumalta maailman viimeisen elävän oravan, ja kohtaa samalla Emilian (Mimosa Willamo), hyvinvoinnin sääntökirjaa valvovan viranomaisen. Pasi päättää uhmata yhteiskunnan sääntöjä ja auttaa oravaa, mutta tapahtuu jotain odottamatonta – orava masentuu ja Pasi rakastuu.</p><p>7.5. klo 13 HopeaCine-näytöksessä mukana tekijävieras.</p><p>Ikäraja: 12<br>Kesto: 93 min<br>Ensi-ilta: 02.04.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orava (12) – Kino Helios",
                "sv": "Orava (12) – Kino Helios",
                "en": "Orava (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67393",
            "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-the-wizard-of-the-kremlin-malmitalo-21468696/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468696/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672530,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T11:14:16.783765Z",
                    "last_modified_time": "2026-03-19T11:14:16.783781Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781082.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672530/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T11:14:16.626799Z",
            "last_modified_time": "2026-03-20T01:13:54.960955Z",
            "date_published": null,
            "start_time": "2026-04-08T12: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/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/40E7DFEDD706530E2D3485FDC0CD4329/The_Wizard_of_The_Kremlin_12_"
            },
            "description": {
                "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "The Wizard of The Kremlin (12) – Kino Helios",
                "sv": "The Wizard of The Kremlin (12) – Kino Helios",
                "en": "The Wizard of The Kremlin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67393/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68174",
            "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/veljekset-sydanmetsa-malmitalo-21404846/",
                        "sv": "https://www.lippu.fi/event/veljekset-sydanmetsa-malmitalo-21404846/",
                        "en": "https://www.lippu.fi/event/veljekset-sydanmetsa-malmitalo-21404846/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 €",
                        "sv": "24,80 €",
                        "en": "24,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1543514,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-06T13:13:03.180648Z",
                    "last_modified_time": "2026-03-06T13:13:03.180662Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785975.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1543514/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-06T13:13:03.053710Z",
            "last_modified_time": "2026-03-20T01:13:54.233450Z",
            "date_published": null,
            "start_time": "2026-04-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": "Veljekset Sydänmetsä feat. Parcus Majakkala & Friends nähdään Malmitalossa kahden setin erikoiskeikalla!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FF8005FDFE36F6D542DC4DF4CD511A18/Veljekset_Sydanmetsa",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FF8005FDFE36F6D542DC4DF4CD511A18/Veljekset_Sydanmetsa",
                "en": "http://www.malmitalo.fi/en/events/event/FF8005FDFE36F6D542DC4DF4CD511A18/Veljekset_Sydanmetsa"
            },
            "description": {
                "fi": "<p>Veljekset Sydänmetsä feat. Parcus Majakkala & Friends nähdään Malmitalossa kahden setin erikoiskeikalla!</p><p>Akustiseenkin sävyyn taipuva Veljekset Sydänmetsä täyttää tänä vuonna vuosia, ja on aiheellista juhlistaa isoja rajapyykkejä monin eri tavoin. Yhtyeen kitaristi Keijo V Sydänmetsä kertoo illasta:</p><p>”Odotamme tätä Malmitalon erikoiskeikkaa kuin kuuta nousevaa sillä settilista tulee olemaan talvinen ja sydänmetsän sininen - täpötäynnä musiikkia. Paljon on pedattu myös Parcus Majakkalan tuohitorvien varaan.</p><p>Myös yllätysvierailijoita saattaa ilmestyä lavalle. Tervetuloa!”.</p><p>Veljekset Sydänmetsän musiikki on taidokasta ja kansainvälisesti tunnustettua.</p><p>Kesto: 2 t 30 min, sis 20 min väliajan</p>"
            },
            "name": {
                "fi": "Veljekset Sydänmetsä",
                "sv": "Veljekset Sydänmetsä",
                "en": "Veljekset Sydänmetsä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68174/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67587",
            "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/maria-ylipaa-ystavat-malmitalo-20915451/",
                        "sv": "https://www.lippu.fi/event/maria-ylipaa-ystavat-malmitalo-20915451/",
                        "en": "https://www.lippu.fi/event/maria-ylipaa-ystavat-malmitalo-20915451/"
                    },
                    "description": null,
                    "price": {
                        "fi": "32 € / 27 €",
                        "sv": "32 € / 27 €",
                        "en": "32 € / 27 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-25T14:13:14.583733Z",
                    "last_modified_time": "2025-11-25T14:13:14.583749Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781977.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493908/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-25T14:13:14.468100Z",
            "last_modified_time": "2026-03-20T01:13:53.276569Z",
            "date_published": null,
            "start_time": "2026-04-01T16: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": "Monipuolisena näyttelijänä ja laulajana tunnettu Maria Ylipää tarjoaa unelmatrionsa kanssa suuria tunteita ja vaihtuvia tunnelmia sisältävän konsertin.",
                "sv": "Maria Ylipää, som är känd som en mångsidig skådespelerska och sångerska, bjuder tillsammans med sin drömtrio på en konsert med stora känslor och växlande stämningar.",
                "en": "Maria Ylipää, well known as a versatile actress and singer, and her dream trio offer a concert full of grand emotions and changing moods."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A57B14204AB4D671D81257DFFA09272D/Maria_Ylipaa_Ystavat",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A57B14204AB4D671D81257DFFA09272D/Maria_Ylipaa_Vanner",
                "en": "http://www.malmitalo.fi/en/events/event/A57B14204AB4D671D81257DFFA09272D/Maria_Ylipaa_Friends"
            },
            "description": {
                "fi": "<p>Monipuolisena näyttelijänä ja laulajana tunnettu Maria Ylipää tarjoaa unelmatrionsa kanssa suuria tunteita ja vaihtuvia tunnelmia sisältävän konsertin.</p><p>Konsertti koostuu estradi- ja teatterimusiikin klassikoista sekä sävelletystä suomalaisesta runoudesta. Illan aikana kuullaan taiturimaisia, intohimoisia ja sielukkaita tulkintoja mm. Édith Piafin ja Jacques Brelin tunnetuksi tekemiä chansoneita, saksalaista kabareemusiikkia elokuvasäveltäjä Friedrich Hollaenderin kynästä, suomalaista runoutta Anna-Mari Kähärän säveltämänä sekä otteita Marzi Nymanin Marialle ja harmonikkataiteilija Niko Kumpuvaaralle säveltämästä laulusarjasta.</p><p>Kokoonpano:<br>Maria Ylipää, laulu<br>Niko Kumpuvaara, harmonikka<br>Marzi Nyman, kitara<br>Ville Herrala, kontrabasso</p><p>Kesto: 1 t 15 min</p>",
                "sv": "<p>Maria Ylipää, som är känd som en mångsidig skådespelerska och sångerska, bjuder tillsammans med sin drömtrio på en konsert med stora känslor och växlande stämningar.</p><p>Konserten består av klassiker från estrad- och teatermusiken samt tonsättningar av finsk poesi. Under kvällen får vi höra skickliga, passionerade och själfulla tolkningar av bland annat chansoner som populariserats av Édith Piaf och Jacques Brel, tysk kabarémusik från filmkompositören Friedrich Hollaenders penna, finsk poesi som tonsatts av Anna-Mari Kähärä samt utdrag ur Marzi Nymans serie av sånger för Maria och dragspelskonstnären Niko Kumpuvaara.</p><p>Sammansättning:<br>Maria Ylipää, sång<br>Niko Kumpuvaara, dragspel<br>Marzi Nyman, gitarr<br>Ville Herrala, kontrabas<br>Längd: 1 h 15 min.</p>",
                "en": "<p>Maria Ylipää, well known as a versatile actress and singer, and her dream trio offer a concert full of grand emotions and changing moods.</p><p>The concert consists of stage and theatre music classics and Finnish poetry set to music. The evening will feature skilful, passionate and soulful interpretations of music such as chansons made famous by Édith Piaf and Jacques Brel, German cabaret music penned by film composer Friedrich Hollaender, Finnish poetry set to music by Anna-Mari Kähärä, and excerpts from a series of songs composed by Marzi Nyman for Maria and accordionist Niko Kumpuvaara.</p><p>Line-up:<br>Maria Ylipää, vocals<br>Niko Kumpuvaara, accordion<br>Marzi Nyman, guitar<br>Ville Herrala, double bass</p><p>Duration: 1 hour 15 min</p>"
            },
            "name": {
                "fi": "Maria Ylipää & Ystävät",
                "sv": "Maria Ylipää & Vänner",
                "en": "Maria Ylipää & Friends"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67392",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21468598/",
                        "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21468598/",
                        "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21468598/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1671704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T09:14:19.971128Z",
                    "last_modified_time": "2026-03-19T09:14:19.971145Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781080.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1671704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T09:14:19.820184Z",
            "last_modified_time": "2026-03-20T01:13:52.824369Z",
            "date_published": null,
            "start_time": "2026-04-01T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/76D6D1B2B74DA7F9AA62CF98D451809D/EPiC_Elvis_Presley_in_Concert_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/76D6D1B2B74DA7F9AA62CF98D451809D/EPiC_Elvis_Presley_in_Concert_7_",
                "en": "http://www.malmitalo.fi/en/events/event/76D6D1B2B74DA7F9AA62CF98D451809D/EPiC_Elvis_Presley_in_Concert_7_"
            },
            "description": {
                "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita. Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: 7<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "EPiC: Elvis Presley in Concert (7) – Kino Helios",
                "sv": "EPiC: Elvis Presley in Concert (7) – Kino Helios",
                "en": "EPiC: Elvis Presley in Concert (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67392/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67391",
            "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-kaunis-rietas-onnellinen-malmitalo-21468588/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-kaunis-rietas-onnellinen-malmitalo-21468588/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-kaunis-rietas-onnellinen-malmitalo-21468588/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1671703,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T09:14:19.486975Z",
                    "last_modified_time": "2026-03-19T09:14:19.486991Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781079.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1671703/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T09:14:19.348340Z",
            "last_modified_time": "2026-03-20T01:13:52.532335Z",
            "date_published": null,
            "start_time": "2026-04-01T12: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/0CE4CDAA61B2A816D962F90B7E2EEBD2/Kaunis_rietas_onnellinen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0CE4CDAA61B2A816D962F90B7E2EEBD2/Kaunis_rietas_onnellinen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/0CE4CDAA61B2A816D962F90B7E2EEBD2/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. 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:67391/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67586",
            "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: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: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: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/nykytanssin-ilta-malmitalo-21276554/",
                        "sv": "https://www.lippu.fi/event/nykytanssin-ilta-malmitalo-21276554/",
                        "en": "https://www.lippu.fi/event/nykytanssin-ilta-malmitalo-21276554/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17,70 € / 11 €",
                        "sv": "17,70 € / 11 €",
                        "en": "17,70 € / 11 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T08:13:15.334863Z",
                    "last_modified_time": "2026-02-20T08:13:15.334913Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781975.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-20T08:13:15.143820Z",
            "last_modified_time": "2026-03-20T01:13:52.242065Z",
            "date_published": null,
            "start_time": "2026-03-31T15: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": "Tanssikoulu Tanssilan nykytanssin edustustiimien sekä nykytanssin teosryhmä Eclipsen nuoret esiintyvät.",
                "sv": "Tanssikoulu Tanssilas representationsteam för nutidsdans och nutidsdansteamet Eclipses ungdomar (Eclipsen nuoret) uppträder.",
                "en": "Performance by the young people of Tanssikoulu Tanssila dance school’s contemporary dance representation teams and the contemporary dance group Eclipse."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/479FAB9E953ECB2541518B17FDBEE7C1/Nykytanssin_ilta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/479FAB9E953ECB2541518B17FDBEE7C1/En_kvall_med_nutidsdans",
                "en": "http://www.malmitalo.fi/en/events/event/479FAB9E953ECB2541518B17FDBEE7C1/Evening_of_contemporary_dance"
            },
            "description": {
                "fi": "<p>Tanssikoulu Tanssilan nykytanssin edustustiimien sekä nykytanssin teosryhmä Eclipsen nuoret esiintyvät.</p><p>Noin kuusikymmentä nuorta (9–18 v) pääsevät näyttämään taitonsa ja taiteellisen kunnianhimonsa Malmisalin lavalla 31.3.2026 Nykytanssin illassa. Syksystä 2025 alkaen työstetyt koreografiat nivoutuvat yhteiseksi teosillaksi.</p><p>Illan aikana nähdään neljä eri teoskokonaisuutta.</p><p>Safiirit: Where the light shines, koreografia Lara Müller \"Where the light shines\" on teos, joka kiinnittää huomiota tanssijoille juuri sillä hetkellä tärkeisiin aiheisiin, tunteisiin, ihmisiin ja esineisiin. Mihin keskitymme jokapäiväisessä elämässämme? Mitä haluamme muistaa päivän päätteeksi? Mikä todella on tärkeää?</p><p>Tanssijat: Estelle Miettinen, Fanni Nevalainen, Hilla Ikävalko, Iris Peltonen, Isa Häggström, Isla Evers, Lilia Nyman, Mirjami Kyntäjä, Selma Lumatjärvi, Sofia Salli, Sylvia Harju, Vivia Huovilainen</p><p>Ametistit: It lives inside of us, koreografia Lara Müller \"It lives inside of us\" on teos olennosta, joka elää meissä kaikissa. Mitä tapahtuu, jos se pääsee esiin? Innostaako se muita tulemaan esiin? Mitä tapahtuu, jos yksi olento kohtaa toisen? Miten käyttäydymme eri tavalla? Miten voimme piilottaa sen takaisin sisäämme?</p><p>Tanssijat: Aada Venäläinen, Alexandra Rautiainen, Aurora Miettinen, Eevi Paasikivi, Emmi Lintonen, Iiris Käkelä, Ilona Tuores, Isabella Koskela, Isla Koskelainen, Kaarina Kyntäjä, Klaara Karjalainen, Kumba Gueye, Leea Nyman, Lilja Tiilikainen, Louna Väänänen, Salla Polojärvi, Siiri Laine, Sonja Ollila, Vera Kronvall, Viena Peltola, Vilma Kaukonen</p><p>Smaragdit: Peli Piip, koreografia Venla Lehto ”Nää menis nyt kauppaan, oikea käsi vihreälle, hippa!” Nykytanssitiimi Smaragdien kanssa työstetty teos ”Peli piip” on inspiroitunut tanssijoiden omista lapsuuden leikeistä ja peleistä. Leikki ja esittävä taide pohjautuvat molemmat mielikuvitukseen ja heittäytymiseen. Missä kulkee leikin ja taiteen raja? Onko raja välttämätön?</p><p>Tanssijat: Adalia Kokki, Aino Kaipainen, Anna Valtonen, Aurora Linder, Effi Lindström, Elsa Lindberg, Emma Lindberg, Erika Koskinen, Ilona Jahkola, Inka Blom, Lilja Häggström, Maj Peltonen, Matilda Harju, Matleena Toivanen, Mimosa Hellen, Nea Velander, Niia Sergejeff, Noomi Ochsner, Venla Sarkkola, Vilja Kylmälä, Vivi Wolff</p><p>Eclipse: Playground, koreografia Karoliina Papinoja</p><p>Eclipsen Playground on tanssiteos kasvusta, muistoista ja siitä välitilasta, jossa olemme vähän kaikkea – ja ehkä juuri siksi niin paljon. Playground on matka uudenlaisen leikin, kaipuun ja itsensä etsimisen maisemaan. Teos hengittää ja hengästyttää jossain leikin, rakkauden ja identiteetin etsinnän välimaastossa.</p><p>Tanssijat: Alina Borg, Sophie Hartikainen, Nora Hentunen, Noora Nagatsu, Vela Raulo, Kerttu Wilska.</p><p>Kesto: 2 t, sis 20 min väliajan</p>",
                "sv": "<p>Tanssikoulu Tanssilas representationsteam för nutidsdans och nutidsdansteamet Eclipses ungdomar (Eclipsen nuoret) uppträder.</p><p>Ett sextiotal ungdomar (9–18 år) får chansen att visa upp sina färdigheter och konstnärliga ambitioner på scenen i Malmsalen den 31 mars 2026 under evenemanget En kväll med nutidsdans. Koreografierna som utarbetats på hösten 2025 knyts samman till en gemensam danskväll.</p><p>Under kvällen ses fyra olika temahelheter.</p><p>Safirer: Where the light shines, koreografi av Lara Müller. ”Where the light shines” är ett verk som riktar uppmärksamheten mot teman, känslor, människor och föremål som är viktiga för dansarna just i det ögonblicket. Vad fokuserar vi på i våra dagliga liv? Vad vill vi minnas i slutet av dagen? Vad är egentligen viktigt? Dansare: Estelle Miettinen, Fanni Nevalainen, Hilla Ikävalko, Iris Peltonen, Isa Häggström, Isla Evers, Lilia Nyman, Mirjami Kyntäjä, Selma Lumatjärvi, Sofia Salli, Sylvia Harju, Vivia Huovilainen.</p><p>Ametister: It lives inside of us, koreografi av Lara Müller. ”It lives inside of us” är ett verk om en varelse som lever inom oss alla. Vad händer om den kommer fram? Inspirerar det andra att träda fram? Vad händer om en varelse möter en annan? Hur beter vi oss annorlunda? Hur kan vi åter gömma varelsen inom oss?</p><p>Dansare: Aada Venäläinen, Alexandra Rautiainen, Aurora Miettinen, Eevi Paasikivi, Emmi Lintonen, Iiris Käkelä, Ilona Tuores, Isabella Koskela, Isla Koskelainen, Kaarina Kyntäjä, Klaara Karjalainen, Kumba Gueye, Leea Nyman, Lilja Tiilikainen, Louna Väänänen, Salla Polojärvi, Siiri Laine, Sonja Ollila, Vera Kronvall, Viena Peltola, Vilma Kaukonen.</p><p>Smaragder: Peli Piip, koreografi av Venla Lehto ”De här skulle nu gå till affären, höger hand på grönt, tafatt!” Verket ”Peli piip”, som skapats tillsammans med nutidsdansteamet Smaragderna, har inspirerats av dansarnas egna barndomslekar och -spel. Både lek och scenkonst bygger på fantasi och inlevelse. Var går gränsen mellan lek och konst? Är gränsen nödvändig?</p><p>Dansare: Adalia Kokki, Aino Kaipainen, Anna Valtonen, Aurora Linder, Effi Lindström, Elsa Lindberg, Emma Lindberg, Erika Koskinen, Ilona Jahkola, Inka Blom, Lilja Häggström, Maj Peltonen, Matilda Harju, Matleena Toivanen, Mimosa Hellen, Nea Velander, Niia Sergejeff, Noomi Ochsner, Venla Sarkkola, Vilja Kylmälä, Vivi Wolff.</p><p>Eclipse: Playground, koreografi av Karoliina Papinoja</p><p>Eclipses Playground är ett dansverk om uppväxt, minnen och mellanrummet där vi är lite av allt – och kanske just därför så vagt. Playground är en resa in i ett nytt landskap av lek, längtan och självupptäckt. Verket andas och gör en anfådd någonstans i gränsområdet mellan lek, kärlek och sökandet efter identitet.</p><p>Dansare: Alina Borg, Sophie Hartikainen, Nora Hentunen, Noora Nagatsu, Vela Raulo, Kerttu Wilska.</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>",
                "en": "<p>Performance by the young people of Tanssikoulu Tanssila dance school’s contemporary dance representation teams and the contemporary dance group Eclipse.</p><p>Around sixty young people (aged 9–18) will have the chance to show off their skills and artistic ambition on stage at Malmi Hall on 31 March 2026 in an evening of contemporary dance. These choreographies have been under preparation since autumn 2025, and will now be seen together during this one event.</p><p>The evening will feature four different sets of works.</p><p>Safiirit: Where the light shines, choreography by Lara Müller ‘Where the light shines’ is a work that draws attention to themes, emotions, people and objects that are important to dancers themselves at that moment. What do we focus on in our daily lives? What do we want to remember at the end of the day? What is actually important?</p><p>Dancers: Estelle Miettinen, Fanni Nevalainen, Hilla Ikävalko, Iris Peltonen, Isa Häggström, Isla Evers, Lilia Nyman, Mirjami Kyntäjä, Selma Lumatjärvi, Sofia Salli, Sylvia Harju, Vivia Huovilainen</p><p>Ametistit: It lives inside of us, choreography by Lara Müller ‘It lives inside of us’ is a work about a being that lives inside all of us. What happens if it gets out? Does it inspire others to come forward? What happens if one these beings meets another? How does our behaviour change? How can we hide this being back inside us?</p><p>Dancers: Aada Venäläinen, Alexandra Rautiainen, Aurora Miettinen, Eevi Paasikivi, Emmi Lintonen, Iiris Käkelä, Ilona Tuores, Isabella Koskela, Isla Koskelainen, Kaarina Kyntäjä, Klaara Karjalainen, Kumba Gueye, Leea Nyman, Lilja Tiilikainen, Louna Väänänen, Salla Polojärvi, Siiri Laine, Sonja Ollila, Vera Kronvall, Viena Peltola, Vilma Kaukonen</p><p>Smaragdit: Peli Piip, choreography Venla Lehto ‘Now they will go to the store, put your right hand on the green, you’re it!’ The piece ‘Peli piip’, created together with the contemporary dance team Smaragdit, is inspired by the dancers' own childhood games and playing. Play and performing arts are both based on imagination and the ability to throw oneself into the action. Where is the fine line between play and art? Do we even need to draw such a line?</p><p>Dancers: Adalia Kokki, Aino Kaipainen, Anna Valtonen, Aurora Linder, Effi Lindström, Elsa Lindberg, Emma Lindberg, Erika Koskinen, Ilona Jahkola, Inka Blom, Lilja Häggström, Maj Peltonen, Matilda Harju, Matleena Toivanen, Mimosa Hellen, Nea Velander, Niia Sergejeff, Noomi Ochsner, Venla Sarkkola, Vilja Kylmälä, Vivi Wolff</p><p>Eclipse: Playground, choreography by Karoliina Papinoja</p><p>Eclipse's Playground is a dance piece about growth, memories and the in-between space where we are a little bit of everything – and maybe that’s why we are so much bigger than the sum of our parts. Playground is a journey into the landscape of new kind of play, longing and self-discovery. The work breathes and takes one’s breath away, somewhere in-between play, love and the search for identity.</p><p>Dancers: Alina Borg, Sophie Hartikainen, Nora Hentunen, Noora Nagatsu, Vela Raulo, Kerttu Wilska.</p><p>Duration: 2 hours, including 20 min intermission</p>"
            },
            "name": {
                "fi": "Nykytanssin ilta",
                "sv": "En kväll med nutidsdans",
                "en": "Evening of contemporary dance"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67586/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68222",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21458482/",
                        "sv": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21458482/",
                        "en": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21458482/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1671702,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T09:14:18.895534Z",
                    "last_modified_time": "2026-03-19T09:14:18.895550Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786380.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1671702/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T09:14:18.741752Z",
            "last_modified_time": "2026-03-20T01:13:52.112021Z",
            "date_published": null,
            "start_time": "2026-03-31T15: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": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF5B75BBE51B180099B66234ECCB99C7/Humiseva_harju_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF5B75BBE51B180099B66234ECCB99C7/Humiseva_harju_16_",
                "en": "http://www.malmitalo.fi/en/events/event/CF5B75BBE51B180099B66234ECCB99C7/Humiseva_harju_16_"
            },
            "description": {
                "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Humiseva harju (16) – Kino Helios",
                "sv": "Humiseva harju (16) – Kino Helios",
                "en": "Humiseva harju (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68222/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67390",
            "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-isanpaiva-malmitalo-21375688/",
                        "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375688/",
                        "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375688/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1508336,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T10:13:01.544873Z",
                    "last_modified_time": "2026-03-03T10:13:01.544887Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781077.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508336/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T10:13:01.451158Z",
            "last_modified_time": "2026-03-20T01:13:50.155059Z",
            "date_published": null,
            "start_time": "2026-03-28T16: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": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4A73723678D516163F0A9D70691CD4DE/Isanpaiva_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4A73723678D516163F0A9D70691CD4DE/Isanpaiva_7_",
                "en": "http://www.malmitalo.fi/en/events/event/4A73723678D516163F0A9D70691CD4DE/Isanpaiva_7_"
            },
            "description": {
                "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Isänpäivä (7) – Kino Helios",
                "sv": "Isänpäivä (7) – Kino Helios",
                "en": "Isänpäivä (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67390/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67389",
            "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-operaatio-majava-malmitalo-21375691/",
                        "sv": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375691/",
                        "en": "https://www.lippu.fi/event/kino-helios-operaatio-majava-malmitalo-21375691/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1509285,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T12:13:15.227574Z",
                    "last_modified_time": "2026-03-03T12:13:15.227591Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781076.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509285/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T12:13:15.094237Z",
            "last_modified_time": "2026-03-20T01:13:50.030522Z",
            "date_published": null,
            "start_time": "2026-03-28T13: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": "Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3280C6536AC90DD8CE3F506D0B47F2F8/Operaatio_Majava_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3280C6536AC90DD8CE3F506D0B47F2F8/Operaatio_Majava_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3280C6536AC90DD8CE3F506D0B47F2F8/Operaatio_Majava_7_"
            },
            "description": {
                "fi": "<p>Uudessa Disneyn ja Pixarin animaatiokomediassa Operaatio Majava tutustutaan eläinrakkaaseen tyttöön nimeltä Mabel (Piper Curda), joka tarttuu uuden tekniikan suomaan tilaisuuteen hyppäyttää itsensä aivan aidonoloiseen robottimajavan hahmoon ja jutella suoraan eläinten kanssa.</p><p>Mullistavan teknologian avulla Mabel saa selville eläinmaailman arvoituksia, joita ei olisi voinut kuvitellakaan.</p><p>Majavalan pormestarinvaaleissa uudelleenvalintaa tavoitteleva poliitikko Jerryn moitteettomasti muotoillun kuontalon alla on yhtä sliipatulla julkikuvalla varustettu persoona, jolta palaa hermo, kun vastaan asettuu ainoa asia, joka ei ole hänen hallittavissaan: Mabel.</p><p>Elokuvan on ohjannut Daniel Chong (We Bare Bears), tuottanut Nicole Paradis Grindle (Ihmeperhe 2) ja musiikista vastaa elokuvasäveltäjä Mark Mothersbaugh (Thor: Ragnarök).</p><p>Ikäraja: 7<br>Kesto: 104 min<br>Ensi-ilta: 6.3.2026<br>Elokuva on puhuttu suomeksi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Operaatio Majava (7) – Kino Helios",
                "sv": "Operaatio Majava (7) – Kino Helios",
                "en": "Operaatio Majava (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67389/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68135",
            "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:42/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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": 1494950,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-25T14:13:03.305999Z",
                    "last_modified_time": "2026-02-25T14:13:03.306012Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785700.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494950/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-25T14:13:03.152827Z",
            "last_modified_time": "2026-03-20T01:13:49.503687Z",
            "date_published": null,
            "start_time": "2026-03-28T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!",
                "sv": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!",
                "en": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali",
                "en": "http://www.malmitalo.fi/en/events/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali"
            },
            "description": {
                "fi": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p><p>Kuulo- ja viittomakielialan järjestöt järjestävät yhdessä Koko perheen kevätfestivaalin lauantaina 28.3.2026 Malmitalolla. Kevätfestivaali tarjoaa maksutonta, kivaa puuhaa kaikenikäisille viittoville ja/tai kuulovammaisille perheineen, kieli- tai kulttuuritaustasta riippumatta.</p><p>Ohjelmassa on luvassa mm.</p><p>Viittomakieliartisti Miguel Peltomaan esitys ja meet & greet Malmisalissa klo 12.30-13.30<br>Karkkiaskartelua (tarjolla myös liivatteettomia/vegaanisia karkkeja)<br>Kasvomaalausta<br>Viittoma-kuvamuistipelejä<br>Reaktiopelejä<br>ja paljon muuta!<br>Tapahtumaan ei tarvitse ilmoittautua etukäteen, paikalle voi tulla milloin vain. Puuhapisteet löytyvät Malmitalon aulasta ja parvelta, Miguel Peltomaan esitys pidetään Malmisalissa.</p><p>Tapahtuman järjestävät yhteistyössä LapCI ry, Kuuloliitto, KLVL ry, Kuurojen Liitto, Kuurojen palvelusäätiö sr, SKUL ry ja Suomen Kuurosokeat ry.</p><p>Vapaa pääsy, tervetuloa!</p>",
                "sv": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p>",
                "en": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p><p>Welcome to the Spring Family Fest!<br>Hearing and sign language organisations are hosting a Spring Family Fest on Saturday, 28 March 2026, 12-3 pm at Malmitalo in Helsinki (address: Ala-Malmi Square 1).</p><p>The Spring Festival offers free, fun activities for all ages for signing and/or deaf people and their families, regardless of language or cultural background.</p><p>What’s in store:</p><p>A performance by sign language artist Miguel Peltomaa + a meet & greet in Malmisali 12.30-1.30 pm<br>Candy crafts (gelatin-free and vegan options available)<br>Face painting<br>Sign and picture memory games<br>Reaction games<br>And much more!</p><p>No registration is required. You can arrive at any time during the event. Activities and stands can be found in the Malmitalo lobby and balcony, and Miguel Peltomaa’s performance will take place in Malmisali.</p><p>The event is held in collaboration with LapCI ry, Kuuloliitto, KLVL ry, Kuurojen Liitto, Kuurojen palvelusäätiö sr, SKUL ry and Suomen Kuurosokeat ry.</p><p>Free of charge. Welcome!</p>"
            },
            "name": {
                "fi": "Koko perheen kevätfestivaali",
                "sv": "Koko perheen kevätfestivaali",
                "en": "Koko perheen kevätfestivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68135/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68211",
            "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": 1611074,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-13T12:13:31.319165Z",
                    "last_modified_time": "2026-03-13T12:13:31.319179Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786238.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1611074/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-13T12:13:31.186755Z",
            "last_modified_time": "2026-03-20T01:13:49.401230Z",
            "date_published": null,
            "start_time": "2026-03-28T09: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/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua",
                "en": "http://www.malmitalo.fi/en/events/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua"
            },
            "description": {
                "fi": "<p>Pohjois-Helsingin musiikkiopisto antaa opetusta orkesterisoittimissa, bändisoittimissa sekä pianossa, laulussa ja kitarassa.</p><p>Tule kokeilemaan soittimia klo 11–14! Soitinesittelykonsertit klo 11.30 ja 12.30</p><p>Vapaa pääsy, tervetuloa!</p>"
            },
            "name": {
                "fi": "Soitinesittelykonsertit ja soitinkokeilua – Pohjois-Helsingin musiikkiopisto",
                "sv": "Soitinesittelykonsertit ja soitinkokeilua",
                "en": "Soitinesittelykonsertit ja soitinkokeilua"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68211/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67584",
            "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-4025929",
                        "sv": "https://www.lippu.fi/eventseries/name-4025929",
                        "en": "https://www.lippu.fi/eventseries/name-4025929"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494088,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:01.685628Z",
                    "last_modified_time": "2025-12-04T13:13:01.685644Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781970.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494088/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:01.569071Z",
            "last_modified_time": "2026-03-20T01:13:48.979477Z",
            "date_published": null,
            "start_time": "2026-03-27T17: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": "Cleaning Women juhlistaa viidennen albuminsa julkaisua kattavalla kotimaan kiertueella.",
                "sv": "Cleaning Women firar utgivningen av sitt femte album med en omfattande turné i hemlandet.",
                "en": "Cleaning Women will celebrate the release of their fifth album with an extensive tour in Finland."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D88DF8AF0740C29ECA2B6B77EFA26241/Cleaning_Women",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D88DF8AF0740C29ECA2B6B77EFA26241/Cleaning_Women",
                "en": "http://www.malmitalo.fi/en/events/event/D88DF8AF0740C29ECA2B6B77EFA26241/Cleaning_Women"
            },
            "description": {
                "fi": "<p>Cleaning Women juhlistaa viidennen albuminsa julkaisua kattavalla kotimaan kiertueella.</p><p>Cleaning Women on ainutlaatuinen itsetehdyillä soittimilla operoiva yhtye, joka muodostuu kolmesta “siivoojarobotista” (CW01, CW03, CW04). Yhtye on toiminut samalla kokooonpanolla jo yli 25 vuoden vuoden ajan, jona aikana se on hämmästyttänyt yleisöä ympäri Tellusta yli 600:n keikan verran soittaen ainakin 25:ssä maassa, kiertäen niin Kiinassa kuin Kanadassakin. Yhtye on tehnyt viisi albumia, 3D-varjovisuaalikeikkoja, installaatioita taidenäyttelyihin, soittanut sirkuksessa, tehnyt elokuvamusiikkia ja lukuisia kehuttuja mykkäelokuvasäestyksiä, joita se on esittänyt livenä mm. Sodankylän elokuvajuhlilla, Mexico Cityssä ja Telluriden elokuvajuhlilla Coloradossa Yhdysvalloissa. Vuonna 2023 yhtye sävelsi alkuperäismusiikin italialaisen Alice Rohrwacherin lyhytelokuvaan Le Pupille, joka valittiin Oscar-ehdokkaaksi näyteltyjen lyhytelokuvien sarjassa. Yhtye on tehnyt yhteistyötä esimerkiksi M.A. Nummisen ja saksalaisen Einstürzende Neubauten -industrialyhtyeen Alexander Hacken kanssa.</p><p>Omaperäisen musiikin lisäksi Cleaning Women on tunnettu myös vaihtoehtoisista instrumenttivalinnoistaan. Yhtyeen soundin peruspalikkoina toimivat itserakennetut instrumentit ja kotitalouksista tutut esineet, joita on modifioitu musiikillisiin tarpeisiin. Materiaali on usein peräisin roskalavoilta tai pelastettu päätymästä sinne. Vuosien saatossa yhtyeen instrumenttiperhe on laajentunut, sisältäen alkuperäisen mikitetyn pyykinkuivaustelineen lisäksi lukuisia erilaisia kieli- ja rytmisoittimia. Vaikka lähtökohta on avantgardistinen ja kokeellinen, lopputulos on yhdistelmä taidokasta soittimenhallintaa, uniikkeja äänimaisemia ja melodisesti sekä rytmillisesti rikasta musiikkia, jota voisi kuvailla vaikkapa yhdistelmänä elokuvallista sci-fi länkkäriä ja kipinöivää roskalavadiskoa. Yhdessä yhtyeen yhtenäisen tummanpuhuvan ulkoasun ja muun visuaalisuuden kanssa kokonaisuus välittyy kokijalle tajuntaan tehokkaimmin nimenomaan live-tilanteessa. Cleaning Women on yhtye, jonka tuotantoa ei välttämättä tarvitse tuntea etukäteen vaikuttuakseen keikalla.</p><p>Yhtyeen viides albumi “Washer” julkaistiin lokakuussa 2025 Svart Recordsin toimesta.  Tulevaa levyä yhtye kommentoi itse näin: “Uusi levy on monipuolisinta Cleaning Womeniä koskaan. Pyykinkuivausteline on antanut hieman tilaa harmonioille, mutta kyllä siellä on myös edelleen vahvasti perkussiivisia elementtejä. Ja aina vaan tietynlainen Cleaning Womenin dystooppinen perusvire paistaa läpi, halusimme tai emme. Aiempiin levyihin verrattuna musiikillisesti ollaan ehkä lähimpänä vuoden 2009 U-levyä, mutta tietynlainen progressiivinen ote on tällä levyllä vielä vahvempi.\"</p><p>Kesto: 2 t</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>Keikka on ikärajaton.</p>",
                "sv": "<p>Cleaning Women firar utgivningen av sitt femte album med en omfattande turné i hemlandet.</p><p>Cleaning Women är en unik grupp som använder självgjorda musikinstrument och består av tre ”städrobotar” (CW01, CW03, CW04). Bandet har uppträtt med samma medlemmar i över 25 år och har under denna tid imponerat på publiken runt om på Tellus med över 600 spelningar i minst 25 länder och turnerat i såväl Kina som Kanada. Bandet har gjort fem album,spelningar med visuella 3D-element, deltagit i installationer på konstutställningar, spelat på cirkus, gjort filmmusik och gjort många berömda stumfilmsackompanjemang, som har framförts live på bland annat filmfestivalen i Sodankylä (Sodankylän elokuvafestivaalit), i Mexico City och på filmfestivalen i Telluride i Colorado i USA. År 2023 komponerade bandet originalmusiken till italienska Alice Rohrwachers kortfilm Le Pupille, som var Oscarnominerad i kategorin kortfilmer. Bandet har samarbetat med artister som M.A. Numminen och Alexander Hacke från det tyska industrialbandet Einstürzende Neubauten.</p><p>Utöver sin säregna musik är Cleaning Women också kända för sina alternativa instrumentval. Bandets sound bygger på självtillverkade instrument och hushållsföremål, som modifierats för att passa musikaliska ändamål. Materialet härstammar ofta från sopcontainrar eller har räddats från att hamna där. Under årens lopp har bandets instrumentfamilj utökats till att omfatta inte bara den ursprungliga mikrofonbelagda torkställningen, utan också en mängd olika sträng- och rytminstrument. Även om utgångspunkten är avantgardistisk och experimentell är slutresultatet en kombination av skicklig instrumenthantering, unika ljudlandskap och melodiskt och rytmiskt rik musik som kan beskrivas som en kombination av filmisk sci-fi-western och gnistrande sopcontainerdisco. Tillsammans med bandets enhetliga mörktalande utseende och övriga visualitet förmedlas helheten till upplevaren effektivast just i en live-situation. Cleaning Women är ett band vars produktion man inte nödvändigtvis behöver känna till i förväg för att bli imponerad på en spelning.</p><p>Bandets femte album \"Washer\" gavs ut i oktober 2025 av Svart Records.  Bandet kommenterade själv det kommande albumet på följande sätt: ”Det nya albumet är det mångsidigaste Cleaning Women någonsin. Torkställningen har gett harmonierna lite utrymme, men det förekommer nog fortfarande stark perkussion. Cleaning Women genomsyras nog av en viss dystopisk tendens, vare sig vi vill det eller inte. Jämfört med de tidigare albumen är det nog musikaliskt närmast U-albumet från 2009, men det finns ett visst progressivt grepp på det här albumet som är ännu starkare.”</p><p>Längd: 2 h <br>Spelningen har ingen åldersgräns.</p><p>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft. 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. 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>Cleaning Women will celebrate the release of their fifth album with an extensive tour in Finland.</p><p>Cleaning Women is a unique instrumental ensemble playing DIY instruments and consisting of three ‘cleaning robots’ (CW01, CW03, CW04). The band has been performing with the same line-up for over 25 years, wowing its audiences around the globe with over 600 shows in at least 25 countries, touring places from China to Canada. The band has made five albums, played gigs with 3D shadow visuals and created installations for art exhibitions. They have also played in a circus and created film music and numerous acclaimed silent film scores, which they have performed live at places such as Sodankylä Film Festival, Mexico City and Telluride Film Festival in Colorado, USA. In 2023, the band composed the original music for the short film Le Pupille by Italian director Alice Rohrwacher, which was nominated for an Oscar in the category of Best Live Action Short Film. The band has collaborated with artists such as M.A. Numminen and Alexander Hacke from the German industrial band Einstürzende Neubauten.</p><p>In addition to their original music, Cleaning Women are also known for their alternative instrument choices. The band's sound is based on self-made instruments and familiar household objects that have been modified to serve the purposes of music. Their material often comes from or has been rescued from waste collection points. Over the years, the band's range of instruments has expanded to include not only the original clothes drying rack with a mic but also a wide variety of string and rhythm instruments. Although the premise of the band is avant-garde and experimental, the result is a combination of skilful instrumental control, unique soundscapes and melodically and rhythmically rich music that could be described as a combination of cinematic sci-fi western and sparkly dumpster disco. With the band's uniform dark-toned look and other visual elements, this band is at its best experienced live. Cleaning Women is a band whose works you don't necessarily need to be familiar with to be impressed by their live performance.</p><p>The band's fifth album, ‘Washer’, was released in October 2025 by Svart Records.  Regarding their new album, the band stated: “The new album is the most diverse take on Cleaning Women ever. The clothes drying rack has taken a step back, making way for more harmonies, but the music still has strong percussive elements. And there's always that certain foundational Cleaning Women dystopian vibe that shines through, whether we like it or not. Compared to the previous albums, musically it's probably the closest to the 2009 album ‘U’, but that certain progressive edge is even stronger on this album.”</p><p>Duration: 2 h  <br>The show is for all ages.</p><p>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music. 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.  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": "Cleaning Women – A la Malmi",
                "sv": "Cleaning Women – A la Malmi",
                "en": "Cleaning Women – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67584/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67388",
            "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-the-secret-agent-malmitalo-21375694/",
                        "sv": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375694/",
                        "en": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375694/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1509763,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T13:13:53.081059Z",
                    "last_modified_time": "2026-03-03T13:13:53.081075Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781074.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509763/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T13:13:52.957056Z",
            "last_modified_time": "2026-03-20T01:13:47.970019Z",
            "date_published": null,
            "start_time": "2026-03-27T16: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": "Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8BE5075E44815CBDF23D45F1A4B22227/The_Secret_Agent_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8BE5075E44815CBDF23D45F1A4B22227/The_Secret_Agent_16_",
                "en": "http://www.malmitalo.fi/en/events/event/8BE5075E44815CBDF23D45F1A4B22227/The_Secret_Agent_16_"
            },
            "description": {
                "fi": "<p>Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri.</p><p>The Secret Agent palkittiin 2026 Golden Globes -gaalassa parhaan vieraskielisen elokuvan palkinnolla ja pääosanesittäjä Wagner Moura parhaan miesnäyttelijän palkinnolla.</p><p>Vuoden 2025 Cannesin elokuvajuhlilla parhaasta ohjauksesta (Kleber Mendonça Filho) ja miespääosasta (Wagner Moura) palkittu The Secret Agent on omaperäinen poliittinen trilleri. Eletään riehakasta karnevaaliviikkoa vuonna 1977 Brasiliassa.</p><p>Salaperäistä menneisyyttään pakeneva teknologia-asiantuntija Marcelo (Moura) palaa kotikaupunkiinsa etsimään rauhaa, samalla toivoen tapaavansa jälleen poikansa.</p><p>Hän löytää suojapaikan vastarintaliikkeen kommuunista, mutta huomaa pian, että kaupunki on yhtä eläväinen kuin väkivaltainenkin. Marcelo  ajautuu tahtomattaan keskelle poliittista kuohuntaa.</p><p>Oivaltavasti eri lajityyppejä yhdistelevä, auringon paahtama elokuva on ohjaaja Filhon kunnianosoitus elokuvataiteelle ja Brasilialle.  Elokuva on Brasilian virallinen ehdokas Oscar-kisaan.</p><p>Ikäraja: 16<br>Kesto: 161 min<br>Ensi-ilta: 20.2.2026<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>"
            },
            "name": {
                "fi": "The Secret Agent (16) – Kino Helios",
                "sv": "The Secret Agent (16) – Kino Helios",
                "en": "The Secret Agent (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67388/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67387",
            "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-isanpaiva-malmitalo-21375687/",
                        "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375687/",
                        "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375687/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1508335,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T10:13:00.448053Z",
                    "last_modified_time": "2026-03-03T10:13:00.448066Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781073.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508335/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T10:13:00.353840Z",
            "last_modified_time": "2026-03-20T01:13:47.865852Z",
            "date_published": null,
            "start_time": "2026-03-27T13: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": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/677BDFC1BB7DA709E3043A33B8F34B06/Isanpaiva_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/677BDFC1BB7DA709E3043A33B8F34B06/Isanpaiva_7_",
                "en": "http://www.malmitalo.fi/en/events/event/677BDFC1BB7DA709E3043A33B8F34B06/Isanpaiva_7_"
            },
            "description": {
                "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Isänpäivä (7) – Kino Helios",
                "sv": "Isänpäivä (7) – Kino Helios",
                "en": "Isänpäivä (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67387/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67583",
            "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/malmijazz-sointi-jazz-orchestra-jazz-suomi-100-vuotta-malmitalo-20929932/",
                        "sv": "https://www.lippu.fi/event/malmijazz-sointi-jazz-orchestra-jazz-suomi-100-vuotta-malmitalo-20929932/",
                        "en": "https://www.lippu.fi/event/malmijazz-sointi-jazz-orchestra-jazz-suomi-100-vuotta-malmitalo-20929932/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494087,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:01.205203Z",
                    "last_modified_time": "2025-12-04T13:13:01.205222Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781968.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494087/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:01.111387Z",
            "last_modified_time": "2026-03-20T01:13:46.861302Z",
            "date_published": null,
            "start_time": "2026-03-26T17: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": "Kesäkuussa 1926 Andania-laiva toi jazzmusiikkin uudet tuulet New Yorkista mukanaan Helsinkiin ja tätä pidetään symbolisesti suomalaisen jazzin lähtölaukauksena.",
                "sv": "I juni 1926 förde fartyget Andania med sig jazzmusikens nya vindar från New York till Helsingfors. Detta betraktas symboliskt som ett startskott för den finländska jazzmusiken.",
                "en": "In June 1926, the ship Andania brought the new winds of jazz music from New York to Helsinki, and this is symbolically considered the starting point of Finnish jazz."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/37335E4E750E8600F7CA7337C9F3D1A1/Sointi_Jazz_Orchestra_Jazz_Suomi_100_vuotta_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/37335E4E750E8600F7CA7337C9F3D1A1/Sointi_Jazz_Orchestra_Jazz_Suomi_100_vuotta_",
                "en": "http://www.malmitalo.fi/en/events/event/37335E4E750E8600F7CA7337C9F3D1A1/Sointi_Jazz_Orchestra_Jazz_Finland_100_years_"
            },
            "description": {
                "fi": "<p>Kesäkuussa 1926 Andania-laiva toi jazzmusiikkin uudet tuulet New Yorkista mukanaan Helsinkiin ja tätä pidetään symbolisesti suomalaisen jazzin lähtölaukauksena.</p><p>Sointi Jazz Orchestra syventyy maaliskuun konsertissaan uusien kantaesitysten äärelle pohtimaan suomalaisen jazzin historiaa ja nykyhetkeä. Konsertissa kuullaan uusia sävellyksiä ja sovituksia seitsemältä eri säveltäjältä. Konsertti on osa Suomen Jazzliiton lanseeraamaa Jazz Suomi 100 -juhlavuotta.</p><p>Sointi Jazz Orchestran konsertissa vierailee myös tenorisaksofonistit Eero Koivistoinen ja Adele Sauros!</p><p>Kesto: 1 t 15 min</p>",
                "sv": "<p>I juni 1926 förde fartyget Andania med sig jazzmusikens nya vindar från New York till Helsingfors. Detta betraktas symboliskt som ett startskott för den finländska jazzmusiken.</p><p>I sin konsert i mars fördjupar sig Sointi Jazz Orchestra i nya uruppföranden för att granska den finländska jazzmusikens historia och nuläge. Under konserten får man höra nya tonsättningar och arrangemang av sju olika kompositörer. Konserten är en del av jubileumsåret Jazz Suomi 100, som har lanserats av Finlands Jazzförbund.</p><p>Längd: 1 h 15 min</p>",
                "en": "<p>In June 1926, the ship Andania brought the new winds of jazz music from New York to Helsinki, and this is symbolically considered the starting point of Finnish jazz.</p><p>In its March concert, Sointi Jazz Orchestra will delve into the history and present of Finnish jazz with its new premieres. The concert will feature new compositions and arrangements by seven different composers. The concert is part of the Jazz Finland 100 anniversary year launched by the Finnish Jazz Federation.</p><p>Duration: 1 hour 15 min</p>"
            },
            "name": {
                "fi": "Sointi Jazz Orchestra: Jazz Suomi 100 vuotta! – MalmiJazz",
                "sv": "Sointi Jazz Orchestra: Jazz Suomi 100 vuotta! – MalmiJazz",
                "en": "Sointi Jazz Orchestra: Jazz Finland 100 years! – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67583/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67582",
            "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-4011648",
                        "sv": "https://www.lippu.fi/eventseries/name-4011648",
                        "en": "https://www.lippu.fi/eventseries/name-4011648"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80€",
                        "sv": "24,80€",
                        "en": "24,80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494086,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:13:00.797524Z",
                    "last_modified_time": "2025-12-04T13:13:00.797540Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781966.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494086/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:13:00.725461Z",
            "last_modified_time": "2026-03-20T01:13:45.746760Z",
            "date_published": null,
            "start_time": "2026-03-25T17: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": "Konsertti tarjoaa kunnianosoituksen soulin kuningattarelle ja täyslaidallisen kotimaista Soul-energiaa.",
                "sv": "Konserten är en hyllning till souldrottningen och fullspäckad med inhemsk soul-energi.",
                "en": "The concert will pay tribute to the Queen of Soul with a full range of Finnish soul energy."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F1D6871E6A1F4658F2BB893B37430CC1/RESPECT_Aretha_Franklin_Tribute_Hi-Five_Quintet_Soul_Originals_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1D6871E6A1F4658F2BB893B37430CC1/RESPECT_Aretha_Franklin_Tribute_Hi-Five_Quintet_Soul_Originals_",
                "en": "http://www.malmitalo.fi/en/events/event/F1D6871E6A1F4658F2BB893B37430CC1/RESPECT_Aretha_Franklin_Tribute_Hi-Five_Quintet_Soul_Originals_"
            },
            "description": {
                "fi": "<p>Konsertti tarjoaa kunnianosoituksen soulin kuningattarelle ja täyslaidallisen kotimaista Soul-energiaa.</p><p>Hi-Five Quintet vieraineen tulkitsee Arethan ikoniset kappaleet mm. “Respect”, “Think” ja “(You Make Me Feel Like) A Natural Woman” oman, svengaavan soundinsa läpi. Konsertissa kuullaan myös Hi-Five Quintetin omia, tarinallisia ja grooveen nojaavia kappleita. Luvassa on isoa tunnetta, vahvaa laulua ja tiukkaa bändisoittoa eli juhlailta soulin, bluesin ja hyvän fiiliksen ystäville.</p><p>Hi-Five Quintet:<br>Saara Koivisto (laulu), Olli Virkkunen (kitara), Kimmo Lehtola (basso ja taustalaulu), Juha Soini (koskettimet), Ari Hujanen (rummut)</p><p>Vieraat:<br>Linda Anttila (taustalaulu), Ilona Sola (taustalaulu), Sirpa Suomalainen (saksofoni)</p><p>Kesto: 2 t, sis. 25 min väliajan</p>",
                "sv": "<p>Konserten är en hyllning till souldrottningen och fullspäckad med inhemsk soul-energi.</p><p>Hi-Five Quintet och dess gäster tolkar Arethas ikoniska låtar, bland annat ”Respect”, ”Think” och ”(You Make Me Feel Like) A Natural Woman”, med sitt eget svängiga sound. Under konserten hör man också Hi-Five Quintets egna berättelselika låtar som hämtar inspiration hos groove-musiken. Det utlovas stora känslor, stark sång och en intensiv bandspelning, det vill säga en festkväll för soul- och blues-musikens vänner samt för alla som gillar en bra stämning.</p><p>Hi-Five Quintet: <br>Saara Koivisto (sång), Olli Virkkunen (gitarr), Kimmo Lehtola (bas och bakgrundssång), Juha Soini (keyboard), Ari Hujanen (trummor)</p><p>Gäster: <br>Linda Anttila (bakgrundssång), Ilona Sola (bakgrundssång), Sirpa Suomalainen (saxofon)</p><p>Längd: 2 h, inklusive en paus på 25 min.</p>",
                "en": "<p>The concert will pay tribute to the Queen of Soul with a full range of Finnish soul energy.</p><p>The Hi-Five Quintet and their guests interpret Aretha's iconic songs including ‘Respect’, ‘Think’ and ‘(You Make Me Feel Like) A Natural Woman’ with their own swinging sound. The concert will also feature Hi-Five Quintet's own story-driven, grooving songs. The evening will be a true celebration for all friends of blues and great vibes, promising big emotions, strong singing and tight band sounds.</p><p>Hi-Five Quintet: <br>Saara Koivisto (vocals), Olli Virkkunen (guitar), Kimmo Lehtola (bass and backing vocals), Juha Soini (keyboards), Ari Hujanen (drums)</p><p>Guests: <br>Linda Anttila (backing vocals), Ilona Sola (backing vocals), Sirpa Suomalainen (saxophone)</p><p>Duration: 2 h, incl. a 25-min intermission</p>"
            },
            "name": {
                "fi": "RESPECT! Aretha Franklin Tribute & Hi-Five Quintet Soul Originals",
                "sv": "RESPECT! Aretha Franklin Tribute & Hi-Five Quintet Soul Originals",
                "en": "RESPECT! Aretha Franklin Tribute & Hi-Five Quintet Soul Originals"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67386",
            "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-21375683/",
                        "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375683/",
                        "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21375683/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1507857,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T09:15:42.269367Z",
                    "last_modified_time": "2026-03-03T09:15:42.269385Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781071.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T09:15:42.148112Z",
            "last_modified_time": "2026-03-20T01:13:45.512814Z",
            "date_published": null,
            "start_time": "2026-03-25T16: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/78BD8229119A4E591A319F983ED52974/Kaunis_rietas_onnellinen_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78BD8229119A4E591A319F983ED52974/Kaunis_rietas_onnellinen_12_",
                "en": "http://www.malmitalo.fi/en/events/event/78BD8229119A4E591A319F983ED52974/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.</p><p>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:67386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68156",
            "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:42/?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:55/?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": 1494958,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-26T12:12:54.239447Z",
                    "last_modified_time": "2026-02-26T12:12:54.239459Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785883.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494958/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-26T12:12:54.067233Z",
            "last_modified_time": "2026-03-20T01:13:45.193242Z",
            "date_published": null,
            "start_time": "2026-03-25T15:00:00Z",
            "end_time": "2026-04-17T17: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": "Helsingin Kaupunginteatterin yleisötyön Taidetta koteihin – valokuvanäyttely esityksistä olohuoneissa avautuu Malmitalolla keskiviikkona 25.3.2026.",
                "en": "The exhibition opens at Malmitalo on 25 March 2026 and is on display in the lobby until 17 April 2026, after which it will tour other public venues in Malmi and Helsinki."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B82037FD1BD81F8F981CF00543FD795E/Taidetta_koteihin_-_valokuvanayttely_esityksista_olohuoneissa",
                "en": "http://www.malmitalo.fi/en/events/event/B82037FD1BD81F8F981CF00543FD795E/Taidetta_koteihin_-_valokuvanayttely_esityksista_olohuoneissa"
            },
            "description": {
                "fi": "<p>Helsingin Kaupunginteatterin yleisötyön Taidetta koteihin – valokuvanäyttely esityksistä olohuoneissa avautuu Malmitalolla keskiviikkona 25.3.2026.</p><p>Näyttely on esillä Malmitalon aulassa 25.3.–17.4.2026, minkä jälkeen se lähtee kiertueelle muihin yleisölle avoimiin tiloihin Malmilla ja muualla Helsingissä.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin Malmitalolle keskiviikkona 25.3.2026 klo 17.30–19!<br>Valokuvanäyttely esittelee kaudella 2025–2026 toteutettujen Taidetta koteihin -tapahtumien tunnelmia, koteja ja niissä syntyneitä kohtaamisia. Näyttely tarjoaa mahdollisuuden kurkistaa kotiesityksiin myös heille, jotka eivät itse päässeet intiimeihin esityksiin paikan päälle.</p><p>Koteja, kohtaamisia ja yhteisöllisyyttä</p><p>Taidetta koteihin -tapahtumissa Malmin alueen tavalliset kodit ja kotiympäristöt muuntuivat taiteen näyttämöiksi, kun taiteilijat suunnittelivat esitykset vuoropuhelussa kodin asukkaan kanssa tämän kiinnostuksen kohteiden ja toiveiden pohjalta.</p><p>Tapahtumat olivat avoimia kaikille, ja niissä kohtasivat toisilleen ennestään tuntemattomat ihmiset. Tavoitteena oli tuoda taide osaksi arkea ja vahvistaa alueen yhteisöllisyyttä. Tähän mennessä Malmilla on toteutettu yhteensä kolmetoista kotiesitystä, joista näyttelyssä esitellään viisi.</p><p>Taidetta koteihin -tapahtumat toteutettiin osana Helsingin Kaupunginteatterin yleisötyön Pääroolissa Malmi -hanketta.</p><p>Valokuvat: Sonja Tolonen</p><p>Näyttelydramaturgia: Laura Ikonen, Janne Puustinen</p><p>Näyttelyn tuotanto: Eveliina Pöyhönen</p><p>Taidetta koteihin -konseptin taiteellinen suunnittelu: Laura Ikonen, Jenny Jumppanen, Aleksi Kinnunen, Janne Puustinen</p><p>Alueellisen Pääroolissa Malmi -taidehankkeen tarkoitus on tarjota asuinalueelle erilaisia teatterin ja taiteen osallistumismahdollisuuksia, sekä tukea alueen omaa kulttuuritoimintaa, luoden myös uusia kaupunkikulttuurin muotoja. Taidetta koteihin -kokonaisuus tuo taiteen konkreettisesti ihmisten luo ja luo uusia tapoja kohdata taidetta arjen keskellä. Pääroolissa Malmi on yksi Helsingin kaupungin rahoittamista Helsingin malli -hankkeista.</p>",
                "en": "<p>The exhibition opens at Malmitalo on 25 March 2026 and is on display in the lobby until 17 April 2026, after which it will tour other public venues in Malmi and Helsinki.</p><p>You are warmly welcome to the opening event on Wednesday 25 March at 17:30–19:00. The exhibition offers a glimpse into five home performances created during the 2025–2026 season, highlighting homes, encounters, and community. In these events, ordinary Malmi homes were transformed into artistic stages through collaboration between residents and artists. Art at Home is part of the Helsinki City Theatre’s audience engagement project Pääroolissa Malmi.</p><p>Photos: Sonja Tolonen</p><p>Exhibition dramaturgy: Laura Ikonen & Janne Puustinen</p><p>Production: Eveliina Pöyhönen</p><p>Artistic concept: Laura Ikonen, Jenny Jumppanen, Aleksi Kinnunen & Janne Puustinen</p>"
            },
            "name": {
                "fi": "Taidetta koteihin - valokuvanäyttely esityksistä olohuoneissa – Taidetta koteihin -valokuvanäyttely tuo kotiesitysten tunnelmat kaikkien koettavaksi",
                "en": "Taidetta koteihin - valokuvanäyttely esityksistä olohuoneissa – The Art at Home photo exhibition captures intimate performances created inside ordinary homes across Malmi."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68156/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}