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=2
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=3",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api"
    },
    "data": [
        {
            "id": "kulke:68324",
            "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: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1721275,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T11:14:12.015114Z",
                    "last_modified_time": "2026-03-24T11:14:12.015135Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785923.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721275/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T11:14:11.879655Z",
            "last_modified_time": "2026-03-24T12:13:53.296960Z",
            "date_published": null,
            "start_time": "2026-06-04",
            "end_time": "2026-06-13",
            "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": "Malmin oma kaupunkifestivaali elävöittää Ala-Malmin toria konserteilla, työpajoilla, lasten tapahtumilla ja muulla yhteisellä tekemisellä!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026",
                "en": "http://www.malmitalo.fi/en/events/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026"
            },
            "description": {
                "fi": "<p>Malmin oma kaupunkifestivaali elävöittää Ala-Malmin toria konserteilla, työpajoilla, lasten tapahtumilla ja muulla yhteisellä tekemisellä!</p><p>Malmin tapahtumakesä 2026 käynnistyy 4.6. uudessa tapahtumapaikassa Ala-Malmin torilla, kun Ala-Malmin puistoa remontoidaan.</p><p>Kesäkuun aikana torin Konttilavalla nähdään mm. Vimma, Nyrkkitappelu, Tuula Amberla & Pieni Jazzorkesteri, Mara Balls ja Rosettes.</p><p><b>Malmin tapahtumakesä 2026 kesäkuun ohjelma</b></p><p><b>Torstai 4.6. Vimma, Dragsvik ja luovaa tekemistä kaikille</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa luovaa toimintaa kaikenikäisille<br>17.30–18.20 Dragsvik <br>19.00–20.00 Vimma<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/BC7E23145ED3EE112007BDC5171F83A3/Vimma__Dragsvik_ja_luovaa_tekemist__kaikille\">Katso päivän ohjelma</a></u></p><p><b>Perjantai 5.6. Nyrkkitappelu, Saa kiljua ja ympäristöteemaista tekemistä </b><br>14.30–18.30 ympäristöteemaista toimintaa kaikenikäisille <br>17.30–18.20 Saa kiljua <br>19.00–20.00 Nyrkkitappelu<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/07AA5D12A68CB870C58948E46914D876/Nyrkkitappelu__Saa_kiljua_ja_ymp_rist_teemaista_tekemist_\">Katso päivän ohjelma</a></u></p><p><b>Lauantai 6.6. Lasten lauantai: Rokkasoppa, riemukas perhemuskari, kirjaston lukukeidas ja työpajoja</b><br>10.00–16.00 Kirjaston lukukeidas<br>12.00–16.00 Malmin nuorisotyöyksikön kesätyönuorten ideoimia pelejä ja leikkejä perheen pienille <br>12.00–14.00 Pukinmäen taidekoulu: Klovni Dattarataa <br>12.00–14.00 Pohjois-Helsingin kuvataidekoulun pinssityöpaja <br>12.00–14.00 Yksin hanke: Kollaasitaidetta ja tikkariperhosia <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Rokkasoppa<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai__Rokkasoppa__Riemukas_perhemuskari__kirjaston_lukukeidas_ja_ty_pajoja\">Katso päivän ohjelma</a></u></p><p><b>Tiistai 9.6. Tuula Amberla & Pieni Jazzorkesteri, Kaupunkitanssit ja kirjaston lukuhetki</b><br>13.00–14.00 Kirjaston lukuhetki <br>16.00–16.45 Kaupunkitanssit<br>19.00–20.00 Tuula Amberla & Pieni Jazzorkesteri<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/A6FD16785CE476C66954F655A87939CC/Tuula_Amberla___Pieni_Jazzorkesteri__Kaupunkitanssit_ja_kirjaston_lukuhetki\">Katso päivän ohjelma</a></u></p><p><b>Keskiviikko 10.6. Mara Balls ja Satanen</b><br>17.30–18.20 Satanen <br>19.00–20.00 Mara Balls<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/AA3A2D05D104F072E0A9A7FA1A40039E/Mara_Balls_ja_Satanen\">Katso päivän ohjelma</a></u></p><p><b>Torstai 11.6. Suuri sambapäivä: Samigo & Samba Amigos, sambatyöpaja, tanssiopetusta ja kulkue</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa kisailua ja visailua kaiken ikäisille 17.00–17.30 Samigon Sambapaja kaikille <br>17.30–18.00 Samigo & Samba Amigos: 1. setti <br>18.00–18.20 Samba-tanssin opetusta <br>18.30–19.15 Samigo & Samba Amigos: 2. setti <br>19.15–19.30 Samba-show <br>19.30–19.50 Samba-rumpuryhmän ja tanssijoiden johtama sambakulkue<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/CDF84A0B7E02853CCDF416B49B787E89/Suuri_sambap_iv___Samigo___Samba_Amigos__sambaty_paja__tanssiopetusta_ja_kulkue\">Katso päivän ohjelma</a></u></p><p><b>Perjantai 12.6. Helsinki päivä</b><br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-p_iv__Malmilla\">Katso päivän ohjelma</a></u></p><p><b>Lauantai 13.6. Rosettes, Nevala ja Malmin nuorisotyöyksikön ideoimaa kesätekemistä ja kohtaamisia</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa kivaa kesätekemistä ja kohtaamisia kaiken ikäisille<br>15.00–16.00 Nevala <br>17.00–18.00 Rosettes<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes__Nevala___kes_tekemist__ja_kohtaamisia\">Katso päivän ohjelma</a></u></p><p>Tapahtumiin on vapaa pääsy! Muutokset ovat mahdollisia. Rankkasateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p><p>Malmin tapahtumakesä jatkuu elokuussa 13.8. alkaen.</p>"
            },
            "name": {
                "fi": "Malmin tapahtumakesä 2026 – kesäkuun ohjelma",
                "sv": "Malmin tapahtumakesä 2026",
                "en": "Malmin tapahtumakesä 2026"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68302",
            "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/sibelius-lukion-big-band-slbb-sibelius-lukion-big-band-malmitalo-21482731/",
                        "sv": "https://www.lippu.fi/event/sibelius-lukion-big-band-slbb-sibelius-lukion-big-band-malmitalo-21482731/",
                        "en": "https://www.lippu.fi/event/sibelius-lukion-big-band-slbb-sibelius-lukion-big-band-malmitalo-21482731/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€ / 10€",
                        "sv": "15€ / 10€",
                        "en": "15€ / 10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1711686,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T11:13:55.456652Z",
                    "last_modified_time": "2026-03-23T11:13:55.456667Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786899.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1711686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T11:13:55.352317Z",
            "last_modified_time": "2026-03-23T11:13:55.611876Z",
            "date_published": null,
            "start_time": "2026-05-13T16: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/535E3625663CF3D783B145B6D031D280/Sibelius-lukion_Big_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/535E3625663CF3D783B145B6D031D280/Sibelius-lukion_Big_Band",
                "en": "http://www.malmitalo.fi/en/events/event/535E3625663CF3D783B145B6D031D280/Sibelius-lukion_Big_Band"
            },
            "description": {
                "fi": "<p>Sibelius-lukion Big Band (SLBB) on 23 soittajan muodostama täysimittainen big band, joka on ollut toiminnassa kolmen vuoden ajan. Yhtyeen ohjelmistossa painottuu jazz, mutta mukana on myös sovituksia pop-, rock- ja soulmusiikista. Pääkaupunkiseudun nuorista lahjakkuuksista koostuva yhtye tekee musiikkia kunnianhimoisesti ja tavoitteellisesti, kuitenkaan unohtamatta soiton iloa.</p><p>Tänä vuonna pohjoismaisen yhteistyön myötä konsertin ohjelmisto koostuu pääosin suomalaisesta ja ruotsalaisesta musiikista. Konsertissa vierailevana solistina on kansainvälistäkin uraa tekevä virtuoottinen jazzlaulaja Maja Mannila. Lisäksi kuullaan neljää Sibelius-lukion omaa laulusolistia.</p><p>Luvassa on monipuolinen musiikillinen matka jazzin, funkin ja soulin parissa.</p><p>Avustaja samalla lipulla ainoastaan pyörätuoliasiakkaan saattajana.</p><p>Turvapaikanhakijat ovat oikeutettuja opiskelijahintaiseen lippuun./ The asylum seekers are entitled to the student priced ticket.</p><p>Asiakas todistaa alennusryhmään kuulumisensa todistuksella turvapaikan tai tilapäisen suojelun hakemisesta tai oleskelulupakortilla</p>"
            },
            "name": {
                "fi": "Sibelius-lukion Big Band",
                "sv": "Sibelius-lukion Big Band",
                "en": "Sibelius-lukion Big Band"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67585",
            "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:348/?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/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/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/",
                        "sv": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/",
                        "en": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22,80 € / 17,80 €",
                        "sv": "22,80 € / 17,80 €",
                        "en": "22,80 € / 17,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494624,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T10:12:54.544019Z",
                    "last_modified_time": "2026-01-26T10:12:54.544033Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781972.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494624/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T10:12:54.439770Z",
            "last_modified_time": "2026-03-23T10:12:57.663711Z",
            "date_published": null,
            "start_time": "2026-03-28T17: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 siirtyy syksyyn, uusi konserttipäivä on 19.9.",
                "sv": "Konserten kommer att flyttas till hösten, det nya konsertdatumet är den 19 september.",
                "en": "The concert will be postponed to the autumn, the new concert date is September 19th."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BC2D3AE02DDF87525D54153A9E3E1014/SIIRTYY_19_9_British_Blues_Night_Ilkka_Rantamaki_The_Bluesbrokers",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BC2D3AE02DDF87525D54153A9E3E1014/FLYTTAD_TILL_19_9_British_Blues_Night_Ilkka_Rantamaki_The_Bluesbrokers",
                "en": "http://www.malmitalo.fi/en/events/event/BC2D3AE02DDF87525D54153A9E3E1014/POSTPONED_19_9_British_Blues_Night_Ilkka_Rantamaki_The_Bluesbrokers"
            },
            "description": {
                "fi": "<p>Konsertti siirtyy syksyyn, uusi konserttipäivä on 19.9.</p><p>Konsertti on siirtynyt. Aiemmin ilmoitettu päivämäärä konsertille oli 28.3.2026. Uusi päivämäärä on 19.9.2026. Aiemmin ostetut liput käyvät sellaisenaan syyskuun konserttiin, mutta lippurahoja voi myös hakea takaisin. Lippurahojen palautuksia voi hakea tämän verkkolinkin kautta: https://web.lippu.fi/palautus/</p><p>Ilkka Rantamäki & The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.</p><p>Yhtye soittaa aikakauden autenttisella soundilla ikonisten brittibluesbändien kuten John Mayall’s Bluesbreakersin, Peter Green’s Fleetwood Macin ja Juicy Lucyn tuotantoa. Setteihin on sulautettu myös muutama mainio pala John Hisemanin Tempest yhtyeen ensimmäiseltä levyltä.</p><p>Ilkka Rantamäki: kitara, lap-steel, laulu<br>Hannu Sorsa: urut, piano, laulu<br>Harri Vainikka: basso, laulu<br>Petteri Määttänen: rummut, laulu</p>",
                "sv": "<p>Konserten kommer att flyttas till hösten, det nya konsertdatumet är den 19 september.</p><p>Tidigare köpta biljetter kommer fortfarande att vara giltiga för konserten i september, men du kan också begära återbetalning. Du kan begära återbetalning av din biljett via den här onlinelänken: https://web.lippu.fi/palautus/</p><p>Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!</p><p>Med sitt autentiska sound och grepp hämtar bandet tidsperiodens produktion av ikoniska brittiska bluesband, såsom John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac och Juicy Lucy till scenen i Malms kulturhus.</p><p>Den första hälften av konserten består av låtar från John Mayalls tre album With Eric Clapton, Crusade och Hard Road, och den andra hälften mer omfattande av brittiska bluesklassiker från 60-talet.</p><p><b>Ensemble</b><br>Ilkka Rantamäki: gitarr, lap-steel, sång<br>Hannu Sorsa: orgel, piano, sång<br>Harri Vainikka: bas, sång<br>Petteri Määttänen: trummor, sång</p><p>Längd: 1 h 30 min., inklusive en paus på 20 minuter</p>",
                "en": "<p>The concert will be postponed to the autumn, the new concert date is September 19th.</p><p>Previously purchased tickets will still be valid for the September concert, but you can also request a refund. You can request a refund for your ticket via this online link: https://web.lippu.fi/palautus/</p><p>Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!</p><p>With their authentic sound and style, the band brings the music of iconic British blues bands of the era – such as John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac and Juicy Lucy – to the Malmitalo stage.</p><p>The first half of the concert will consist of John Mayall’s three albums – Blues Breakers with Eric Clapton, Crusade and Hard Road – and the second half of a broader selection of '60s British blues classics.</p><p><b>Ensemble:</b><br>Ilkka Rantamäki: guitar, lap-steel, vocals<br>Hannu Sorsa: organ, piano, vocals<br>Harri Vainikka: bass, vocals<br>Petteri Määttänen:ma drums, vocals</p><p>Duration: 1 h 30 min, includes 20 min intermission</p>"
            },
            "name": {
                "fi": "SIIRTYY 19.9. British Blues Night: Ilkka Rantamäki $ The Bluesbrokers",
                "sv": "FLYTTAD TILL 19.9. British Blues Night: Ilkka Rantamäki $ The Bluesbrokers",
                "en": "POSTPONED 19.9. British Blues Night: Ilkka Rantamäki $ The Bluesbrokers"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67585/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67710",
            "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:354/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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-21468724/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468724/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468724/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672952,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:57.598687Z",
                    "last_modified_time": "2026-03-19T12:14:57.598709Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782563.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672952/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2026-03-19T12:14:57.480360Z",
            "last_modified_time": "2026-03-20T12:14:19.542273Z",
            "date_published": null,
            "start_time": "2026-05-07T10: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": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/04DB9399FCC56527EE112CCC2097CF38/HopeaCine_Orava_tekijavieraat_Markus_Lehmusruusu_ja_Miro_Lopperi",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/04DB9399FCC56527EE112CCC2097CF38/HopeaCine_Orava_tekijavieraat_Markus_Lehmusruusu_ja_Miro_Lopperi",
                "en": "http://www.malmitalo.fi/en/events/event/04DB9399FCC56527EE112CCC2097CF38/HopeaCine_Orava_tekijavieraat_Markus_Lehmusruusu_ja_Miro_Lopperi"
            },
            "description": {
                "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. Orava elokuvan vieraina ovat elokuvan ohjaaja Markus Lehmusruusu ja näyttelijä Miro Lopperi. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><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>Ikäraja: 12<br>Ensi-ilta: 02.04.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "HopeaCine: Orava + tekijävieraat Markus Lehmusruusu ja Miro Lopperi",
                "sv": "HopeaCine: Orava + tekijävieraat Markus Lehmusruusu ja Miro Lopperi",
                "en": "HopeaCine: Orava + tekijävieraat Markus Lehmusruusu ja Miro Lopperi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67710/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67707",
            "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:354/?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:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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-isanpaiva-malmitalo-21468601/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468601/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468601/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672117,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T10:14:18.490764Z",
                    "last_modified_time": "2026-03-19T10:14:18.490779Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782557.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672117/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2026-03-19T10:14:18.370944Z",
            "last_modified_time": "2026-03-20T12:14:13.813124Z",
            "date_published": null,
            "start_time": "2026-04-16T10: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": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5E4F3F7C0F87DAF75C7D6D5259577C37/HopeaCine_Isanpaiva_tekijavieras_Aleksi_Salmenpera",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5E4F3F7C0F87DAF75C7D6D5259577C37/HopeaCine_Isanpaiva_tekijavieras_Aleksi_Salmenpera",
                "en": "http://www.malmitalo.fi/en/events/event/5E4F3F7C0F87DAF75C7D6D5259577C37/HopeaCine_Isanpaiva_tekijavieras_Aleksi_Salmenpera"
            },
            "description": {
                "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. Isänpäivä elokuvan vieraaksi saapuu elokuvan ohjaaja Aleksi Salmenperä. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><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>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "HopeaCine: Isänpäivä + tekijävieras Aleksi Salmenperä",
                "sv": "HopeaCine: Isänpäivä + tekijävieras Aleksi Salmenperä",
                "en": "HopeaCine: Isänpäivä + tekijävieras Aleksi Salmenperä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67707/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68136",
            "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:105/?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:732/?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:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494913,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-20T09:13:04.016142Z",
                    "last_modified_time": "2026-02-20T09:13:04.016160Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781732.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494913/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-02-20T09:13:03.870202Z",
            "last_modified_time": "2026-03-20T10:12:57.443876Z",
            "date_published": null,
            "start_time": "2026-04-11T07:00:00Z",
            "end_time": "2026-04-11T11: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": "Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!",
                "sv": "Blöjfolkets karneval, bebisars och småbarns egen festival, är tillbaka!",
                "en": "The carnival for those in nappies, Vaippakansan karnevaali or Vaippis, a dedicated festival for babies and toddlers, is back!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1FA6F562D9A491365A611574CBF23B05/Vaippakansan_karnevaali",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1FA6F562D9A491365A611574CBF23B05/Blojfolkets_karneval",
                "en": "http://www.malmitalo.fi/en/events/event/1FA6F562D9A491365A611574CBF23B05/Carnival_for_those_in_nappies"
            },
            "description": {
                "fi": "<p>Vaippakansan karnevaali eli Vaippis, vauvojen ja taaperoiden oma festari, saapuu jälleen!</p><p>Malmitalo kannustaa kurottelemaan kohti kulttuuria talon täyttyessä taaperoikäisille suunnatuista esityksistä, työpajoista ja muusta ohjelmasta. <br>Vauvakinoa lukuun ottamatta ohjelma maksutonta. Osaan ennakkoilmoittautuminen tai maksuttomat pääsyliput paikan päältä.<br>Huom! Lastenvaunut yms. tulee jättää talon edustalla sijaitsevaan vaunuparkkiin. Varaathan mukaasi kantovälineen tarvittaessa.</p><p>Esitykset<br>10.30 ja 12.30 Vauvavaltameri – Babyocean, Malmisali, maksuttomat liput<br>11.15. ja 13.15 Puistopartio, aula, vapaa pääsy<br>12 Vauvakino: Rental Family, Pieni sali, liput 9€ (sis. 1 aik. ja 1 vauva)</p><p>Muu ohjelma, vapaa pääsy<br>10–13.15 Vauvadisko, 2. krs kokoushuone 2<br>10–14 Sademetsän salaisuudet -näyttely +  satu- ja satuliikuntatuokiot, Galleria<br>10–14 Kukkaniitty ja pörriäiset! Taidepaja vaippakansalle, 2. krs parvi</p><p>Työpajat, ennakkoilmoittautuminen<br>10 ja 11 Vauvojen luontokylpy, kirjaston monitoimitila<br>10–13 Baby Spa -tuokiot ja elämystila, 2. krs kokoushuone 3<br>10, 11 ja 13 Vauva- ja taapero muskarit, 2. krs muskariluokka<br>10.15, 11.30 ja 12.30 Vauvojen värikylpy, 2. krs. kuvanveistoluokka <br>10.30 ja 11.30 Vauvasirkustyöpaja, Pieni sali</p><p>Vauvavaltameri – Babyocean<br>Vauvavaltameri on tanssiteos ja aistielämys vauvoille seuralaisineen.<br>Sympaattinen matka elämän alkulähteille, alkumereen, jossa eoseeni-ajan alkueliöt kelluvat, kulkevat ja muuttavat muotoaan. Vauvavaltameressä voi ihmetellä, eläytyä, osallistua tai vain rentoutua virran mukana.<br>Ikäsuositus: 0–18 kk<br>Kesto: n. 40 min</p><p>Puistopartio-konsertti<br>Puistopartion mukaansa tempaavissa lauluissa seikkailevat muun muassa kaivurit, kippiautot ja hälytysajoneuvot. Tule mukaan laulamaan ja liikkumaan työkonetanssien tahtiin!<br>Konsertin jälkeen on mahdollista tavata Puistopartio ja saada oma fanikortti mukaan.<br>Konsertin kesto: n. 30 min<br>Vapaa pääsy</p><p>Vauvakino: Rental Family (S)<br>Rentoudu elokuvan parissa yhdessä vauvasi kanssa. Vauvakinonäytöksessä äänet ovat normaalia hiljemmalla ja pidämme yleisövalot himmeällä koko elokuvan ajan. Saliin voit ottaa mukaan kantokopan, salissa on myös tyynyjä ja patjoja, joilla voi oleilla, sekä mikro lasten ruokien yms. lämmittämistä varten.<br>Lue lisää elokuvasta lipunmyyntisivulta<br>Ikäraja: Sallittu<br>Kesto: 111 min<br>Liput: 9 € / lapsi + aikuinen –pari</p><p>Vauvadisko<br>Dj Elviksen Äiti soittaa lasten suosikkeja ja toiveita Malmitalon toisessa kerroksessa. Tule tanssimaan ja pitämään hauskaa koko perheen voimin!</p><p>Sademetsän salaisuudet – näyttely ja satu- ja satuliikuntatuokiot<br>Lasten osallistava elämysnäyttely kutsuu seikkailuun sademetsän sydämeen.  Sukella jännittävälle satumatkalle osana tutkimusmatkailijoiden retkikuntaa.</p><p>Kukkaniitty ja pörriäiset! - luonnonväri taidepaja vaippakansalle <br>Maalataan luontoaiheisia töitä luonnonväreillä. Haistellaan ja ehkä jopa maistellaan värien hehkua!</p><p>Vauvojen luontokylpy<br>Kesto n. 40 min. Ikäsuositus 6–18kk. Ennakkoilmoittautuminen: suvi.vehmas@hel.fi</p><p>Baby Spa -aistitila ja ohjatut leikkituokiot<br>Spa-käynti sisältää ohjatun leikkituokion, joka johdattaa suloisiin äänimaisemiin, tilan tutkimiseen ja lempeisiin vaahtoaaltoihin! <br>Sopii alle 1,5v. Kesto noin 30 min. Aistitilassa ei käytetä vettä. <br>Ennakkoilmoittautuminen: hupsansaary@gmail.com. Kerro toivomasi kellonaika, seurueesi koko sekä lapsen ikä.</p><p><b>Seuraaviin työpajoihin ennakkoilmoittautumiset anna.antikainen@hel.fi. Kerro ilmoittautuessasi toivomasi työpajan kellonaika ja lapsen ikä. Suosittelemme varaamaan paikat ikäryhmittäin, mikäli mahdollista.</b></p><p>Vauvojen värikylpy<br>Tule mukaan kylpemään väreissä ja opeta vauvallesi lisää tapoja ilmaista itseään luovasti ja leikkisästi! Ikäryhmät: 12–18kk 10.15, 6–12kk 11.30 ja 18–24kk 12.30</p><p>Vauva- ja taaperomuskarit<br>Tervetuloa laulamaan, soittamaan ja liikkumaan iloisiin perhemuskareihin. Ikäryhmät: 2-3v klo 10, 1-2v klo 11, 0-1 v klo 13.</p><p>Vauvasirkustyöpaja<br>Vauvasirkuksessa vahvistamme vanhemman ja lapsen välistä suhdetta leikin ja ilon kautta. Tutustumme pariakrobatiaan ja sirkusvälineisiin. Ikäsuositus 6–18kk.</p>",
                "sv": "<p>Blöjfolkets karneval, bebisars och småbarns egen festival, är tillbaka!</p><p>Malms kulturhus uppmuntrar barn att sträcka sig mot kulturen när huset fylls med föreställningar, verkstäder och annat program riktade till bebisar och småbarn.</p><p>I entrén i Malms kulturhus utlovas barnmusikorkester Puistopartios avgiftsfria konserter. I deras medryckande sånger är bland annat grävmaskiner, kippbilar och utryckningsfordon ute på äventyr. Kom med och sjung samt rör på dig till takten av arbetsmaskinsdanser!</p><p>Ta med dig ditt barn och rulla barnvagnen till Malms kulturhus i april!</p><p>En del av programmet är belagt med en inträdesavgift. Det fullständiga programmet publiceras i mars.</p><p>Åldersrekommendation: 0–3 år med familj.</p>",
                "en": "<p>The carnival for those in nappies, Vaippakansan karnevaali or Vaippis, a dedicated festival for babies and toddlers, is back!</p><p>Cultural Centre Malmitalo encourages children to reach out for culture as the house fills up with performances, workshops and other activities for babies and toddlers. <br>The Malmitalo lobby will host free concerts by the children's music group Puistopartio. Their captivating songs tell stories about the adventures of excavators, dump trucks, emergency vehicles and many more of the like. Come and sing and move with us in the rhythm of dancing work machines!<br>So bring your child and roll your stroller to Malmitalo in April! <br>Some of the programme is subject to an admission fee. The full programme will be published in March.<br>Recommended ages: 0–3 yrs. and their families.</p>"
            },
            "name": {
                "fi": "Vaippakansan karnevaali",
                "sv": "Blöjfolkets karneval",
                "en": "Carnival for those in nappies"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68136/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68271",
            "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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1674197,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T15:14:02.902267Z",
                    "last_modified_time": "2026-03-19T15:14:02.902283Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786140.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1674197/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T15:14:02.758211Z",
            "last_modified_time": "2026-03-20T01:14:30.535009Z",
            "date_published": null,
            "start_time": "2026-06-12T11:30:00Z",
            "end_time": "2026-06-12T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rakkaan kaupunkimme syntymäpäivänä tapahtumakesä tarjoaa kävijöille taas runsaan ohjelmapäivän täynnä tekemistä. Luvassa myös kaksi keikkaa, joissa mukana palkittuja artisteja maan huipulta."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva_Malmilla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva",
                "en": "http://www.malmitalo.fi/en/events/event/01BA3D940BFC1583059744C211303906/Helsinki-paiva"
            },
            "description": {
                "fi": "<p>Rakkaan kaupunkimme syntymäpäivänä tapahtumakesä tarjoaa kävijöille taas runsaan ohjelmapäivän täynnä tekemistä. Luvassa myös kaksi keikkaa, joissa mukana palkittuja artisteja maan huipulta.</p><p>Tarkempi aikataulu ja ohjelma julkaistaan toukokuussa.</p><p>Tapahtumiin on vapaa pääsy.</p>"
            },
            "name": {
                "fi": "Helsinki-päivä Malmilla – Malmin tapahtumakesä 2026",
                "sv": "Helsinki-päivä – Malmin tapahtumakesä 2026",
                "en": "Helsinki-päivä – Malmin tapahtumakesä 2026"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68188",
            "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/koiton-laulu-aseettomuuden-voima-malmitalo-21415913/",
                        "sv": "https://www.lippu.fi/event/koiton-laulu-aseettomuuden-voima-malmitalo-21415913/",
                        "en": "https://www.lippu.fi/event/koiton-laulu-aseettomuuden-voima-malmitalo-21415913/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80€-17,80€",
                        "sv": "24,80€-17,80€",
                        "en": "24,80€-17,80€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1586461,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T09:13:16.200025Z",
                    "last_modified_time": "2026-03-10T09:13:16.200038Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786116.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586461/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-10T09:13:16.093926Z",
            "last_modified_time": "2026-03-20T01:14:26.555195Z",
            "date_published": null,
            "start_time": "2026-05-26T16: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/F1BD238AB237B728C735A825AB9CCC0B/Koiton_Laulu_Aseettomuuden_voima",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F1BD238AB237B728C735A825AB9CCC0B/Koiton_Laulu_Aseettomuuden_voima",
                "en": "http://www.malmitalo.fi/en/events/event/F1BD238AB237B728C735A825AB9CCC0B/Koiton_Laulu_Aseettomuuden_voima"
            },
            "description": {
                "fi": "<p>Koiton Laulun aktivismi on elänyt maailman muuttuessa. Kevään konsertissa kuuluu kuoron puheenvuoro asevarusteluun lukkiutuvassa maailmassa. Aseettomuuden voima on konsertti, joka kuljettaa kuulijoitaan lähihistoriassa, pimeyden ja valon vaihtelussa, kutsuu mukaan luottamaan laulun ja runon voimaan. Sanomme: Ei sodalle!</p><p>Neljänkymmenen laulajan sekakuoroa johtaa Petri Tiainen.</p><p>Kesto: 1 t 30 min</p>"
            },
            "name": {
                "fi": "Koiton Laulu: Aseettomuuden voima – Lauluja sodasta ja rauhasta",
                "sv": "Koiton Laulu: Aseettomuuden voima – Lauluja sodasta ja rauhasta",
                "en": "Koiton Laulu: Aseettomuuden voima – Lauluja sodasta ja rauhasta"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68188/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67599",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/lucasimbiriba/lucas-imbiriba-guitar-on-fire-4030160/",
                        "sv": "https://www.lippu.fi/artist/lucasimbiriba/lucas-imbiriba-guitar-on-fire-4030160/",
                        "en": "https://www.lippu.fi/artist/lucasimbiriba/lucas-imbiriba-guitar-on-fire-4030160/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90€-34,90€",
                        "sv": "29,90€-34,90€",
                        "en": "29,90€-34,90€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494113,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-08T07:13:02.596686Z",
                    "last_modified_time": "2025-12-08T07:13:02.596702Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782004.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-08T07:13:02.451235Z",
            "last_modified_time": "2026-03-20T01:14:23.360521Z",
            "date_published": null,
            "start_time": "2026-05-21T16: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": "Taiturikitaristi Lucas Imbiriba saapuu taas Suomeen!",
                "sv": "Gitarrivirtuosen Lucas Imbiriba kommer till Finland igen!",
                "en": "Guitarist Lucas Imbiriba is coming back to Finland!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F2061ACE3C95AAC558D962B7A12E74C5/Lucas_Imbiriba_BR_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F2061ACE3C95AAC558D962B7A12E74C5/Lucas_Imbiriba_BR_",
                "en": "http://www.malmitalo.fi/en/events/event/F2061ACE3C95AAC558D962B7A12E74C5/Lucas_Imbiriba_BR_"
            },
            "description": {
                "fi": "<p>Taiturikitaristi Lucas Imbiriba saapuu taas Suomeen!</p><p>Suomen kiertue ”Guitar on Fire” alkaa 21.5.2026 Malmitalosta.</p><p>Lucas Imbiriba on brasilialainen kitaristi ja lauluntekijä, joka tunnetaan ainutlaatuisista suosittujen kappaleiden sovituksista soolokitaralle. Lucas tunnetaan maailmanlaajuisesti näyttävistä ja henkeäsalpaavista kitaraesityksistään, jotka yhdistävät Flamenco-kitaran tulen, Latinalaisen Amerikan perkussiiviset rytmit, klassisen musiikin lyyriset melodiat ja rock’n’rollin voiman.</p><p>Vuonna 2020 Lucas Imbiriba tuli tunnetuksi Youtubessa, koska hänen Fingerstyleja akustiset versiot kappaleista, kuten Stairway to Heaven (Led Zeppelin), Desperado (Los Lobos) ja Hotel California (The Eagles) saavuttivat yli 20 miljoonaa katselukertaa alle vuodessa. Ja hänen Bohemian Rhapsodyn (The Queen) esitystä ei voi kutsua millään muulla kuin maagiseksi ja loistavaksi.</p><p>Äskettäin Lucas julkaisi uuden albuminsa \"Epic Journey\" Spotifyssa, joka sisältää 10 erinomaista sovitusta maailmanlaajuisesti kuuluisista elokuvateemoista, Classic Rock -kappaleesta ja alkuperäiskappaleista kitaralle.</p><p>Kesto: 1 t 50 min, sisältäen 20 min väliajan</p>",
                "sv": "<p>Gitarrivirtuosen Lucas Imbiriba kommer till Finland igen!</p><p>Finlandsturnén ”Guitar on Fire” startar 21.5.2026 från Malms kulturhus.</p><p>Lucas Imbiriba är en brasiliansk gitarrivirtuos och sångare känd för unika anpassningar av populära låtarrangemang för sologitarr. Lucas är känd runtom i världen för sina imponerande och hisnande gitarrföreställningar som förenar den eldiga Flamenco-gitarren med perkussiva rytmer från Latinamerika, den klassiska musikens lyriska melodier och rock’n’rollens kraft.</p><p>Lucas Imbiriba blev känd i Youtube 2020 då hans akustiska fingerstyle-versioner av låtar, såsom Stairway to Heaven (Led Zeppelin), Desperado (Los Lobos) och Hotel California (The Eagles), nådde över 20 miljoner visningar på mindre än ett år. Och hans framförande av Bohemia Rhapsody (Queen) kan inte beskrivas med andra ord än magiskt och lysande.</p><p>Lucas släppte nyligen sitt nya album ”Epic Journey” på Spotify. Albumet innehåller 10 utmärkta arrangemang av världsberömda filmteman, av en klassisk rocklåt och originallåtar för gitarr.</p><p>Längd: 1 h 50 min, inklusive en paus på 20 min.</p>",
                "en": "<p>Guitarist Lucas Imbiriba is coming back to Finland!</p><p>His Finnish tour ‘Guitar on Fire’ will start from Malmitalo on 21 May 2026.</p><p>Lucas Imbiriba is a Brazilian guitarist and songwriter known for his unique arrangements of popular songs for solo guitar. Lucas is known worldwide for his impressive and breathtaking guitar performances that combine the fire of flamenco guitar, the percussive rhythms of Latin America, the lyrical melodies of classical music and the power of rock'n'roll.</p><p>In 2020, Lucas Imbiriba became famous on YouTube when his fingerstyle acoustic versions of songs such as Stairway to Heaven (Led Zeppelin), Desperado (Los Lobos) and Hotel California (The Eagles) reached over 20 million views in less than a year. And his performance of Bohemian Rhapsody (Queen) can only be described as magical and brilliant.</p><p>Recently, Lucas released his new album ‘Epic Journey’ on Spotify, containing 10 excellent arrangements of world famous movie themes, classic rock songs and original songs for guitar.</p><p>Duration: 1 h 50 min, including a 20 min intermission</p>"
            },
            "name": {
                "fi": "Lucas Imbiriba (BR)",
                "sv": "Lucas Imbiriba (BR)",
                "en": "Lucas Imbiriba (BR)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67599/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67469",
            "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": 1494013,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:11.160660Z",
                    "last_modified_time": "2025-12-03T08:13:11.160676Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781436.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494013/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:11.046257Z",
            "last_modified_time": "2026-03-20T01:14:20.239203Z",
            "date_published": null,
            "start_time": "2026-05-12T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/9F1D8C4D84688DEDF9DF5DE98CA77820/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67469/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67419",
            "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-super-mario-galaxy-movie-malmitalo-21472894/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472894/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472894/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€",
                        "sv": "7€",
                        "en": "7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:58.682407Z",
                    "last_modified_time": "2026-03-19T12:14:58.682421Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781121.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:58.552389Z",
            "last_modified_time": "2026-03-20T01:14:18.607146Z",
            "date_published": null,
            "start_time": "2026-05-09T12: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/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_",
                "en": "http://www.malmitalo.fi/en/events/event/DEAA19AEA3985F4FAC406B62D7B21C56/The_Super_Mario_Galaxy_Movie_7_"
            },
            "description": {
                "fi": "<p>Animaatioelokuva The Super Mario Galaxy Movie perustuu Super Mario Bros. -pelisarjan maailmaan. Elokuva jatkaa vuonna 2023 ensi-iltansa saaneen ja yli 1,3 miljardia dollaria tuottaneen The Super Mario Bros. Movie -elokuvan tarinaa. Sekä vuoden 2023 elokuva että The Super Mario Galaxy Movie -elokuva ovat Illuminationin Chris Meledandrin ja Nintendon Shigeru Miyamoton yhteistuotantoja.</p><p>Elokuvan rahoituksesta vastaavat yhdessä Universal Pictures ja Nintendo ja sen kansainvälinen levittäjä on Universal Pictures.</p><p>The Super Mario Galaxy Movien ohjaajina ovat The Super Mario Bros. Movie -elokuvasta tutut nimet, Aaron Horvath ja Michael Jelenic. Edellisen elokuvan tapaan käsikirjoittajana on Matthew Fogel ja elokuvan musiikin on säveltänyt Brian Tyler.</p><p>Ikäraja: 7<br>Kesto: 98 min<br>Ensi-ilta: 1.4.2026<br>Elokuva on puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "The Super Mario Galaxy Movie (7) – Kino Helios",
                "sv": "The Super Mario Galaxy Movie (7) – Kino Helios",
                "en": "The Super Mario Galaxy Movie (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67419/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68121",
            "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/malmin-mieslaulajat-malmitalo-21256700/",
                        "sv": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-21256700/",
                        "en": "https://www.lippu.fi/event/malmin-mieslaulajat-malmitalo-21256700/"
                    },
                    "description": null,
                    "price": {
                        "fi": "19,80 €",
                        "sv": "19,80 €",
                        "en": "19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494898,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-18T13:13:41.238799Z",
                    "last_modified_time": "2026-02-18T13:13:41.238815Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785668.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494898/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-18T13:13:41.155450Z",
            "last_modified_time": "2026-03-20T01:14:16.052060Z",
            "date_published": null,
            "start_time": "2026-05-05T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ABD01044D9F4FD7460F84FC253B87343/Tiistain_toivotut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/ABD01044D9F4FD7460F84FC253B87343/Tiistain_toivotut",
                "en": "http://www.malmitalo.fi/en/events/event/ABD01044D9F4FD7460F84FC253B87343/Tiistain_toivotut"
            },
            "description": {
                "fi": "<p>Malmin mieslaulajien kevätkonsertti, missä kansan rakastamia ikivihreitä - Satumaasta Villiruusuun - mieskuoroesityksinä.</p><p>Kuoroa johtaa Marjasisko Varha</p><p>Avustaja samalla lipulla ainoastaan pyörätuoliasiakkaan saattajana.</p><p>Kesto: 1t 40 min, sis. 20 min väliajan</p>"
            },
            "name": {
                "fi": "Tiistain toivotut – Malmin Mieslaulajat: kevätkonsertti",
                "sv": "Tiistain toivotut – Malmin Mieslaulajat: kevätkonsertti",
                "en": "Tiistain toivotut – Malmin Mieslaulajat: kevätkonsertti"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67413",
            "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-super-mario-galaxy-movie-malmitalo-21472893/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472893/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472893/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€",
                        "sv": "7€",
                        "en": "7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672951,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:56.607288Z",
                    "last_modified_time": "2026-03-19T12:14:56.607303Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781112.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:56.474644Z",
            "last_modified_time": "2026-03-20T01:14:15.042449Z",
            "date_published": null,
            "start_time": "2026-05-02T12: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/53C57164931DA3A2DAB3D28D6A575001/The_Super_Mario_Galaxy_Movie_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/53C57164931DA3A2DAB3D28D6A575001/The_Super_Mario_Galaxy_Movie_7_",
                "en": "http://www.malmitalo.fi/en/events/event/53C57164931DA3A2DAB3D28D6A575001/The_Super_Mario_Galaxy_Movie_7_"
            },
            "description": {
                "fi": "<p>Animaatioelokuva The Super Mario Galaxy Movie perustuu Super Mario Bros. -pelisarjan maailmaan. Elokuva jatkaa vuonna 2023 ensi-iltansa saaneen ja yli 1,3 miljardia dollaria tuottaneen The Super Mario Bros. Movie -elokuvan tarinaa. Sekä vuoden 2023 elokuva että The Super Mario Galaxy Movie -elokuva ovat Illuminationin Chris Meledandrin ja Nintendon Shigeru Miyamoton yhteistuotantoja.</p><p>Elokuvan rahoituksesta vastaavat yhdessä Universal Pictures ja Nintendo ja sen kansainvälinen levittäjä on Universal Pictures.</p><p>The Super Mario Galaxy Movien ohjaajina ovat The Super Mario Bros. Movie -elokuvasta tutut nimet, Aaron Horvath ja Michael Jelenic. Edellisen elokuvan tapaan käsikirjoittajana on Matthew Fogel ja elokuvan musiikin on säveltänyt Brian Tyler.</p><p>Ikäraja: 7<br>Kesto: 98 min<br>Ensi-ilta: 1.4.2026<br>Elokuva on puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "The Super Mario Galaxy Movie (7) – Kino Helios",
                "sv": "The Super Mario Galaxy Movie (7) – Kino Helios",
                "en": "The Super Mario Galaxy Movie (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67413/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68171",
            "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": 1518709,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-04T08:14:43.377821Z",
                    "last_modified_time": "2026-03-04T08:14:43.377837Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785961.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1518709/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-04T08:14:43.257590Z",
            "last_modified_time": "2026-03-20T01:14:14.641328Z",
            "date_published": null,
            "start_time": "2026-04-30T16: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/F3BD89B8A177DF0B80AE4B46F0BF8733/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F3BD89B8A177DF0B80AE4B46F0BF8733/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit",
                "en": "http://www.malmitalo.fi/en/events/event/F3BD89B8A177DF0B80AE4B46F0BF8733/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit"
            },
            "description": {
                "fi": "<p>Ammattiopiskelijoista koostuvat bändit saapuvat Malmitaloon ja illassa nähdään kaksi konserttia:</p><p>Pessi Lehtinen Quartet</p><p>Kvartetti soittaa modernia jazzia, jossa yhdistyvät pohjoisen avoin sointi ja nykyjazzin urbaani energia. Vibrafonisti ja säveltäjä Pessi Lehtisen johdolla yhtye rakentaa musiikkia, joka elää improvisaatiosta ja vahvasta vuorovaikutuksesta. Kvartetti on parhaillaan valmistelemassa debyyttialbumiaan, jonka julkaisu on suunnitteilla vuodelle 2026.</p><p>Pessi Lehtinen - vibrafoni, sävellykset<br>Tobias Schenk - piano<br>Santeri Saari - rummut<br>Joel Wikström - kontrabasso</p><p>SADETTA LUVASSA</p><p>SADETTA LUVASSA: Suomen tyylikkäin kunnianosoitus Saden musiikille</p><p>Sadetta luvassa on 6-henkinen tribuuttiyhtye, joka tempaisee yleisön mukaansa smooth<br>jazzin ja r&b:n maailmaan Saden musiikin avulla. Yhtye aloitti uransa 1980-luvulla<br>julkaisemalla debyyttialbuminsa Diamond Life (1984), johon kuului muun muassa tunnetut<br>hitit Smooth Operator ja Your Love Is King. Tähänkin päivään asti yhtyettä kuunnellaan maailmanlaajuisesti ja Sade Adu tunnetaan yhtenä maailman mieleenpainuvimmista laulajista. Luvassa on musiikkia monilta eri albumeilta, ja settilistaan kuuluu maailman rakastamat hitit.</p><p>Ottakaa sateenvarjot mukaan, sillä illalla on SADETTA LUVASSA!</p><p>Siiri Manninen - Kitara ja taustalaulu<br>Helmi Ketola - Koskettimet ja taustalaulu<br>Emmi Kettunen - Laulu<br>Lassi Seppälä - Rummut<br>Teemu Majuri - Basso ja taustalaulu<br>Eemeli Ylä-Anttila – Saksofoni</p><p>Kesto: 2 t, sis 20min väliajan</p><p>Vapaa pääsy, tervetuloa!</p>"
            },
            "name": {
                "fi": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit",
                "sv": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit",
                "en": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68171/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68170",
            "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": 1518238,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-04T07:13:18.286079Z",
                    "last_modified_time": "2026-03-04T07:13:18.286095Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785960.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1518238/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-04T07:13:18.139245Z",
            "last_modified_time": "2026-03-20T01:14:13.237151Z",
            "date_published": null,
            "start_time": "2026-04-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": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit",
                "en": "http://www.malmitalo.fi/en/events/event/5F0D9951C5930857DCD7130CFC99A03F/Pop_Jazz_Konservatorion_ammattiopiskelijoiden_konsertit"
            },
            "description": {
                "fi": "<p>Ammattiopiskelijoista koostuvat bändit saapuvat Malmitaloon ja illassa nähdään kaksi konserttia:</p><p>Unelmiin mä jään -Disney-musikaali</p><p>Unelmiin mä jään -Disneymusikaali kertoo kahden eri taustoista tulevan nuoren ystävyydestä. Cindy (Jenna Mikkanen) ja Rosie (Aino Oikarinen) kohtaavat musiikkikoulussa yhteisen unelmansa äärellä, ja heidän välinen ystävyys alkaa kuin itsestään. Vanhat tuulet puhaltavat koulun käytäville, mikä saa ystävysten välit rakoilemaan, ja entisen elämän vaietut salaisuudet nousevat jälleen pintaan. Miksi menneisyyttä salataan? Kuka huijaa ketä? Miten Cindyn ja Rosien ystävyydelle käy?</p><p>Unelmiin mä jään” on Helsingin Pop & Jazz konservatorion opiskelijoiden käsikirjoittama ja ohjaama teos. Lavalla nähdään yli 20-henkinen kokoonpano, joka herättää eloon uuden tarinan Disneyn klassikoiden säestämänä. Tule näkemään, kun satukirja avautuu, ja kuule lempi Disney-kappaleesi livenä.</p><p>Solistit:<br>Laulu - Jenna Mikkanen<br>Laulu - Aino OIkarinen</p><p>Bändi:<br>Piano - Helmi Ketola<br>Kitara - Elvan Deveci<br>Basso - Daniel Boswell<br>Rummut - Vilppu Lokki<br>Perkat - Joel Mäntyvaara</p><p>Orkesteri:<br>Alttoviulu - Elena Rusakova<br>Viulu - Ellen Hellberg <br>Viulu - Riina Åmann<br>Sello - Olivia Sirén<br>Saksofoni - Eemeli Ylianttila<br>Klarinetti - Silja Muttonen<br>Huilu - Anniina Tuomaala<br>Pasuuna - Emily Miettunen<br>Trumpetti - Joona Hirvonen</p><p>Ensemble:<br>Taustalaulu - Aino Kallio<br>Taustalaulu - Minttu Tenhovirta<br>Taustalaulu - Aurora Konttinen<br>Taustalaulu - Ruut Särkijärvi</p><p>Laulu  - Panu Laakso<br>Kertoja - Axel Arttio</p><p>GAGA - The Mayhem Miniature' on kokonaisvaltainen pienoismalli Lady Gagan 2025-2026 konserttikiertueesta The Mayhem Ball Tour. Lavashow'sta on tehty artistinsa arvoinen, mikä sisältää kahden koreografin tanssikoreografiat, kahdeksan hengen livebändin, sekä laulusolistin sovituksen ja ohjauksen läpi ohjelmiston. Solistina toimii kokonaisvaltainen esiintyjä ja ammattilaulaja Saimi Räty.</p><p>Ohjelmisto on monipuolinen, kuten Gagan omalla kiertueellakin. Tulet esimerkiksi kuulemaan kappaleita legendaariselta The Fame -albumilta, sekä myös uusimmalta läpilyöneeltä albumilta Mayhem. Olitpa sitten Gaga -fani taikka et, tämä on mahdollisuus nauttia taidokkaimmista laulunuoteista, vahvan elektronisen musiikin voimasta, sekä ammattitason tanssijoista, laulusolisti tanssijana mukaanlukien. Tervetuloa Mayhemiin!</p><p>Saimi Räty - voc<br>Onni Koivisto - drums<br>Sofía Kaipainen - bass, synth bass<br>Elli Astikainen - synth, synth bass<br>Aamu Kallio - keys, synth<br>Pyry Aaltonen - guitar<br>Elizabeth Krause - B voc</p><p>Kesto: 2 t, sis 20min väliajan</p><p>Vapaa pääsy, tervetuloa!</p>"
            },
            "name": {
                "fi": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit",
                "sv": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit",
                "en": "Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68170/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67409",
            "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-super-mario-galaxy-movie-malmitalo-21472892/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472892/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472892/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€",
                        "sv": "7€",
                        "en": "7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672950,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:55.334449Z",
                    "last_modified_time": "2026-03-19T12:14:55.334466Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781106.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672950/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:55.204727Z",
            "last_modified_time": "2026-03-20T01:14:12.563764Z",
            "date_published": null,
            "start_time": "2026-04-25T12: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/A82AFDC0B6DC6C65C0ABB668A907189B/The_Super_Mario_Galaxy_Movie_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A82AFDC0B6DC6C65C0ABB668A907189B/The_Super_Mario_Galaxy_Movie_7_",
                "en": "http://www.malmitalo.fi/en/events/event/A82AFDC0B6DC6C65C0ABB668A907189B/The_Super_Mario_Galaxy_Movie_7_"
            },
            "description": {
                "fi": "<p>Animaatioelokuva The Super Mario Galaxy Movie perustuu Super Mario Bros. -pelisarjan maailmaan. Elokuva jatkaa vuonna 2023 ensi-iltansa saaneen ja yli 1,3 miljardia dollaria tuottaneen The Super Mario Bros. Movie -elokuvan tarinaa. Sekä vuoden 2023 elokuva että The Super Mario Galaxy Movie -elokuva ovat Illuminationin Chris Meledandrin ja Nintendon Shigeru Miyamoton yhteistuotantoja.</p><p>Elokuvan rahoituksesta vastaavat yhdessä Universal Pictures ja Nintendo ja sen kansainvälinen levittäjä on Universal Pictures.</p><p>The Super Mario Galaxy Movien ohjaajina ovat The Super Mario Bros. Movie -elokuvasta tutut nimet, Aaron Horvath ja Michael Jelenic. Edellisen elokuvan tapaan käsikirjoittajana on Matthew Fogel ja elokuvan musiikin on säveltänyt Brian Tyler.</p><p>Ikäraja: 7<br>Kesto: 98 min<br>Ensi-ilta: 1.4.2026<br>Elokuva on puhuttu suomeksi</p>"
            },
            "name": {
                "fi": "The Super Mario Galaxy Movie (7) – Kino Helios",
                "sv": "The Super Mario Galaxy Movie (7) – Kino Helios",
                "en": "The Super Mario Galaxy Movie (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67409/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67563",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21080993/",
                        "sv": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21080993/",
                        "en": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21080993/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494339,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-30T14:13:08.261655Z",
                    "last_modified_time": "2025-12-30T14:13:08.261669Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781736.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-30T14:13:08.151813Z",
            "last_modified_time": "2026-03-20T01:14:12.319557Z",
            "date_published": null,
            "start_time": "2026-04-25T12: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": "Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.",
                "sv": "De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.",
                "en": "Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6C5CD97600F1AFAAF7B8D289185E7799/LOPPUUNMYYTY_Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6C5CD97600F1AFAAF7B8D289185E7799/SLUTSALT_Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina_Tatu_och_Patu_som_detektiver_",
                "en": "http://www.malmitalo.fi/en/events/event/6C5CD97600F1AFAAF7B8D289185E7799/SOLD-OUT_Hevosenkenka_Theatre_Tatu_ja_Patu_etsivina"
            },
            "description": {
                "fi": "<p>Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.</p><p>Mysteerien selvittämiseen tarvitaan rautahermoisten ammattilaisten terävää ja äärettömän nopeaa päättelykykyä. Tatu ja Patu perustavat etsivätoimiston ja heidän outolalaiset älynystyränsä joutuvat tositoimiin.<br>Kuka tämä mystinen Puolittaja on?<br>Missä hän piileksii?<br>Ja miksi hän puolittaa?<br>Vahingonteot on selvitettävä, ja siihen pystyvät vain etsivä Tatu ja etsivä Patu.</p><p>Tekijät:<br>Dramatisointi ja ohjaus: Elina Stirkkinen<br>Nuket: Fanni Lieto<br>Lavastus: Juhana Hirvonen<br>Musiikki: Tommi Lindell<br>Laulu: Maiju Lindell<br>Valosuunnittelu ja projisoinnit: Jani Salmi<br>Äänisuunnittelu: Janne Levänen<br>Rooleissa: Krista Putkonen-Örn ja Antero Nieminen<br>Äänirooleissa: Pekka Heiman, Tuisku Levänen, Mona Salmi ja Elina Stirkkinen<br>Esitystekniikka: Janne Levänen ja Jani Salmi<br>Lavasteiden rakennus: Horst Wein ja Juhana Hirvonen</p><p>Esitys perustuu kirjaan: Aino Havukainen ja Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Kesto: noin 45 min<br>Ikäsuositus: 3+<br>Kieli: suomi</p>",
                "sv": "<p>De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.</p><p>För att lösa gåtorna krävs järnnerviga proffs med blixtsnabb slutledningsförmåga! Tatu och Patu grundar en detektivbyrå, och deras knasiga hjärnor får verkligen jobba.<br>Vem är denna mystiska Halveraren?<br>Var gömmer hen sig?<br>Och varför halverar hen?<br>Skadegörelsen måste uppklaras – och bara detektiven Tatu och detektiven Patu klarar det!</p><p>Skapare:<br>Dramatisering och regi: Elina Stirkkinen<br>Dockor: Fanni Lieto<br>Iscensättning: Juhana Hirvonen<br>Musik: Tommi Lindell<br>Sång: Maiju Lindell<br>Ljusdesign och projicering: Jani Salmi<br>Ljuddesign: Janne Levänen<br>I rollerna: Krista Putkonen-Örn och Antero Nieminen<br>I röstrollerna: Pekka Heiman, Tuisku Levänen, Mona Salmi och Elina Stirkkinen<br>Föreställningsteknik: Janne Levänen och Jani Salmi<br>Kulissbygge: Horst Wein och Juhana Hirvonen</p><p>Föreställningen baserar sig på boken: Aino Havukainen och Sami Toivonen TATU JA PATU ETSIVINÄ – Tapaus Puolittaja (TATU OCH PATU SOM DETEKTIVER – Fallet Halveraren)</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 3+<br>Språk: finska</p>",
                "en": "<p>Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events.</p><p>Solving these mysteries demands the sharp and lightning-fast skills of reasoning of professionals with nerves of steel. Tatu and Patu set up a detective agency, putting their big brains into work.<br>Who is this mysterious villain?<br>Where are they hiding?<br>And why do they keep halving stuff?<br>These misdeeds must be solved, and only detectives Tatu and Patu can do it.</p><p>Creators:<br>Dramatised and directed by: Elina Stirkkinen<br>Puppets: Fanni Lieto<br>Staging: Juhana Hirvonen<br>Music: Tommi Lindell<br>Vocals: Maiju Lindell<br>Lighting design and projections: Jani Salmi<br>Sound design: Janne Levänen<br>Starring: Krista Putkonen-Örn and Antero Nieminen<br>Voice roles: Pekka Heiman, Tuisku Levänen, Mona Salmi and Elina Stirkkinen<br>Presentation technology: Janne Levänen and Jani Salmi<br>Stage building: Horst Wein and Juhana Hirvonen</p><p>The performance is based on the book: Aino Havukainen and Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Duration: approximately 45 minutes<br>Recommended ages: 3+<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY: Teatteri Hevosenkenkä: Tatu ja Patu etsivinä",
                "sv": "SLUTSÅLT: Teatteri Hevosenkenkä: Tatu ja Patu etsivinä (Tatu och Patu som detektiver)",
                "en": "SOLD-OUT: Hevosenkenkä Theatre: Tatu ja Patu etsivinä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67563/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68179",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/",
                        "sv": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/",
                        "en": "https://www.lippu.fi/event/tatu-ja-patu-etsivina-tapaus-puolittaja-malmitalo-21411055/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1574887,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-09T08:13:01.173037Z",
                    "last_modified_time": "2026-03-09T08:13:01.173050Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1574887/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-09T08:13:01.055179Z",
            "last_modified_time": "2026-03-20T01:14:11.720001Z",
            "date_published": null,
            "start_time": "2026-04-25T10: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/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Teatteri_Hevosenkenka_Tatu_ja_Patu_etsivina_Tatu_och_Patu_som_detektiver_",
                "en": "http://www.malmitalo.fi/en/events/event/E70A1C43469F5DCCDE1D3C62EA5DAFF4/Hevosenkenka_Theatre_Tatu_ja_Patu_etsivina"
            },
            "description": {
                "fi": "<p>Omituiset puolittamistapaukset Outolassa tempaavat Tatun ja Patun keskelle salaperäisten tapahtumien ketjua.</p><p>Mysteerien selvittämiseen tarvitaan rautahermoisten ammattilaisten terävää ja äärettömän nopeaa päättelykykyä. Tatu ja Patu perustavat etsivätoimiston ja heidän outolalaiset älynystyränsä joutuvat tositoimiin.<br>Kuka tämä mystinen Puolittaja on?<br>Missä hän piileksii?<br>Ja miksi hän puolittaa?<br>Vahingonteot on selvitettävä, ja siihen pystyvät vain etsivä Tatu ja etsivä Patu.</p><p>Tekijät:<br>Dramatisointi ja ohjaus: Elina Stirkkinen<br>Nuket: Fanni Lieto<br>Lavastus: Juhana Hirvonen<br>Musiikki: Tommi Lindell<br>Laulu: Maiju Lindell<br>Valosuunnittelu ja projisoinnit: Jani Salmi<br>Äänisuunnittelu: Janne Levänen<br>Rooleissa: Krista Putkonen-Örn ja Antero Nieminen<br>Äänirooleissa: Pekka Heiman, Tuisku Levänen, Mona Salmi ja Elina Stirkkinen<br>Esitystekniikka: Janne Levänen ja Jani Salmi<br>Lavasteiden rakennus: Horst Wein ja Juhana Hirvonen</p><p>Esitys perustuu kirjaan: Aino Havukainen ja Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Kesto: noin 45 min<br>Ikäsuositus: 3+<br>Kieli: suomi</p>",
                "sv": "<p>De märkliga halveringsfallen i Outola kastar Tatu och Patu rakt in i en kedja av mystiska händelser.</p><p>För att lösa gåtorna krävs järnnerviga proffs med blixtsnabb slutledningsförmåga! Tatu och Patu grundar en detektivbyrå, och deras knasiga hjärnor får verkligen jobba.<br>Vem är denna mystiska Halveraren?<br>Var gömmer hen sig?<br>Och varför halverar hen?<br>Skadegörelsen måste uppklaras – och bara detektiven Tatu och detektiven Patu klarar det!</p><p>Skapare:<br>Dramatisering och regi: Elina Stirkkinen<br>Dockor: Fanni Lieto<br>Iscensättning: Juhana Hirvonen<br>Musik: Tommi Lindell<br>Sång: Maiju Lindell<br>Ljusdesign och projicering: Jani Salmi<br>Ljuddesign: Janne Levänen<br>I rollerna: Krista Putkonen-Örn och Antero Nieminen<br>I röstrollerna: Pekka Heiman, Tuisku Levänen, Mona Salmi och Elina Stirkkinen<br>Föreställningsteknik: Janne Levänen och Jani Salmi<br>Kulissbygge: Horst Wein och Juhana Hirvonen</p><p>Föreställningen baserar sig på boken: Aino Havukainen och Sami Toivonen TATU JA PATU ETSIVINÄ – Tapaus Puolittaja (TATU OCH PATU SOM DETEKTIVER – Fallet Halveraren)</p><p>Längd: cirka 45 min.<br>Åldersrekommendation: 3+<br>Språk: finska</p>",
                "en": "<p>Strange cases of halving occurring in Outola plunge Tatu and Patu into the middle of a chain of mysterious events.</p><p>Solving these mysteries demands the sharp and lightning-fast skills of reasoning of professionals with nerves of steel. Tatu and Patu set up a detective agency, putting their big brains into work.<br>Who is this mysterious villain?<br>Where are they hiding?<br>And why do they keep halving stuff?<br>These misdeeds must be solved, and only detectives Tatu and Patu can do it.</p><p>Creators:<br>Dramatised and directed by: Elina Stirkkinen<br>Puppets: Fanni Lieto<br>Staging: Juhana Hirvonen<br>Music: Tommi Lindell<br>Vocals: Maiju Lindell<br>Lighting design and projections: Jani Salmi<br>Sound design: Janne Levänen<br>Starring: Krista Putkonen-Örn and Antero Nieminen<br>Voice roles: Pekka Heiman, Tuisku Levänen, Mona Salmi and Elina Stirkkinen<br>Presentation technology: Janne Levänen and Jani Salmi<br>Stage building: Horst Wein and Juhana Hirvonen</p><p>The performance is based on the book: Aino Havukainen and Sami Toivonen: TATU JA PATU ETSIVINÄ -Tapaus Puolittaja</p><p>Duration: approximately 45 minutes<br>Recommended ages: 3+<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "Teatteri Hevosenkenkä: Tatu ja Patu etsivinä",
                "sv": "Teatteri Hevosenkenkä: Tatu ja Patu etsivinä (Tatu och Patu som detektiver)",
                "en": "Hevosenkenkä Theatre: Tatu ja Patu etsivinä"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67597",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/",
                        "sv": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/",
                        "en": "https://www.lippu.fi/artist/tinyhawk-bizzarro/tinyhawk-bizzarro-viive-4037220/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494106,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T11:12:56.318262Z",
                    "last_modified_time": "2025-12-05T11:12:56.318277Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781996.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494106/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T11:12:56.192636Z",
            "last_modified_time": "2026-03-20T01:14:11.275796Z",
            "date_published": null,
            "start_time": "2026-04-24T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ennakkoluulotonta musiikkihulluutta, massiivisia kitaravalleja ja psykedeelistä funkya!",
                "sv": "Fördomsfri musikalisk galenskap, massiva gitarrvallar och psykedelisk funk!",
                "en": "Open-minded musical madness, massive guitar riffs and psychedelic funk!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro",
                "en": "http://www.malmitalo.fi/en/events/event/F9FBD68F7D5730902676AF9BCB8ED575/Tinyhawk_Bizzarro"
            },
            "description": {
                "fi": "<p>Ennakkoluulotonta musiikkihulluutta, massiivisia kitaravalleja ja psykedeelistä funkya!</p><p>Kinnuselle sähkökitara on enemmän kuin pelkkä soitin. Tinyhawk & Bizzarro-yhtyeen pääsolistin ja säveltäjän käsissä kitara on avaruusraketti ja portti estoitta tanssivan mielikuvituksen maailmaan. Rosita Luu-yhtyeen kitaristina suomalaisen indiepopin äänimaisemaa herkkävaistoisella Jenni tyylikkyydellään rikastuttanut Kinnunen ei ole tarponut tavanomaisimpia polkuja soittajana ja se kuuluu. Hänen soitossaan ja sävellyksissään soi oma ääni.</p><p>Vuosia kyteneet unelmat ja visiot omasta musiikista vaativat oikeat liittolaiset päästäkseen lentoon. Vastaus löytyi Savosta. Kitaristi Markus Väisäsen vuosia luotsaama Bizzarro-trio oli valmiiksi täsmälleen oikealla aaltopituudella operoiva, värisävyt ja rytmit hallitseva oikea bändi. Kevät-talvella 2022 palaset asettuvat oikeaan asentoon, vaivattomasti, jopa maagisen oloisesti. Väisäsen kitara on telepaattisessa yhteydessä Jenni Kinnusen soittoon ja basso-rumpu-pari Teemu Aho ja Jaakko Pöyhönen luo jykevän perustan kitaroiden liihottelulle. Kinnusen mielen sopukoissa pyörinyt musiikki oli selvästi tarkoitettu tämän yhtyeen soitettavaksi!</p><p>Tinyhawkin kitarainen maailma on täynnä seikkailua, silmissä viliseviä maisemia ja sukelluksia yllättäviin tilanteisiin. Eletty ja koettu muuttuu musiikiksi. Flamencon tanssillinen totaalisuus. Klassisen kitaran espanjalaiset klassikot. Ghibli-animaatioista roihahtanut hullu rakkaus japanilaiseen kulttuuriin. Beatles-Black Sabbath-Jay Reatard-Grimes-akselilta rehottava ennakkoluuloton musiikkihulluus. Savolaisuus. Sielunsukulaisuus Khruangbin psykedeelisen funkyyn mielikuvitusetnoon. Massiiviset kitaravallit. Sekopäinen euforia diskon tanssilattialla. Melankolian syvä lämpö. Kaikki tämä kuuluu Tinyhawk & Bizzarron musiikissa, jossa olennaisinta on tuntemisen kokemus. Sillä luodaan yhteyksiä kaikkiin ulottuvuuksiin.</p><p>Rohkea ja tuore ote kitarainstrumentaalimusiikkiin ei ole jäänyt huomaamatta. Tinyhawk & Bizzarron debyytti ”Nekorok” sai riemastuneen vastaanoton suomalaisen musiikkimedian kovilta konkareilta syksyllä 2023. Helsingin Sanomien Ilkka Mattilan mukaan ” yhtyeen esikoisalbumi Nekorok kuulostaa raikkaalta tuulelta, joka puhaltaa pölyt pois ullakolle turvaan talletetusta suomalaisesta sähkökitaramusiikista.” Yleisradion Susanna Vainiola ihastui ”kitaralla kerrottuihin tarinoihin”. Arttu Seppänen totesi Keskisuomalaisessa Tinyhawk-debyytin olevan ”yksi tämän syksyn ilahduttavimpia kotimaisia albumeja.”</p><p>Tinyhawk & Bizzarro on palkittu tammikuussa 2024 ”Vuoden tulokas” -palkinnolla Indie Awardseissa ja voitti arvostetun Teosto -palkinnon huhtikuussa 2024.Uusi albumi “Neko-A-Sekoi” sai päivänvalon lokakuussa 2025, ja se julkaistiin mitä parhaimman Humu Recordsin toimesta. Helsingin Sanomien Harri römpötti antoi albumille täydet viisi tähteä.</p><p>Tinyhawk & Bizzarro on:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>",
                "sv": "<p>Fördomsfri musikalisk galenskap, massiva gitarrvallar och psykedelisk funk!</p><p>För Jenni Kinnunen är elgitarren mer än bara ett instrument. I händerna på Tinyhawk & Bizzarros huvudsolist och kompositör är gitarren en rymdraket och en port till den ohämmat dansande fantasins värld. Kinnunen, som har berikat det finländska indiepop-ljudlandskapet med sin sensitiva stil som gitarrist i bandet Rosita Luu, har inte gått de allra vanligaste vägarna som musiker, och det hörs. Hennes musik och kompositioner har en egen röst.</p><p>De drömmar och visioner om musiken som grott i flera år behövde rätt kompanjoner för att få luft under vingarna. Svaret fanns i Savolax. Bizzarro-trion, som letts av gitarristen Markus Väisänen i åratal, var ett riktigt band som redan opererade på exakt rätt våglängd och behärskade nyanserna och rytmerna. Under vårvintern 2022 föll bitarna på plats, utan ansträngning och nästan på ett magiskt sätt. Väisänens gitarr har telepatisk kontakt med Jenni Kinnunens musicerande och Teemu Aho och Jaakko Pöyhönen på bas och trummor skapar en solid grund för gitarrerna att sväva på. Den musik som snurrade i Kinnunens huvud var helt klart avsedd att spelas av detta band!</p><p>Tinyhawks gitarrvärld är full av äventyr, landskap som fladdrar förbi och djupdykningar i överraskande situationer. Det levda och upplevda förvandlas till musik. Flamencons dansanta totalitet. Spanska klassiker på klassisk gitarr. En galen kärlek till japansk kultur som föddes ur Ghibli-animationer. En fördomsfri musikalisk galenskap som lever på axeln Beatles-Black Sabbath-Jay Reatard-Grimes. Det savolaxiska. Ett själsfrändskap med Khruangbins psykedeliska funky fantasietno. Massiva gitarrvallar. Galen eufori på discots dansgolv. Melankolins djupa värme. Allt detta finns med i Tinyhawk & Bizzarros musik, där upplevelsen av att känna är det mest väsentliga. Den skapar länkar till alla dimensioner.</p><p>Det djärva och fräscha greppet om instrumental gitarrmusik har inte gått obemärkt förbi. Tinyhawk & Bizzarros debut ”Nekorok” togs emot med förtjusning av veteraner inom finsk musikmedia hösten 2023. Helsingin Sanomats Ilkka Mattila skrev att ”gruppens debutalbum Nekorok låter som en frisk fläkt som blåser bort dammet från den finländska elgitarrmusiken som lagts undan på vinden”. Susanna Vainiola på Yle blev förtjust i ”berättelserna som berättas med gitarren”. Arttu Seppänen skrev i Keskisuomalainen att Tinyhawks debut är ”ett av höstens mest glädjande finska album”.</p><p>Tinyhawk & Bizzarro utsågs till årets nykomling på Indie Awards i januari 2024 och tilldelades det prestigefyllda Teosto-priset i april 2024. Det nya albumet Neko-A-Sekoi såg dagens ljus i oktober 2025 och gavs ut av Humu Records. Helsingin Sanomats Harri Römpötti gav albumet fulla fem stjärnor.</p><p>Tinyhawk & Bizzarro är:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>",
                "en": "<p>Open-minded musical madness, massive guitar riffs and psychedelic funk!</p><p>For Jenni Kinnunen, the electric guitar is more than just an instrument. In the hands of the lead soloist and composer of the band Tinyhawk & Bizzarro, the guitar is a space rocket and a gateway to a world of imagination dancing without inhibitions. Kinnunen, who has enriched the Finnish indie pop soundscape with her intuitive elegance as a guitarist for the band Rosita Luu, has not taken the usual paths as a musician, and it shows. Her playing and compositions have their own unique sound.</p><p>The dreams and visions of her own music, which had been smouldering for years, needed the right allies to take flight. She found the answer in Savo. The Bizzarro trio, led for years by guitarist Markus Väisänen, was just the right band, operating on exactly the right wavelength and having a good command of colours and rhythms. In late winter and early spring 2022, the pieces fell into place effortlessly, as though by magic. Väisänen’s guitar has a telepathic connection with Jenni Kinnunen’s playing, and the bass-drum duo Teemu Aho and Jaakko Pöyhönen create a solid foundation for the flight of the guitars. The music that was swirling around in the recesses of Kinnunen’s mind was clearly meant to be played by this band!</p><p>Tinyhawk’s guitar world is full of adventure, sceneries flashing by, and dives into unexpected situations. The lived and the experienced turns into music. The totality of flamenco. Spanish classics for the classical guitar. A mad love for Japanese culture, sparked by Ghibli animations. An open-minded enthusiasm for music that feeds off the The Beatles-Black Sabbath-Jay Reatard-Grimes axis. Savo roots. A kinship with Khruangbin’s psychedelic, funky, imaginative ethno. Massive guitar riffs. Crazy euphoria on the dance floor of a disco. The deep warmth of melancholy. All of this is present in the music of Tinyhawk & Bizzarro, where the key is the experience of feeling. It creates connections to all dimensions.</p><p>The bold and fresh approach to guitar instrumental music has not gone unnoticed. Tinyhawk & Bizzarro’s debut album Nekorok was enthusiastically received by the veterans of the Finnish music media in autumn 2023. According to Ilkka Mattila from Helsingin Sanomat: “the band’s debut album Nekorok sounds like a breath of fresh air that blows the dust off the Finnish electric guitar music stored safely in the attic.” Susanna Vainiola from YLE was fascinated by “the stories told with the guitar”. Arttu Seppänen remarked in the Keskisuomalainen newspaper that Tinyhawk’s debut is “one of the most enjoyable Finnish albums of this autumn”.</p><p>Tinyhawk & Bizzarro received the ‘Newcomer of the Year’ award at the Indie Awards in January 2024 and won the prestigious Teosto Prize in April 2024. The band’s new album Neko-A-Sekoi was released in October 2025 by Humu Records, the best of the best. Harri Römpötti from Helsingin Sanomat gave the album a full five stars.</p><p>Tinyhawk & Bizzarro comprises:<br>Jenni Kinnunen<br>Teemu Aho<br>Markus Väisänen<br>Jaakko Pöyhönen</p>"
            },
            "name": {
                "fi": "Tinyhawk & Bizzarro – A la Malmi",
                "sv": "Tinyhawk & Bizzarro – A la Malmi",
                "en": "Tinyhawk & Bizzarro – A la Malmi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67597/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67596",
            "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:104/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4022118",
                        "sv": "https://www.lippu.fi/eventseries/name-4022118",
                        "en": "https://www.lippu.fi/eventseries/name-4022118"
                    },
                    "description": null,
                    "price": {
                        "fi": "11€/15€",
                        "sv": "11€/15€",
                        "en": "11€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494105,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T11:12:55.261533Z",
                    "last_modified_time": "2025-12-05T11:12:55.261548Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781994.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494105/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T11:12:55.145329Z",
            "last_modified_time": "2026-03-20T01:14:10.669701Z",
            "date_published": null,
            "start_time": "2026-04-24T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule kuulemaan tervolalaisen Mirjami Lehdon koskettavia runoja, jotka kertovat mm. syrjäytyneistä nuorista.",
                "sv": "Kom och lyssna på Mirjami Lehtos gripande dikter, som bland annat handlar om marginaliserade ungdomar.",
                "en": "Join us to listen to the touching poems on themes such as marginalised young people, written by Mirjami Lehto from Tervola."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B79CB23FD8D5DC2C07597EDB9A35FE7D/Mirjamin_Runot",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B79CB23FD8D5DC2C07597EDB9A35FE7D/Mirjamis_dikter",
                "en": "http://www.malmitalo.fi/en/events/event/B79CB23FD8D5DC2C07597EDB9A35FE7D/Mirjamin_Runot_Mirjami_s_poetry"
            },
            "description": {
                "fi": "<p>Tule kuulemaan tervolalaisen Mirjami Lehdon koskettavia runoja, jotka kertovat mm. syrjäytyneistä nuorista.</p><p>Elämäntyönsä Tervolassa opettajana tehnyt 94-vuotias Mirjami Lehto on kirjoittanut valtavan määrän runoja, joista Tervola Group on valinnut esitettäväkseen 50 runon kokoelman.</p><p>Mirjamin runojen pääosassa ovat Pohjolan luonto, arkielämä ja sen onnen hetket, ja tietysti rakkaus. Erityisen koskettavia ovat runot syrjäytyneistä, kelkasta pudonneista nuorista. Näihin hän tutustui toimiessaan erityisopettajana viimeisinä työvuosinaan. Runot käsittelevät myös ikääntymistä, lopuksi kuolemaakin. Näitä hän kuvaa kuitenkin riemukkaan ironisesti.</p><p>Markus Fagerudd on säveltänyt muutaman runon lauluiksi.<br>Esiintyjinä nähdään Tervola Group eli Eila Halonen, Markku Huhtamo, Juhani Laitala, Juha Mäntylä, Marja Pesonen ja Timo Pylkkänen.</p><p>Kesto: 1 t</p>",
                "sv": "<p>Kom och lyssna på Mirjami Lehtos gripande dikter, som bland annat handlar om marginaliserade ungdomar.</p><p>Mirjami Lehto, 94, som utfört sitt livsarbete som lärare i Tervola, har skrivit ett stort antal dikter, av vilka Tervola Group har valt ut en samling på 50 dikter att framföra.</p><p>Huvudsakligen behandlar Mirjamis dikter den nordiska naturen, vardagen och dess lyckostunder, och naturligtvis kärlek. Särskilt gripande är dikterna om marginaliserade ungdomar som hamnat utanför samhället. Hon bekantade sig med dessa under sina sista år som speciallärare. Dikterna behandlar också åldrandet och slutligen även döden. Dessa beskriver hon dock med fröjdefull ironi.</p><p>Markus Fagerudd har tonsatt några dikter till sånger.<br>De medverkande är: Tervola Group, det vill säga Eila Halonen, Markku Huhtamo, Juhani Laitala, Juha Mäntylä, Marja Pesonen och Timo Pylkkänen.</p><p>Längd: 1 h</p>",
                "en": "<p>Join us to listen to the touching poems on themes such as marginalised young people, written by Mirjami Lehto from Tervola.</p><p>Mirjami Lehto, 94, did her life’s work as a teacher in Tervola. She has written a large number of poems, of which the Tervola Group has selected a collection of 50 poems to present.</p><p>Mirjami's poetry focuses on the Arctic nature, everyday life and its moments of happiness, and, of course, love. Her poems about marginalised young people who have been left behind are especially touching. She got to know these young people when working as a special education teacher during the final years of her career. The poems also deal with themes such as ageing and even eventual death. These topics, however, she describes with hilarious irony.</p><p>Markus Fagerudd has set a few of her poems to songs.<br>The performers are the Tervola Group, comprising Eila Halonen, Markku Huhtamo, Juhani Laitala, Juha Mäntylä, Marja Pesonen and Timo Pylkkänen.</p><p>Duration: 1 h</p>"
            },
            "name": {
                "fi": "Mirjamin Runot",
                "sv": "Mirjamis dikter",
                "en": "Mirjamin Runot – Mirjami’s poetry"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67596/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}