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=3
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=4",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=2"
    },
    "data": [
        {
            "id": "kulke:67595",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "sv": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "en": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494103,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T10:12:54.343688Z",
                    "last_modified_time": "2025-12-05T10:12:54.343708Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494103/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T10:12:54.241230Z",
            "last_modified_time": "2026-03-20T01:14:09.989861Z",
            "date_published": null,
            "start_time": "2026-04-23T16: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": "Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.",
                "sv": "Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.",
                "en": "The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "en": "http://www.malmitalo.fi/en/events/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_"
            },
            "description": {
                "fi": "<p>Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.</p><p>Jimi Tenor Band julkaisi taannoin ensimmäisen studioalbuminsa ”Selenites, Selenites!”. Levy äänitettiin pääosin Hampurissa keväällä 2025. Musiikillisesti ”Selenites, Selenites!” jatkaa afro-romanttis-kosmisella<br>linjalla.</p><p>Jimi Tenor Band on huippumuusikoista koostuva yhtye, jonka kokoonpano on seuraava:</p><p>Jimi Tenor – saksofoni, huilu, syntetisaattorit, laulu<br>Ekow Alabi Savage – rummut, perkussiot, laulu<br>Eeti Nieminen – rummut, perkussiot, laulu<br>Heikki Tuhkanen – pasuuna, tuuba, laulu<br>Lauri Kallio – kitara, basso, laulu</p><p>Kesto: 2 t, sis 20 min väliajan</p>",
                "sv": "<p>Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.</p><p>Jimi Tenor Band är ett band med toppmusiker med följande sammansättning:<br>Jimi Tenor – saxofon, flöjt, syntetisator, sång<br>Eeti Nieminen – trummor, perkussion, sång <br>Heikki Tuhkanen – basun, tuba, sång <br>Lauri Kallio – gitarr, bas, sång</p>",
                "en": "<p>The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk.</p><p>Jimi Tenor Band consists of the following top musicians:<br>Jimi Tenor – saxophone, flute, synthesisers, vocals<br>Eeti Nieminen – drums, percussion, vocals <br>Heikki Tuhkanen – trombone, tuba, vocals <br>Lauri Kallio – guitar, bass, vocals</p>"
            },
            "name": {
                "fi": "Jimi Tenor Band – MalmiJazz",
                "sv": "Jimi Tenor Band – MalmiJazz",
                "en": "Jimi Tenor Band – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67595/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67594",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1597908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-12T07:13:10.120933Z",
                    "last_modified_time": "2026-03-12T07:13:10.120948Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781990.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1597908/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-12T07:13:09.933441Z",
            "last_modified_time": "2026-03-20T01:14:09.068735Z",
            "date_published": null,
            "start_time": "2026-04-23T06:30:00Z",
            "end_time": "2026-04-23T12: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": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4F4408AD83D3F58A5DE1FB682DD4C10B/Itsetuntemusfestarit_yhdessa_kohti_eheampaa_yhteiskuntaa_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4F4408AD83D3F58A5DE1FB682DD4C10B/Itsetuntemusfestarit_yhdessa_kohti_eheampaa_yhteiskuntaa_",
                "en": "http://www.malmitalo.fi/en/events/event/4F4408AD83D3F58A5DE1FB682DD4C10B/Itsetuntemusfestarit_yhdessa_kohti_eheampaa_yhteiskuntaa_"
            },
            "description": {
                "fi": "<p>Keitä me olemme ja millaisen käsikirjoituksen haluamme kirjoittaa tulevaisuudelle? Itsetuntemus on avain. Kun pysähdymme tutkimaan itseämme, voimme katkaista sukupolvien ketjuja: tekemätöntä työtä, kantamattomia taakkoja ja sanoittamattomia tarinoita. Kun uskallamme kohdata ne, voimme luoda uuden alun – yhteiskunnan, jossa hyvinvointi lisääntyy ja pahoinvointi vähenee.</p><p>Maria Akatemian järjestämät Itsetuntemusfestarit kutsuvat sinut mukaan tutkimaan, mitä voimme tehdä yksin ja yhdessä, jotta huomisen tarina olisi eheämpi, lempeämpi ja toiveikkaampi. Tervetuloa pysähtymään itsetuntemuksen äärelle: luvassa on työpajatyöskentelyä ja seminaari.</p><p>Itsetuntemustyöpajat<br>Malmitalon 2. krs., max 25 hlö/työpaja</p><p>klo 9.30–10.15 Jos olisin puu</p><p>Kun pysähdymme miettimään, mistä olemme tulleet ja millaisia kokemuksia, oppeja ja tapoja olemme saaneet, voimme tunnistaa oman elämämme maaperän. Millaiseen maaperään olen juurtunut ja kasvanut? Miten minut on kohdattu ja miten minuun on suhtauduttu elämäni eri ikävaiheissa?</p><p>klo 10.30–11.15 Tulevaisuuspuu</p><p>Minkälaista tarinaa kerromme itsestämme/ yhteisöstämme/ tulevaisuudesta?<br>Minkälaista tulevaisuutta haluamme jättää jälkeemme?<br>Mitä minä voin tehdä sen eteen?</p><p>Työpajoissa työskennellään yksilöllisesti, ja työskentelyn pohjalta luodaan yhteisöllinen tuotos. Ilmoittaudu työpajoihin: https://forms.office.com/e/akPaR0pQBs</p><p>Seminaariohjelma<br>Malmitalon pieni sali, max. 100 hlö</p><p>klo 12.30–12.40 avauspuheenvuoro, Sari Nyberg, Maria Akatemian toiminnanjohtaja</p><p>klo 12.40–13.25 Se jokin Sinussa on: Sydämen sisu avaimena turvalliseen tulevaisuuteen, Elisabet Lahti, tietokirjailija ja sisututkija</p><p>klo 13.25–13.55 Voiko itsetuntemuksella muuttaa maailmaa? Maria Lindroos ja Elina Rajaniemi, Maria Akatemian ehkäisevän väkivaltatyön asiantuntijat</p><p>klo 13.55–14.15 tauko</p><p>klo 14.15–15.05 Paneelikeskustelu: ”Yhteiskunnan tarina ja yksilön rooli: kuka kirjoittaa käsikirjoituksen?”</p><p>Keskustelijat:</p><p>Elisabet Lahti, tietokirjailija ja sisututkija<br>Markku Tynkkynen, työelämäasiantuntija ja kouluttaja<br>Maria Lindroos, ehkäisevän väkivaltatyön johtava asiantuntija, Maria Akatemia<br>Tuomo Perälä, vastaava väkivaltatyöntekijä, Miessakit<br>Johanna Linner-Matikka, sosiaalialan moniosaaja, kouluttaja ja tietokirjailija, fasilitoi keskustelun</p><p>klo 15.05–15.20 Sing & Shine -kuorojen lapset ja nuoret, johtaa Sanna Valvanne</p><p>klo 15.20–15.30 loppusanat, Tatjana Pajamäki, Maria Akatemian hallituksen puheenjohtaja</p><p>Osallistuminen on maksutonta, mutta vaatii ilmoittautumisen: https://forms.office.com/e/p2fJPgwKr3</p>"
            },
            "name": {
                "fi": "Itsetuntemusfestarit – yhdessä kohti eheämpää yhteiskuntaa",
                "sv": "Itsetuntemusfestarit – yhdessä kohti eheämpää yhteiskuntaa",
                "en": "Itsetuntemusfestarit – yhdessä kohti eheämpää yhteiskuntaa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67594/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67405",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468703/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468703/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468703/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672533,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T11:14:22.159616Z",
                    "last_modified_time": "2026-03-19T11:14:22.159631Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781100.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672533/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T11:14:22.037598Z",
            "last_modified_time": "2026-03-20T01:14:08.288826Z",
            "date_published": null,
            "start_time": "2026-04-22T12: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/B67F6D2F8A385183084A45E11A0ADD58/The_Wizard_of_The_Kremlin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B67F6D2F8A385183084A45E11A0ADD58/The_Wizard_of_The_Kremlin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/B67F6D2F8A385183084A45E11A0ADD58/The_Wizard_of_The_Kremlin_12_"
            },
            "description": {
                "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "The Wizard of The Kremlin (12) – Kino Helios",
                "sv": "The Wizard of The Kremlin (12) – Kino Helios",
                "en": "The Wizard of The Kremlin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67405/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67404",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468713/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468713/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468713/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672949,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:52.252312Z",
                    "last_modified_time": "2026-03-19T12:14:52.252329Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781098.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672949/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:52.125889Z",
            "last_modified_time": "2026-03-20T01:14:05.372362Z",
            "date_published": null,
            "start_time": "2026-04-18T15: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/F77C0CFC040B767C6A48A3407A82A6D0/Orava_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F77C0CFC040B767C6A48A3407A82A6D0/Orava_12_",
                "en": "http://www.malmitalo.fi/en/events/event/F77C0CFC040B767C6A48A3407A82A6D0/Orava_12_"
            },
            "description": {
                "fi": "<p>Orava on absurdi tarina Pasista, yksinäisestä mutta hyväsydämisestä keinotekoisten eläinten suunnittelijasta, joka elää maailmassa, missä luonto on vain muisto ja ihmisen hyvinvointi on järjestetty jopa liiankin huolellisesti.</p><p>Eräänä päivänä Pasi (Miro Lopperi) löytää sattumalta maailman viimeisen elävän oravan, ja kohtaa samalla Emilian (Mimosa Willamo), hyvinvoinnin sääntökirjaa valvovan viranomaisen. Pasi päättää uhmata yhteiskunnan sääntöjä ja auttaa oravaa, mutta tapahtuu jotain odottamatonta – orava masentuu ja Pasi rakastuu.</p><p>7.5. klo 13 HopeaCine-näytöksessä mukana tekijävieras.</p><p>Ikäraja: 12<br>Kesto: 93 min<br>Ensi-ilta: 02.04.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orava (12) – Kino Helios",
                "sv": "Orava (12) – Kino Helios",
                "en": "Orava (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67404/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67403",
            "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-21472891/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472891/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472891/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€",
                        "sv": "7€",
                        "en": "7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672948,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:51.802376Z",
                    "last_modified_time": "2026-03-19T12:14:51.802403Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781097.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672948/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:51.677112Z",
            "last_modified_time": "2026-03-20T01:14:05.236508Z",
            "date_published": null,
            "start_time": "2026-04-18T12: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/9CC63423DB3BC73BE414A46DBEA4BB6B/The_Super_Mario_Galaxy_Movie_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9CC63423DB3BC73BE414A46DBEA4BB6B/The_Super_Mario_Galaxy_Movie_7_",
                "en": "http://www.malmitalo.fi/en/events/event/9CC63423DB3BC73BE414A46DBEA4BB6B/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:67403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67591",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-malmitalo-4030171/",
                        "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-malmitalo-4030171/",
                        "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-malmitalo-4030171/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8,30€-23€",
                        "sv": "8,30€-23€",
                        "en": "8,30€-23€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494529,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:42.895909Z",
                    "last_modified_time": "2026-01-16T16:13:42.895933Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781986.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-16T16:13:42.827438Z",
            "last_modified_time": "2026-03-20T01:14:04.618964Z",
            "date_published": null,
            "start_time": "2026-04-18T11: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": "Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja.",
                "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.",
                "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8A46D240D486BBF1B9CF93C5FD137770/Susanna_Leinonen_Company_Rajatila",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8A46D240D486BBF1B9CF93C5FD137770/Susanna_Leinonen_Company_Rajatila",
                "en": "http://www.malmitalo.fi/en/events/event/8A46D240D486BBF1B9CF93C5FD137770/Susanna_Leinonen_Company_Rajatila"
            },
            "description": {
                "fi": "<p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja.</p><p>Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.<br>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta. Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme.</p><p>Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.</p><p>Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan edistämishanketta.</p><p>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Marianne Lagus<br>Puvut Sari Nuttunen</p><p>Kesto: 45 min</p>",
                "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.<br>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min.</p>",
                "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.<br>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p>"
            },
            "name": {
                "fi": "Susanna Leinonen Company: Rajatila",
                "sv": "Susanna Leinonen Company: Rajatila",
                "en": "Susanna Leinonen Company: Rajatila"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67591/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67590",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-malmitalo-4030171/",
                        "sv": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-malmitalo-4030171/",
                        "en": "https://www.lippu.fi/artist/susanna-leinonen-company/susanna-leinonen-company-rajatila-malmitalo-4030171/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8,30€-23€",
                        "sv": "8,30€-23€",
                        "en": "8,30€-23€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494102,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T10:12:53.757850Z",
                    "last_modified_time": "2025-12-05T10:12:53.757866Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781985.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494102/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T10:12:53.636376Z",
            "last_modified_time": "2026-03-20T01:14:03.909974Z",
            "date_published": null,
            "start_time": "2026-04-17T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja.",
                "sv": "Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.",
                "en": "Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6044BEC181BCA33A24157DFF949E7B6F/Susanna_Leinonen_Company_Rajatila",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6044BEC181BCA33A24157DFF949E7B6F/Susanna_Leinonen_Company_Rajatila",
                "en": "http://www.malmitalo.fi/en/events/event/6044BEC181BCA33A24157DFF949E7B6F/Susanna_Leinonen_Company_Rajatila"
            },
            "description": {
                "fi": "<p>Rajatila on Susanna Leinonen Companyn uusi, syvästi koskettava nykytanssiteos, joka tutkii elämää muovaavia näkyviä ja näkymättömiä rajoja.</p><p>Teos jatkaa Susanna Leinonen Companyn ikäihmisten kanssa toteutettua teossarjaa ja muodostaa sen viidennen itsenäisen osan.<br>Teoksen koreografi Tatiana Urteva haluaa tutkia teoksessa elämää kokeneiden kehojen fyysistä ja emotionaalista voimaa – liikettä, rytmiä ja ilmaisua, joka kumpuaa vuosikymmenten kokemuksesta. Rajatila kutsuu pohtimaan, miten psykologiset ja fyysiset rajat ohjaavat arkeamme, miten niitä koetellaan ja miten ne lopulta muovaavat identiteettiämme.</p><p>Näyttämöllä kohtaavat ilmaisuvoimaiset ikäihmiset ja ammattitanssijat. Ikäihmisten elämänkokemus ja kehollinen viisaus kietoutuvat yhteen tanssijoiden fyysisyyden ja tarkkuuden kanssa, synnyttäen koskettavan ja voimakkaan kokonaisuuden.</p><p>Rajatila on teos ihmisyydestä, muutoksesta ja kestävyydestä. Se haastaa käsitykset siitä, miltä tanssi voi näyttää ja kuka saa olla sen tekijä.</p><p>Teos on osa Helsingin kaupungin iäkkäiden kulttuuritoiminnan edistämishanketta.</p><p>Koreografia Tatiana Urteva<br>Musiikki Kasperi Laine<br>Valot Marianne Lagus<br>Puvut Sari Nuttunen</p><p>Kesto: 45 min</p>",
                "sv": "<p>Rajatila är ett nytt, djupt rörande dansverk med nutidsdans av Susanna Leinonen Company som utforskar de synliga och osynliga gränserna som utformar livet.</p><p>Verket fortsätter den serie av verk som Susanna Leinonen Company genomfört tillsammans med äldre personer och utgör den femte självständiga delen av den.<br>Verkets koreograf Tatiana Urteva vill i verket undersöka den fysiska och emotionella styrkan i de kroppar som har upplevt livet – rörelsen, rytmen och uttrycket som väller fram på grund av årtionden av erfarenhet. Gränsområdet inbjuder oss att reflektera över hur psykologiska och fysiska gränser styr vår vardag, hur de prövas och hur de slutligen formar vår identitet.</p><p>På scenen möts uttryksfulla äldre och professionella dansare. De äldres livserfarenhet och fysiska visdom sveper sig samman med dansarnas fysik och precision samt skapar en gripande och kraftfull helhet.</p><p>Rajatila är ett verk om mänsklighet, förändring och hållbarhet. Den utmanar uppfattningar om hur dans kan se ut och vem som får skapa den.</p><p>Verket är en del av Helsingfors stads projekt för att främja kulturverksamhet för äldre.</p><p>Koreografi: Tatiana Urteva<br>Musik: Kasperi Laine<br>Ljus: Marianne Lagus<br>Kostymer: Sari Nuttunen</p><p>Längd: 45 min</p>",
                "en": "<p>Rajatila is a new, deeply touching contemporary dance work by Susanna Leinonen Company that explores the visible and invisible boundaries that shape life.</p><p>The piece continues the Susanna Leinonen Company's series of works created together with older people and forms the fifth independent part of the series.<br>Through this work,Choreographer Tatiana Urteva wishes to explore the physical and emotional power of bodies that have experienced life – their movement, rhythm and expression that comes from decades of experience. Rajatila invites us to reflect on how psychological and physical borders guide our everyday lives, how they are tested and how they ultimately shape our identity.</p><p>On the stage, expressive elderly people come together with professional dancers. The life experience and physical wisdom of older people intertwine with the physicality and precision of the dancers, creating a moving and powerful ensemble.</p><p>Rajatila is a work about humanity, change and resilience. It challenges notions of what dance can look like and who can create dance.</p><p>The work is part of the City of Helsinki's project to promote cultural activities for older people.</p><p>Choreography Tatiana Urteva<br>Music Kasperi Laine<br>Lights Marianne Lagus<br>Costumes Sari Nuttunen</p>"
            },
            "name": {
                "fi": "Susanna Leinonen Company: Rajatila",
                "sv": "Susanna Leinonen Company: Rajatila",
                "en": "Susanna Leinonen Company: Rajatila"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67590/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67402",
            "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-drama-malmitalo-21473667/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473667/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473667/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1673366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T13:14:11.490816Z",
                    "last_modified_time": "2026-03-19T13:14:11.490833Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781095.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1673366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T13:14:11.387597Z",
            "last_modified_time": "2026-03-20T01:14:03.260893Z",
            "date_published": null,
            "start_time": "2026-04-17T15: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/630BE6FD3010028E608A93E14729F311/The_Drama_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/630BE6FD3010028E608A93E14729F311/The_Drama_12_",
                "en": "http://www.malmitalo.fi/en/events/event/630BE6FD3010028E608A93E14729F311/The_Drama_12_"
            },
            "description": {
                "fi": "<p>Emman ja Charlien hartaasti odottama hääpäivä on vihdoin lähellä, eikä pari voisi olla onnellisempi. Kun odottamaton salaisuus paljastuu, heidän täydellisesti suunniteltu hääviikkonsa alkaa hajota käsiin. Rakkaus joutuu koetukselle, kun jokainen sana, katse ja vitsi saa uuden merkityksen – eikä mikään ole entisellään.<br>Zendaya ja Robert Pattinson tähdittävät A24:n elokuvaa The Drama.</p><p>Ikäraja: 12<br>Kesto: 105 min<br>Ensi-ilta: 02.04.2026<br>Kieli: englanti<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "The Drama (12) – Kino Helios",
                "sv": "The Drama (12) – Kino Helios",
                "en": "The Drama (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67401",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468697/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468697/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468697/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672532,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T11:14:20.160541Z",
                    "last_modified_time": "2026-03-19T11:14:20.160556Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781094.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672532/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T11:14:20.036768Z",
            "last_modified_time": "2026-03-20T01:14:03.094627Z",
            "date_published": null,
            "start_time": "2026-04-17T12: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/7C6D5711D6269598CC700B25E4590A2B/The_Wizard_of_The_Kremlin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7C6D5711D6269598CC700B25E4590A2B/The_Wizard_of_The_Kremlin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/7C6D5711D6269598CC700B25E4590A2B/The_Wizard_of_The_Kremlin_12_"
            },
            "description": {
                "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "The Wizard of The Kremlin (12) – Kino Helios",
                "sv": "The Wizard of The Kremlin (12) – Kino Helios",
                "en": "The Wizard of The Kremlin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67401/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67708",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494338,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-30T13:13:14.126766Z",
                    "last_modified_time": "2025-12-30T13:13:14.126778Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782559.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494338/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-30T13:13:14.011056Z",
            "last_modified_time": "2026-03-20T01:14:02.423916Z",
            "date_published": null,
            "start_time": "2026-04-16T15: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": "Lentävä kuolema on röntgenkuva tuberkuloosin jättämistä arvista, joista olemme vuosikymmenet vaienneet.",
                "sv": "Lentävä kuolema är en röntgenbild av de ärr som tuberkulosen lämnat efter sig, något vi har tigit om i decennier.",
                "en": "The film Lentävä kuolema – ‘the flying death’ – is an X-ray of the scars left by tuberculosis, which we have been carrying in silence for decades."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_",
                "en": "http://www.malmitalo.fi/en/events/event/81E29EBCCCFE52F0194EEF7292AEE2BE/Doc_Helios_Lentava_kuolema_7_"
            },
            "description": {
                "fi": "<p>Lentävä kuolema on röntgenkuva tuberkuloosin jättämistä arvista, joista olemme vuosikymmenet vaienneet.</p><p>Tuberkuloosiparantola oli asukkailleen yhtä aikaa taivas ja helvetti samojen seinien sisällä. Epidemian historia sisältää niin kuolemaa, häpeää ja eristystä kuin parantolaromansseja, hauskanpitoa ja selviytymistarinoita.</p><p>Lentävä kuolema perehtyy kansalliseen tragediaamme, löytäen sieltä yhteisöllisyyttä, lähimmäisenrakkautta ja järjestelmällistä ja sisukasta työtä ihmishenkien pelastamiseksi.</p><p>Elokuva vie elävälle matkalle parantoloiden aikaan: Se antaa katsojalle yllätyksiä täynnä olevan parantolakokemuksen, ja dokumentaarisen todistusvoiman avulla vie salaisuuksien äärelle.</p><p>Lentävä kuolema paljastaa tuberkuloosin unohdetut tarinat ja antaa mahdollisuuden puhua kokemuksista, joista on vaiettu yli 50 vuotta. Lentävä kuolema kulkee kahdessa eri aikatasossa vuorotellen nykyisyyden ja parantola-aikakauden välillä ja kertoo kollektiivisen tarinan yksilötarinoiden sijaan.</p><p>Ainutlaatuisissa vuonna 1971 tallennetuissa SKS:n arkiston audionauhoissa kolme potilasta kertovat kokemuksistaan parantolan arjesta. Hahmot ovat iloinen maalaistyttö Enne, synkkyyteen taipuva Tenho ja uskonnollinen vastarakastunut Kalevi. Elokuvassa käytetyt arkistofilmit ja valokuvat ovat valtaosin ennennäkemättömiä.</p><p>Kesto: 70 min</p><p>Ikäraja: K-7</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Lentävä kuolema är en röntgenbild av de ärr som tuberkulosen lämnat efter sig, något vi har tigit om i decennier.</p><p>Tuberkulossanatoriet var samtidigt ett himmelrike och ett helvete för de boende. Epidemihistorien innehåller död, skam och isolering, liksom sanatorieromanser, nöje och överlevnadsberättelser. Filmen Lentävä kuolema utforskar vår nationella tragedi och finner i den en känsla av gemenskap, nästankärlek och en systematisk och modig insats i att rädda människoliv.</p><p>Filmen för dig på en levande resa till sanatoriernas tid: Den ger tittaren en sanatorieupplevelse full av överraskningar, och med hjälp av dokumentära bevis avslöjar den även hemligheter.</p><p>Lentävä kuolema avslöjar de glömda historierna om tuberkulosen och ger en möjlighet att tala om upplevelserna man har tigit om i över 50 år. Lentävä kuolema framskrider i två olika tidsplan växelvis mellan nutid och sanatoriets era och berättar en kollektiv berättelse i stället för individuella berättelser.</p><p>I de unika inspelningarna från 1971 från FLS:s arkiv berättar tre patienter om sina upplevelser av sanatorievardagen. Karaktärerna omfattas av den glada bondflickan Enne, Tenho som blir dyster till sinnet och religösa och nykära Kalevi. De arkivfilmer och fotografier som används i filmen har till stor del aldrig visats förr.</p><p>Längd: 70 min.</p><p>Åldersgräns: K-7</p><p>Fritt inträde!</p>",
                "en": "<p>The film Lentävä kuolema – ‘the flying death’ – is an X-ray of the scars left by tuberculosis, which we have been carrying in silence for decades.</p><p>The tuberculosis sanatorium was both heaven and hell within the same walls for the residents. The story of the epidemic features death, shame and isolation, but also tales of love at the sanatorium, joy and survival. Lentävä kuolema explores our national tragedy, revealing a sense of community, neighbourly love, and a systematic and determined effort to save human lives.</p><p>The film takes you on a vivid journey to the era of sanatoria: It offers the viewer a sanatorium experience full of surprises and reveals the secrets through the power of documentary evidence. Lentävä kuolema unearths the forgotten stories of tuberculosis and allows us to talk about experiences that have been silenced for more than 50 years. Lentävä kuolema alternates between two different time levels, from the present time to the sanatorium era, telling a collective history instead of individual stories.</p><p>In unique audio tapes from SKS archives recorded in 1971, three patients talk about their experiences of everyday life in the sanatorium. The characters are the cheerful country girl Enne, the brooding Tenho, and the religious Kalevi who has recently fallen in love. Most of the archive films and photographs used in the film have never been seen before in public.</p><p>Duration: 70 min</p><p>Age rating: 7</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Doc Helios: Lentävä kuolema (7)",
                "sv": "Doc Helios: Lentävä kuolema (7)",
                "en": "Doc Helios: Lentävä kuolema (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67708/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67400",
            "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-drama-malmitalo-21473666/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473666/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473666/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672954,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:15:05.518375Z",
                    "last_modified_time": "2026-03-19T12:15:05.518407Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781092.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672954/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:15:05.412598Z",
            "last_modified_time": "2026-03-20T01:14:01.484941Z",
            "date_published": null,
            "start_time": "2026-04-15T15: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/CA429F071F6D2F3FF78C56B1AF97CC3C/The_Drama_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CA429F071F6D2F3FF78C56B1AF97CC3C/The_Drama_12_",
                "en": "http://www.malmitalo.fi/en/events/event/CA429F071F6D2F3FF78C56B1AF97CC3C/The_Drama_12_"
            },
            "description": {
                "fi": "<p>Emman ja Charlien hartaasti odottama hääpäivä on vihdoin lähellä, eikä pari voisi olla onnellisempi. Kun odottamaton salaisuus paljastuu, heidän täydellisesti suunniteltu hääviikkonsa alkaa hajota käsiin. Rakkaus joutuu koetukselle, kun jokainen sana, katse ja vitsi saa uuden merkityksen – eikä mikään ole entisellään.<br>Zendaya ja Robert Pattinson tähdittävät A24:n elokuvaa The Drama.</p><p>Ikäraja: 12<br>Kesto: 105 min<br>Ensi-ilta: 02.04.2026<br>Kieli: englanti<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "The Drama (12) – Kino Helios",
                "sv": "The Drama (12) – Kino Helios",
                "en": "The Drama (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67400/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67399",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468712/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468712/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-orava-malmitalo-21468712/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672947,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:50.308469Z",
                    "last_modified_time": "2026-03-19T12:14:50.308485Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781091.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672947/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:50.182927Z",
            "last_modified_time": "2026-03-20T01:14:01.328339Z",
            "date_published": null,
            "start_time": "2026-04-15T12: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/E1021ACEA656DA50781A41F8AAAF3CED/Orava_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1021ACEA656DA50781A41F8AAAF3CED/Orava_12_",
                "en": "http://www.malmitalo.fi/en/events/event/E1021ACEA656DA50781A41F8AAAF3CED/Orava_12_"
            },
            "description": {
                "fi": "<p>Orava on absurdi tarina Pasista, yksinäisestä mutta hyväsydämisestä keinotekoisten eläinten suunnittelijasta, joka elää maailmassa, missä luonto on vain muisto ja ihmisen hyvinvointi on järjestetty jopa liiankin huolellisesti.</p><p>Eräänä päivänä Pasi (Miro Lopperi) löytää sattumalta maailman viimeisen elävän oravan, ja kohtaa samalla Emilian (Mimosa Willamo), hyvinvoinnin sääntökirjaa valvovan viranomaisen. Pasi päättää uhmata yhteiskunnan sääntöjä ja auttaa oravaa, mutta tapahtuu jotain odottamatonta – orava masentuu ja Pasi rakastuu.</p><p>7.5. klo 13 HopeaCine-näytöksessä mukana tekijävieras.</p><p>Ikäraja: 12<br>Kesto: 93 min<br>Ensi-ilta: 02.04.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Orava (12) – Kino Helios",
                "sv": "Orava (12) – Kino Helios",
                "en": "Orava (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67589",
            "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: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:p6529/?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": 1494528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T16:13:42.138440Z",
                    "last_modified_time": "2026-01-16T16:13:42.138457Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781981.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494528/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-16T16:13:42.034224Z",
            "last_modified_time": "2026-03-20T01:14:00.665039Z",
            "date_published": null,
            "start_time": "2026-04-14T15: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": "PROSESSISSA-esityksessä Malmitalo muuntautuu taiteellisen prosessin näyttämöksi.",
                "sv": "I föreställningen PROSESSISSA omvandlas Malms kulturhus till en scen för den konstnärliga processen.",
                "en": "The PROSESSISSA performance transforms Malmitalo into a stage for an artistic process."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_esitys_teatteriesityksen_valmistamisesta",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_en_framstallning_om_utarbetande_av_en_teaterforestallning",
                "en": "http://www.malmitalo.fi/en/events/event/B3D2B4F8FCFA28019E91C3F1B9659AE8/PROSESSISSA_IN_PROCESS_a_show_about_the_making_of_a_theatre_performance"
            },
            "description": {
                "fi": "<p>PROSESSISSA-esityksessä Malmitalo muuntautuu taiteellisen prosessin näyttämöksi.</p><p>Yleisö pääsee reaaliajassa seuraamaan teatteritaiteilijoiden työskentelyä kokonaisuuden eri osa-alueiden parissa sekä vaikuttamaan illan päätteeksi Malmisalin estradilla nähtävän ainutkertaisen näyttämöteoksen sisältöön. Jos olet koskaan pohtinut, kuinka vuorovaikutteinen, todellisista elämäkokemuksista ponnistava esitysprosessi tapahtuu – tämä on esitys juuri sinulle!</p><p>Esitys on osa Helsingin Kaupunginteatterin Pääroolissa Malmi - hanketta, jossa toteutetaan alue- ja yhteisölähtöistä teatteri- ja taidetoimintaa. Hanke on yksi Helsingin kaupungin Helsingin malli -hankkeista.</p><p>Kuvassa Talvikki Eerola ja Reetta Kankare.</p><p>Esitys on maksuton, mutta liput täytyy varata ennakkoon. Lippujen varaus Lyytin kautta: https://www.lyyti.in/PROSESSISSA_esitys</p><p>Esityksen kieli on suomi. Suosittelemme esitystä yli 13-vuotiaille.</p><p>Esityksen kesto 2 t 30 min, sis väliajan</p><p>Työryhmä</p><p>Esityskonsepti:<br>Laura Ikonen, Aleksi Kinnunen, Janne Puustinen</p><p>Taiteelliset suunnittelijat ja osallistavien pisteiden vetäjät:<br>Laura Ikonen, Jenny Jumppanen, Riikka Karjalainen, Aleksi Kinnunen, Mirja Neuvonen, Janne Puustinen</p><p>Näyttelijät:<br>Laura Ikonen, Reetta Kankare, Heli Lyytikäinen</p><p>Avustajaoppaat:<br>Mari Ikonen, Marina Toivonen</p><p>Tuotanto:<br>Helsingin Kaupunginteatterin yleisötyö / Pääroolissa Malmi, Malmitalo</p>",
                "sv": "<p>I föreställningen PROSESSISSA omvandlas Malms kulturhus till en scen för den konstnärliga processen.</p><p>Publiken kan i realtid följa teaterkonstnärernas arbete bland de olika delområdena i helheten och i slutet av kvällen påverka innehållet i ett unikt scenuppförande som ses på Malmsalens estrad. <br> <br>Föreställningen är en del av Helsingfors stadsteaters projekt Pääroolissa Malmi (Malm i huvudrollen), i vilken man genomför regional och samhällsbaserad teater- och konstverksamhet. Projektet är ett av Helsingfors stads Helsingforsmodellen-projekt.<br> <br>På bilden: Talvikki Eerola och Reetta Kankare.</p><p>Föreställningen är avgiftsfri, men biljetterna måste förhandsbokas. Biljetterna till föreställningen finns tillgängliga i februari 2026.</p><p>Föreställningens språk är finska.</p>",
                "en": "<p>The PROSESSISSA performance transforms Malmitalo into a stage for an artistic process.</p><p>The audience will be given the chance to see the work of the theatre artists in real time and will be shown how the artists work on the different aspects of the performance. They will also be able to influence the content of this unique performance work, shown on the stage of Malmi Hall at the end of the evening. <br> <br>The performance is part of the Helsinki City Theatre's Pääroolissa Malmi (Starring Malmi) project, which implements regional and community-based theatre and art activities. This project is one of the City of Helsinki's Helsinki Model projects.<br> <br>Pictured Talvikki Eerola and Reetta Kankare.</p><p>The performance is free of charge, but tickets must be booked in advance. Tickets for the show will be available in February 2026.</p><p>The performance will be in Finnish.</p>"
            },
            "name": {
                "fi": "PROSESSISSA – esitys teatteriesityksen valmistamisesta",
                "sv": "PROSESSISSA – en framställning om utarbetande av en teaterföreställning",
                "en": "PROSESSISSA – IN PROCESS, a show about the making of a theatre performance"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67589/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67468",
            "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": 1494012,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:10.157077Z",
                    "last_modified_time": "2025-12-03T08:13:10.157092Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781434.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494012/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:10.056100Z",
            "last_modified_time": "2026-03-20T01:14:00.419644Z",
            "date_published": null,
            "start_time": "2026-04-14T14: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/4059968138DB6B0E76CCF0132F5978F6/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4059968138DB6B0E76CCF0132F5978F6/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/4059968138DB6B0E76CCF0132F5978F6/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:67468/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67398",
            "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-drama-malmitalo-21473376/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473376/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-drama-malmitalo-21473376/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672946,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:48.989623Z",
                    "last_modified_time": "2026-03-19T12:14:48.989638Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781089.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672946/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:48.866859Z",
            "last_modified_time": "2026-03-20T01:13:58.614012Z",
            "date_published": null,
            "start_time": "2026-04-11T15: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/4D2ECC09F568BA526A7F94C1755B6B26/The_Drama_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4D2ECC09F568BA526A7F94C1755B6B26/The_Drama_12_",
                "en": "http://www.malmitalo.fi/en/events/event/4D2ECC09F568BA526A7F94C1755B6B26/The_Drama_12_"
            },
            "description": {
                "fi": "<p>Emman ja Charlien hartaasti odottama hääpäivä on vihdoin lähellä, eikä pari voisi olla onnellisempi. Kun odottamaton salaisuus paljastuu, heidän täydellisesti suunniteltu hääviikkonsa alkaa hajota käsiin. Rakkaus joutuu koetukselle, kun jokainen sana, katse ja vitsi saa uuden merkityksen – eikä mikään ole entisellään.<br>Zendaya ja Robert Pattinson tähdittävät A24:n elokuvaa The Drama.</p><p>Ikäraja: 12<br>Kesto: 105 min<br>Ensi-ilta: 02.04.2026<br>Kieli: englanti<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "The Drama (12) – Kino Helios",
                "sv": "The Drama (12) – Kino Helios",
                "en": "The Drama (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67397",
            "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-21472783/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472783/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-super-mario-galaxy-movie-malmitalo-21472783/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€",
                        "sv": "7€",
                        "en": "7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672945,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T12:14:48.529638Z",
                    "last_modified_time": "2026-03-19T12:14:48.529654Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781088.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672945/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T12:14:48.223185Z",
            "last_modified_time": "2026-03-20T01:13:58.497199Z",
            "date_published": null,
            "start_time": "2026-04-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C26ACE4E919F5F766924FAC82DEA8F21/The_Super_Mario_Galaxy_Movie_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C26ACE4E919F5F766924FAC82DEA8F21/The_Super_Mario_Galaxy_Movie_7_",
                "en": "http://www.malmitalo.fi/en/events/event/C26ACE4E919F5F766924FAC82DEA8F21/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:67397/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68247",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-vauvakino-rental-family-malmitalo-21460922/",
                        "sv": "https://www.lippu.fi/event/malmitalo-vauvakino-rental-family-malmitalo-21460922/",
                        "en": "https://www.lippu.fi/event/malmitalo-vauvakino-rental-family-malmitalo-21460922/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 € / lapsi+aikuinen-pari",
                        "sv": "9 € / lapsi+aikuinen-pari",
                        "en": "9 € / lapsi+aikuinen-pari"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1673365,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T13:14:09.421463Z",
                    "last_modified_time": "2026-03-19T13:14:09.421478Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786478.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1673365/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T13:14:09.291773Z",
            "last_modified_time": "2026-03-20T01:13:58.087508Z",
            "date_published": null,
            "start_time": "2026-04-11T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rentoudu elokuvan parissa yhdessä vauvasi kanssa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8DBD8E31D4CD621EC23393340C93990D/Vauvakino_Rental_Family_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8DBD8E31D4CD621EC23393340C93990D/Vauvakino_Rental_Family_S_",
                "en": "http://www.malmitalo.fi/en/events/event/8DBD8E31D4CD621EC23393340C93990D/Vauvakino_Rental_Family_S_"
            },
            "description": {
                "fi": "<p>Rentoudu elokuvan parissa yhdessä vauvasi kanssa.</p><p>Vauvakinonäytöksessä äänet ovat normaalia elokuvaa hiljemmalla ja pidämme yleisövalot himmeällä päällä koko elokuvan ajan.</p><p>Saliin voit ottaa halutessasi vauvallesi mukaan kantokopan ja salin eteen tuodaan tyynyjä ja patjoja joilla voi myös oleilla elokuvan aikana. Salissa on myös mikro maidon tai lastenruuan lämmittämistä varten.</p><p>Nykypäivän Tokioon sijoittuva Rental Family kertoo amerikkalaisesta näyttelijästä (Brendan Fraser), joka etsii tarkoitusta elämäänsä, kunnes sattuu saamaan epätavallisen keikan: hänen on määrä tehdä japanilaiselle ”vuokraperhefirmalle” roolitöitä, joissa hän esittää ventovieraiden ihmisten lähipiiristä puuttuvia henkilöitä.</p><p>Hänen uppoutuessaan asiakkaidensa maailmoihin heidän välilleen alkaa kuitenkin muodostua aitoja tunnesiteitä, jotka hämärtävät roolin ja todellisuuden rajat. Samalla kun hän joutuu kohtaamaan työnsä moraaliset ristiriidat, hän saa uutta sisältöä elämäänsä ja löytää vihdoin paikkansa sekä sen hiljaisen kauneuden, joka ihmisten välisessä yhteydessä piilee.</p><p>Ikäraja: Sallittu</p><p>Kesto: 111 min</p>"
            },
            "name": {
                "fi": "Vauvakino: Rental Family (S)",
                "sv": "Vauvakino: Rental Family (S)",
                "en": "Vauvakino: Rental Family (S)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68247/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67396",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468698/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468698/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-wizard-of-the-kremlin-malmitalo-21468698/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672531,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T11:14:17.973009Z",
                    "last_modified_time": "2026-03-19T11:14:17.973023Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781086.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672531/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T11:14:17.842025Z",
            "last_modified_time": "2026-03-20T01:13:56.990203Z",
            "date_published": null,
            "start_time": "2026-04-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DA13D097E1ECEE9BDBCEAB41487BA339/The_Wizard_of_The_Kremlin_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/DA13D097E1ECEE9BDBCEAB41487BA339/The_Wizard_of_The_Kremlin_12_",
                "en": "http://www.malmitalo.fi/en/events/event/DA13D097E1ECEE9BDBCEAB41487BA339/The_Wizard_of_The_Kremlin_12_"
            },
            "description": {
                "fi": "<p>Venäjä 1990-luvun alussa. Neuvostoliitto on romahtanut. Keskellä kaaosta ja itseään uudelleen rakentavaa maata kulkee määrätietoisesti omaa polkuaan poikkeuksellisen älykäs nuori mies, Vadim Baranov (Paul Dano). Ensin avantgardetaiteilija, sitten tosi-tv-ohjelmien tuottaja, hänestä tulee epävirallinen neuvonantaja entiselle KGB-agentille, joka on matkalla kohti ehdotonta valtaa – miehelle, joka tullaan pian tuntemaan nimellä ”tsaari”, Vladimir Putin (Jude Law).</p><p>Järjestelmän ytimeen päätynyt Baranov nousee uuden Venäjän spin doctoriksi, muovaamaan puheita, mielikuvia ja todellisuudentajua. Yksi ihminen jää kuitenkin hänen vaikutusvaltansa ulkopuolelle: Ksenia (Alicia Vikander), vapaa ja tavoittamaton nainen, joka edustaa mahdollisuutta paeta – kauas poliittisesta vaikutuksesta ja vallankäytöstä.</p><p>Viisitoista vuotta myöhemmin, vetäydyttyään hiljaisuuteen, Baranov suostuu puhumaan. Se, mitä hän paljastaa, hämärtää rajat totuuden ja fiktion, uskomuksen ja strategian välillä. The Wizard of the Kremlin on laskeutuminen vallan pimeisiin käytäviin – elokuva, jossa jokainen sana on osa juonta.</p><p>Elokuva perustuu Giuliano da Empolin romaaniin Kremlin velho.</p><p>Ikäraja: 12<br>Kesto: 146 min<br>Ensi-ilta: 13.03.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "The Wizard of The Kremlin (12) – Kino Helios",
                "sv": "The Wizard of The Kremlin (12) – Kino Helios",
                "en": "The Wizard of The Kremlin (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67395",
            "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-isanpaiva-malmitalo-21468599/",
                        "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468599/",
                        "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-isanpaiva-malmitalo-21468599/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9€",
                        "sv": "9€",
                        "en": "9€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1672116,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T10:14:16.597952Z",
                    "last_modified_time": "2026-03-19T10:14:16.597966Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781085.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1672116/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T10:14:16.435570Z",
            "last_modified_time": "2026-03-20T01:13:56.884342Z",
            "date_published": null,
            "start_time": "2026-04-10T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0517FF4F01B38B62E39CFA2BB88BDC10/Isanpaiva_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0517FF4F01B38B62E39CFA2BB88BDC10/Isanpaiva_7_",
                "en": "http://www.malmitalo.fi/en/events/event/0517FF4F01B38B62E39CFA2BB88BDC10/Isanpaiva_7_"
            },
            "description": {
                "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Isänpäivä (7) – Kino Helios",
                "sv": "Isänpäivä (7) – Kino Helios",
                "en": "Isänpäivä (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67395/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67706",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494100,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T09:12:53.912399Z",
                    "last_modified_time": "2025-12-05T09:12:53.912414Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782555.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494100/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T09:12:53.835397Z",
            "last_modified_time": "2026-03-20T01:13:56.264072Z",
            "date_published": null,
            "start_time": "2026-04-09T15: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": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.",
                "sv": "I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.",
                "en": "Once a month, the Audience favourites series presents the most popular and frequently requested films of the previous season."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7A5894621DE31562473CBD31F6C0B4FE/Yleison_suosikit_100_litraa_sahtia",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7A5894621DE31562473CBD31F6C0B4FE/Publikfavorit_100_litraa_sahtia_12_",
                "en": "http://www.malmitalo.fi/en/events/event/7A5894621DE31562473CBD31F6C0B4FE/Audience_favourites_100_Liters_of_Gold_12_"
            },
            "description": {
                "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>100 litraa sahtia on maailman sahtipääkaupunki Sysmään sijoittuva komedia, jossa siskokset Pirkko (Elina Knihtilä) ja Taina (Pirjo Lonka) ovat jatkaneet sukunsa pitkää perinnettä sahdin valmistajina. <br>Kylällä jokainen haluaa osansa maineikkaasta juomasta, vaikka maksukykyä ei aina löytyisikään. Yllättäen kotikonnuille tekee paluun sisarustrion kolmas - Päivi (Ria Kataja), ja tilaa siskoiltaan häihinsä ei enempää eikä vähempää kuin sata litraa sahtia. Pirkko ja Taina panevat tuumasta toimeen täydellisen satsin valmistamiseksi. Pelissä on sekä perhesuhteet että maine. Prosessiin kuuluva maistelu kuitenkin venähtää, ja Sysmän kulta hulahtaa kokonaisuudessaan itse panijoiden sekä kyläläisten kitusiin. Pian häihin on enää alle kaksi vuorokautta aikaa, ja siskosten on keksittävä keino miten toimittaa juhliin luvatut sahdit. Alkaa taistelu aikaa vastaan, ja tilanteen korjaamiseksi käytetään kaikki mahdolliset keinot.<br>Kesto: 88 min<br>Ikäraja: K-12<br>Vapaa pääsy!</p>",
                "sv": "<p>I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.</p><p>100 litraa sahtia är en komedi som utspelar sig i Sysmä, världens huvudstad för hembryggt öl, där systrarna Pirkko (Elina Knihtilä) och Taina (Pirjo Lonka) har fortsatt sin släkts långa tradition som tillverkare av hembryggt öl.  <br>I byn vill alla ha sin andel av den berömda drycken, även om de inte alltid har råd med det. Överraskande nog återvänder den tredje i syskonskaran – Päivi (Ria Kataja) - till hemtrakten och beställer varken mer eller mindre än hundra liter hembryggt öl till sitt bröllop av sina systrar. Pirkko och Taina sätter igång med att tillverka en utmärkt sats. Både familjerelationerna och ryktet står på spel. Den tillhörande provsmakningsprocessen förlängs dock, och guldet från Sysmä hamnar i sin helhet i bryggarnas och bybornas egna magar. Snart är det mindre än två dygn kvar till bröllopet och systrarna måste hitta på ett sätt att leverera den hembryggda ölen som utlovats till festen. En kamp mot tiden börjar och alla tänkbara sätt tas i bruk för att rätta till situationen. <br>Längd: 88 min. <br>Åldersgräns: K-12 <br>Fritt inträde!</p>",
                "en": "<p>Once a month, the Audience favourites series presents the most popular and frequently requested films of the previous season.</p><p>The film 100 Liters of Gold is a comedy set in Sysmä, the sahti farmhouse ale capital of the world, where sisters Pirkko (Elina Knihtilä) and Taina (Pirjo Lonka) have continued their family's long tradition of brewing sahti.  <br>In the village, everyone wants their share of the famous drink – even if they can’t always pay for it. The third member of the sibling trio – Päivi (Ria Kataja) – makes a surprise visit home and asks her sisters to brew no less than hundred litres of this liquid gold for her wedding. Pirkko and Taina get to work to brew a perfect batch of sahti. Both their family relationships and reputation are at stake. However, sampling the product – an integral part of the brewing process – gets a little out of hand, and the whole batch of this Sysmä gold ends up poured down the throats of the brewers themselves and the villagers. With less than two days to go until the wedding, the sisters must find a way to deliver the sahti they have promised. A battle against the clock begins, and the sisters are determined to fix the situation by any means necessary. <br>Duration: 88 min <br>Age rating: 12 <br>Free entry!</p>"
            },
            "name": {
                "fi": "Yleisön suosikit: 100 litraa sahtia",
                "sv": "Publikfavorit: 100 litraa sahtia (12)",
                "en": "Audience favourites: 100 Liters of Gold (12)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67706/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}