Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
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
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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=10
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=11", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=9" }, "data": [ { "id": "kulke:67336", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119963/", "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119963/", "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119963/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494346, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-02T08:12:56.666488Z", "last_modified_time": "2026-01-02T08:12:56.666502Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780985.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494346/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-02T08:12:56.581658Z", "last_modified_time": "2026-03-20T01:12:47.297566Z", "date_published": null, "start_time": "2026-01-24T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kalevala: Kullervon tarina (16) – Kino Helios", "sv": "Kalevala: Kullervon tarina (16) – Kino Helios", "en": "Kalevala: Kullervon tarina (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3EF2986D74E9673052F0AAA274C09D20/Kalevala_Kullervon_tarina_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3EF2986D74E9673052F0AAA274C09D20/Kalevala_Kullervon_tarina_16_", "en": "http://www.malmitalo.fi/en/events/event/3EF2986D74E9673052F0AAA274C09D20/Kalevala_Kullervon_tarina_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67336/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67335", "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": [], "price": { "fi": "7€", "sv": "7€", "en": "7€" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-19T13:14:40.374290Z", "last_modified_time": "2026-01-19T13:14:40.374307Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780983.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-19T13:14:40.257590Z", "last_modified_time": "2026-03-20T01:12:47.182555Z", "date_published": null, "start_time": "2026-01-24T13: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": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Supermarsu ja suuri huijaus (S) – Kino Helios", "sv": "Supermarsu ja suuri huijaus (S) – Kino Helios", "en": "Supermarsu ja suuri huijaus (S) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF481273161F7CCEEE347859CB69BFF0/Supermarsu_ja_suuri_huijaus_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF481273161F7CCEEE347859CB69BFF0/_Supermarsu_ja_suuri_huijaus_S_", "en": "http://www.malmitalo.fi/en/events/event/EF481273161F7CCEEE347859CB69BFF0/Supermarsu_ja_suuri_huijaus_S_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67335/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67471", "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: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" }, { "@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": [], "price": { "fi": "24,80 € / 17,80 €", "sv": "24,80 € / 17,80 €", "en": "24,80 € / 17,80 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/kirjo-karhu-kansantanssikonsertti-4018792/", "sv": "https://www.lippu.fi/artist/malmitalo/kirjo-karhu-kansantanssikonsertti-4018792/", "en": "https://www.lippu.fi/artist/malmitalo/kirjo-karhu-kansantanssikonsertti-4018792/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493872, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T12:12:35.375551Z", "last_modified_time": "2025-11-24T12:12:35.375566Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781438.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493872/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T12:12:35.260170Z", "last_modified_time": "2026-03-20T01:12:47.029233Z", "date_published": null, "start_time": "2026-01-24T13: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": "Kansantanssia, joka koskettaa ja yllättää.", "sv": "Kirjo/Karhu – folkdanskonsert", "en": "Folk dance that touches the heart and surprises the mind." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kansantanssia, joka koskettaa ja yllättää.</p><p>Pääkaupungin Karjalaiset Nuoret PKN juhlistaa 60-vuotista taivaltaan vuonna 2026 monin tavoin – vuoden avaa näyttävä kansantanssikonsertti Kirjo / Karhu, jossa perinne ja nykyhetki tanssivat rinnakkain sekä omien että kylään kutsuttujen ryhmien voimin.</p><p>Konsertin ensimmäisellä puoliajalla lavalle nousevat helsinkiläiset tanssiryhmät. Illan aloittaa Susirekka esityksellään Kaikkein polska ja Oispa masurkkaa virittäen yleisön liikkeen ja rytmin maailmaan. Tämän jälkeen PKN:n omat ryhmät – Roigu, Riesku ja Poppasitko – esittävät laajennetun version teoksesta Tyttö ja tanssiva karhu, joka pohjautuu samannimiseen runoon ja lauluun. Teos tuo lavalle myyttisen ja tarinallisen maailman, jossa tanssi ja laulu kertoo rajattomasta ystävyydestä, vapaudesta ja luopumisesta.</p><p>Toisella puoliajalla nähdään illan pääteos, Nuorisoseura Harmonikan kiitetty tanssiteos Kirjo. Teos kuvaa neuroepätyypillisen ihmisen tunteita ja kokemuksia erilaisuuden maailmassa modernin kansantanssin ja nykytanssin keinoin – herkästi, oivaltavasti ja koskettavasti.<br>Neuroepätyypillisyyden muotoja on yhtä paljon kuin kokijoita; tämä on meidän tapamme pohtia ja lisätä ymmärrystä moninaisuudesta.</p><p>Kirjo / Karhu on juhlakonsertti, jossa monipuolinen ja tarinallinen nykykansantanssi saa näyttämön – liike kertoo, mitä sanat eivät aina tavoita.</p><p>PKN on helsinkiläinen kansantanssiseura, jossa toimii 9 eri-ikäisten ryhmää. Tässä konsertissa mukana Ella Rautamiehen johtamat Roigu ja Riesku sekä Rami Melingin PoppaSitko.</p><p>Susirekka on vuonna 2008 perustettu helsinkiläinen tanssiryhmä, joka treenaa tanssinopettaja Jari Haaviston johdolla haastavaa suomalaista kansantanssia.</p><p>Nuorisseura Harmonikka Lappeenrannan Korvenkylässä toimiva seura, joka tarjoaa kansantanssiharrastuksen niin lapsille kuin aikuisillekin. Lavalla nähdäänkin monenikäistä tanssijaa.</p><p>Kesto: 2 t, sis. 20 min väliajan</p>", "sv": "<p>Kirjo/Karhu – folkdanskonsert</p><p>Pääkaupungin Karjalaiset Nuoret PKN firar sitt 60-årsjubileum 2026 på många sätt. Året inleds med den spektakulär folkdans-konserten Kirjo/Karhu, där tradition och nutid kommer att dansa sida vid sida, både med egna grupper och med inbjudna gästande grupper.</p><p>Under den första halvan av konserten kommer dansgrupper från Helsingfors att inta scenen. Kvällen inleds med Susirekkas framförande av Kaikkein polska och Oispa masurkkaa, där publiken leds in i en värld av rörelse och rytm. PKN:s egna grupper - Roigu, Riesku och Poppasitko - kommer sedan att framföra en förlängd version av Tyttö ja tanssiva karhu, baserad på dikten och sången med samma namn. Verket förvandlar scenen till en mytisk och sagolik värld av dans och sång om gränslös vänskap, frihet och att släppa ifrån sig.</p><p>Under andra halvan bjuds vi på kvällens huvudverk, Nuorisoseura Harmonikas hyllade dansverk Kirjo. Verket skildrar en neurodivergent persons känslor och upplevelser i en värld av olikhet genom modern folkdans och modern dans – känsligt, insiktsfullt och berörande.<br>Det finns lika många former av neurodivergens som det finns personer med upplevelser; detta är vårt sätt att återspegla och öka förståelsen för mångfald.</p><p>Kirjo/Karhu är en festkonsert där mångsidig och historisk samtida dans står i centrum – rörelsen berättar det som ord inte alltid kan beskriva.</p><p>PKN är ett Helsingfors-baserat folkdanslag med 9 grupper för dansare i olika åldrar. I denna konsert medverkar Roigu och Riesku, under ledning av Ella Rautamäki, och PoppaSitko som leds av Rami Meling.</p><p>Susirekka är en Helsingfors-baserad dansgrupp som grundades 2008 och som tränar utmanande finsk folkdans under ledning av dansläraren Jari Haavisto.</p><p>Nuorisseura Harmonikka är en förening från Korvenkylä, Villmanstrand, som erbjuder folkdansaktiviteter för både barn och vuxna. På scenen kommer vi att få se dansare i många åldrar.</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>", "en": "<p>Folk dance that touches the heart and surprises the mind.</p><p>Pääkaupungin Karjalaiset Nuoret PKN will celebrate its 60th anniversary in 2026 in many ways – the year will kick off with a spectacular folk dance concert entitled Kirjo / Karhu, where tradition and the present day will dance side by side, both with their own groups and with groups invited for a visit.</p><p>During the first half of the concert, dance groups from Helsinki will take to the stage. The evening will start with Susirekka’s performance of Kaikkein polska and Oispa masurkkaa, tuning the audience for a journey into a world of movement and rhythm. Next, PKN’s own groups – Roigu, Riesku and PoppaSitko – will perform an expanded version of Tyttö ja tanssiva karhu (‘The Girl and the Dancing Bear’), based on the poem and song of the same name. The work brings to the stage a mythical and storied world of dance and song about boundless friendship, freedom and letting go.</p><p>The second half will feature the evening’s main work, Nuorisoseura Harmonikka’s acclaimed dance piece Kirjo (‘Spectrum’). The work depicts the feelings and experiences of a neurodivergent person in a world of dissimilarity through modern folk dance and contemporary dance – sensitively, insightfully and touchingly.<br>There are as many forms of neurodivergence as there are people experiencing it; this is our way of reflecting on and increasing understanding of diversity.</p><p>Kirjo / Karhu is a celebratory concert in which diverse and storied contemporary dance takes centre stage – movement says what words cannot always capture.</p><p>PKN is a Helsinki-based folk dance society with nine groups for people of different ages. This concert will feature Roigu and Riesku, led by Ella Rautamäki, as well as Rami Meling’s group PoppaSitko.</p><p>Founded in 2008, Susirekka is a Helsinki-based dance group that practices challenging Finnish folk dance under the direction of dance teacher Jari Haavisto.</p><p>Nuorisseura Harmonikka is an association based in Korvenkylä, Lappeenranta, that offers folk dance activities for both children and adults. Accordingly, the stage will be taken over by dancers of a wide range of ages.</p><p>Duration: 2 h, incl. a 20-min intermission</p>" }, "name": { "fi": "Kirjo / Karhu – kansantanssikonsertti", "sv": "Kirjo/Karhu – folkdanskonsert", "en": "Kirjo / Karhu – folk dance concert" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F04DA7CA5B177DC8553DEF033919E056/Kirjo_Karhu_kansantanssikonsertti_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F04DA7CA5B177DC8553DEF033919E056/Kirjo_Karhu_folkdanskonsert", "en": "http://www.malmitalo.fi/en/events/event/F04DA7CA5B177DC8553DEF033919E056/Kirjo_Karhu_folk_dance_concert" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67471/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67334", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494538, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-19T13:14:39.750765Z", "last_modified_time": "2026-01-19T13:14:39.750790Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780980.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494538/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-19T13:14:39.611017Z", "last_modified_time": "2026-03-20T01:12:46.168930Z", "date_published": null, "start_time": "2026-01-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": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8426E84C6B9C8E5B44516BC62C974884/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8426E84C6B9C8E5B44516BC62C974884/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/8426E84C6B9C8E5B44516BC62C974884/Terasleidit_7_kuin_viimeista_paivaa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67334/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67333", "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/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119962/", "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119962/", "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119962/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494345, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-02T08:12:56.136962Z", "last_modified_time": "2026-01-02T08:12:56.136977Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780979.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494345/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-02T08:12:56.037407Z", "last_modified_time": "2026-03-20T01:12:46.032723Z", "date_published": null, "start_time": "2026-01-23T13: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": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kalevala: Kullervon tarina (16) – Kino Helios", "sv": "Kalevala: Kullervon tarina (16) – Kino Helios", "en": "Kalevala: Kullervon tarina (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9DEAEB0AB86068AB3CC062E8A2AD271/Kalevala_Kullervon_tarina_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9DEAEB0AB86068AB3CC062E8A2AD271/Kalevala_Kullervon_tarina_16_", "en": "http://www.malmitalo.fi/en/events/event/A9DEAEB0AB86068AB3CC062E8A2AD271/Kalevala_Kullervon_tarina_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67333/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67884", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-hopeacine-terasleidit-kuin-viimeista-paivaa-malmitalo-21136117/#tab=", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-hopeacine-terasleidit-kuin-viimeista-paivaa-malmitalo-21136117/#tab=", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-hopeacine-terasleidit-kuin-viimeista-paivaa-malmitalo-21136117/#tab=" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494296, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T08:13:34.395928Z", "last_modified_time": "2025-12-23T08:13:34.395945Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781190.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494296/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-12-23T08:13:34.244509Z", "last_modified_time": "2026-03-20T01:12:45.385566Z", "date_published": null, "start_time": "2026-01-22T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.", "sv": "I HopeaCinés program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.", "en": "Designed for seniors, HopeaCiné’s programme features new Finnish films once a month." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><p>Teräsleidit – kuin viimeistä päivää<br>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 1 h 32 min<br>Ikäraja: 7<br>Suomenkielinen tekstitys</p><p>Tekijävieraina elokuvan jälkeen keskustelemassa elokuvan ohjaaja Pamela Tola ja näyttelijä Sanna-Kaisa Palo</p>", "sv": "<p>I HopeaCinés program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.</p><p>Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som efter föreställningen berättar om processen för att göra filmen och erbjuder nytt att tänka på för att fördjupa filmvisningen. HopeaCiné-föreställningarna finns även på Cinema Orion och Nordhuset.<br>Teräsleidit – kuin viimeistä päivää<br>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.<br>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.<br>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.<br>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 107 min<br>Språk: finska, textning: svenska</p>", "en": "<p>Designed for seniors, HopeaCiné’s programme features new Finnish films once a month.</p><p>Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film. You can also find the HopeaCiné screenings at Cinema Orion and Vuotalo.</p><p>Teräsleidit – kuin viimeistä päivää<br>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 107 min<br>Language: Finnish, subtitles: Swedish</p>" }, "name": { "fi": "HopeaCine: Teräsleidit (7) + tekijävieras", "sv": "HopeaCine: Teräsleidit (7) + tekijävieras – Filmvisning & besök av filmskaparna", "en": "HopeaCine: Teräsleidit (7) + tekijävieras – Film screening & author visit" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/932190648DF23ADCDD6AF9E8268941F0/HopeaCine_Terasleidit_7_tekijavieras", "sv": "http://www.malmitalo.fi/sv/evenemang/event/932190648DF23ADCDD6AF9E8268941F0/HopeaCine_Terasleidit_7_tekijavieras", "en": "http://www.malmitalo.fi/en/events/event/932190648DF23ADCDD6AF9E8268941F0/HopeaCine_Terasleidit_7_tekijavieras" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67884/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67332", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119958/", "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119958/", "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21119958/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494344, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-02T08:12:55.519713Z", "last_modified_time": "2026-01-02T08:12:55.519728Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780975.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494344/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-02T08:12:55.389496Z", "last_modified_time": "2026-03-20T01:12:44.891072Z", "date_published": null, "start_time": "2026-01-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa.</p><p>Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kalevala: Kullervon tarina (16) – Kino Helios", "sv": "Kalevala: Kullervon tarina (16) – Kino Helios", "en": "Kalevala: Kullervon tarina (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C64AFD668B4809716A0BDA3C5A510F93/Kalevala_Kullervon_tarina_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C64AFD668B4809716A0BDA3C5A510F93/Kalevala_Kullervon_tarina_16_", "en": "http://www.malmitalo.fi/en/events/event/C64AFD668B4809716A0BDA3C5A510F93/Kalevala_Kullervon_tarina_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67332/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67331", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118945/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118945/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118945/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494268, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:59.124453Z", "last_modified_time": "2025-12-19T10:13:59.124475Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780974.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494268/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:59.024237Z", "last_modified_time": "2026-03-20T01:12:44.769389Z", "date_published": null, "start_time": "2026-01-21T13: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": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E913FF8F242314C8248BE68B509BA7C2/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E913FF8F242314C8248BE68B509BA7C2/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/E913FF8F242314C8248BE68B509BA7C2/Terapia_12_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67331/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67325", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494255, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-18T14:13:39.874516Z", "last_modified_time": "2025-12-18T14:13:39.874540Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780964.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-17T12:13:43.447176Z", "last_modified_time": "2026-01-22T16:13:26.758322Z", "date_published": null, "start_time": "2026-01-14T13: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": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2D3C07928D9C8F1942313AC536E05860/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2D3C07928D9C8F1942313AC536E05860/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/2D3C07928D9C8F1942313AC536E05860/Terasleidit_7_kuin_viimeista_paivaa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67325/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67319", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494130, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T12:13:55.944431Z", "last_modified_time": "2025-12-08T12:13:55.944447Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780955.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T12:13:55.840093Z", "last_modified_time": "2026-01-22T16:13:25.802340Z", "date_published": null, "start_time": "2026-01-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/64AD5853D84DB7CA1BE8D74D7FACC406/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/64AD5853D84DB7CA1BE8D74D7FACC406/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/64AD5853D84DB7CA1BE8D74D7FACC406/Terasleidit_7_kuin_viimeista_paivaa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67319/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67318", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494129, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T12:13:55.544609Z", "last_modified_time": "2025-12-08T12:13:55.544624Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780953.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494129/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T12:13:55.383931Z", "last_modified_time": "2026-01-22T16:13:25.445341Z", "date_published": null, "start_time": "2026-01-03T16: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": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EEBCF783C60671D40D095F7B3D7038F2/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EEBCF783C60671D40D095F7B3D7038F2/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/EEBCF783C60671D40D095F7B3D7038F2/Terasleidit_7_kuin_viimeista_paivaa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67318/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67309", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T11:13:53.418547Z", "last_modified_time": "2025-12-08T11:13:53.418569Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780920.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494126/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T11:13:53.259385Z", "last_modified_time": "2026-01-22T16:13:24.978458Z", "date_published": null, "start_time": "2026-01-02T13: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": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C4A4B6705E0510EDF5738E0A49637BCC/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C4A4B6705E0510EDF5738E0A49637BCC/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/C4A4B6705E0510EDF5738E0A49637BCC/Terasleidit_7_kuin_viimeista_paivaa" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agn6b6yj7a", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/176/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/176/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/176/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/176/signup-group/create" } } ], "data_source": "helsinki", "publisher": "ahjo:u02100", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" } ], "created_time": "2026-01-21T14:35:07.217183Z", "last_modified_time": "2026-01-21T14:41:11.923858Z", "date_published": null, "start_time": "2026-01-28T06:00:00Z", "end_time": "2026-01-28T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10, "minimum_attendee_capacity": null, "enrolment_start_time": "2026-01-22T08:00:00+02:00", "enrolment_end_time": "2026-01-27T09:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "testi", "sv": "testi" }, "provider_contact_info": null, "provider": { "fi": "", "sv": "" }, "description": { "fi": "<p>testi</p>", "sv": "<p>testi</p>" }, "name": { "fi": "otsikko", "sv": "otsikko" }, "info_url": { "fi": "", "sv": "" }, "location_extra_info": { "fi": "", "sv": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agn6b6yj7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67328", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119934/", "sv": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119934/", "en": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119934/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:57.954872Z", "last_modified_time": "2025-12-19T10:13:57.954889Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780968.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494266/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:57.817528Z", "last_modified_time": "2026-01-15T12:13:32.578636Z", "date_published": null, "start_time": "2026-01-16T16: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": "Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa.</p><p>Uusi työ ylellisessä kartanossa tuntuu unelmalta, mutta täydellisen kuoren alla piilee synkkiä salaisuuksia. Perheen äiti Nina alkaa käyttäytyä oudosti Millietä kohtaan. Helpointa olisi lähteä talosta, mutta perheen isä Andrew tukee Millietä kestämään äidin käytöstä. Talon ilmapiiri alkaa kuitenkin käydä painostavaksi… vai kuvitteleeko Millie vain kaiken?</p><p>Paul Feigin ohjaaman, maailmanlaajuiseen menestyskirjaan perustuvan elokuvan pääosissa Sydney Sweeney, Amanda Seyfried, Brandon Sklenar ja Michele Morrone.</p><p>Ikäraja: 16<br>Kesto: 131 min<br>Ensi-ilta: 02.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kotiapulainen (16) – Kino Helios", "sv": "Kotiapulainen (16) – Kino Helios", "en": "Kotiapulainen (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/506045A797E8140CB1EC524B13258E5B/Kotiapulainen_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/506045A797E8140CB1EC524B13258E5B/Kotiapulainen_16_", "en": "http://www.malmitalo.fi/en/events/event/506045A797E8140CB1EC524B13258E5B/Kotiapulainen_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67328/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67330", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:58.549683Z", "last_modified_time": "2025-12-19T10:13:58.549726Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780971.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494267/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:58.440121Z", "last_modified_time": "2026-01-12T10:12:57.264754Z", "date_published": null, "start_time": "2026-01-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": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67329", "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": [], "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494136, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T13:13:56.025285Z", "last_modified_time": "2025-12-08T13:13:56.025298Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494136/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T13:13:55.919041Z", "last_modified_time": "2026-01-12T10:12:57.118147Z", "date_published": null, "start_time": "2026-01-17T13: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": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Supermarsu ja suuri huijaus – Kino Helios", "sv": "Supermarsu ja suuri huijaus – Kino Helios", "en": "Supermarsu ja suuri huijaus – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus", "en": "http://www.malmitalo.fi/en/events/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67329/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67327", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK", "sv": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK", "en": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T09:13:33.834783Z", "last_modified_time": "2025-12-19T09:13:33.834801Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780967.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T09:13:33.722670Z", "last_modified_time": "2026-01-12T10:12:56.761312Z", "date_published": null, "start_time": "2026-01-16T13: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": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Sydäntalvi (16) – Kino Helios", "sv": "Sydäntalvi (16) – Kino Helios", "en": "Sydäntalvi (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_", "en": "http://www.malmitalo.fi/en/events/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67327/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67326", "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": [], "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T09:13:33.340656Z", "last_modified_time": "2025-12-19T09:13:33.340670Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780965.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T09:13:33.222212Z", "last_modified_time": "2026-01-12T10:12:56.514764Z", "date_published": null, "start_time": "2026-01-14T16: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": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67324", "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": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119933/", "sv": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119933/", "en": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119933/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494265, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:57.041876Z", "last_modified_time": "2025-12-19T10:13:57.041894Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780962.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494265/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:56.921989Z", "last_modified_time": "2025-12-19T10:13:57.186781Z", "date_published": null, "start_time": "2026-01-10T16: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": "Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa.</p><p>Uusi työ ylellisessä kartanossa tuntuu unelmalta, mutta täydellisen kuoren alla piilee synkkiä salaisuuksia. Perheen äiti Nina alkaa käyttäytyä oudosti Millietä kohtaan. Helpointa olisi lähteä talosta, mutta perheen isä Andrew tukee Millietä kestämään äidin käytöstä. Talon ilmapiiri alkaa kuitenkin käydä painostavaksi… vai kuvitteleeko Millie vain kaiken?</p><p>Paul Feigin ohjaaman, maailmanlaajuiseen menestyskirjaan perustuvan elokuvan pääosissa Sydney Sweeney, Amanda Seyfried, Brandon Sklenar ja Michele Morrone.</p><p>Ikäraja: 16<br>Kesto: 131 min<br>Ensi-ilta: 02.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kotiapulainen (16) – Kino Helios", "sv": "Kotiapulainen (16) – Kino Helios", "en": "Kotiapulainen (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ED791A9816C673F2619616CC1802A400/Kotiapulainen_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/ED791A9816C673F2619616CC1802A400/Kotiapulainen_16_", "en": "http://www.malmitalo.fi/en/events/event/ED791A9816C673F2619616CC1802A400/Kotiapulainen_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67324/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67322", "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": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21118959/", "sv": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21118959/", "en": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21118959/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494264, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:56.336743Z", "last_modified_time": "2025-12-19T10:13:56.336760Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780959.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494264/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:56.176275Z", "last_modified_time": "2025-12-19T10:13:56.503401Z", "date_published": null, "start_time": "2026-01-09T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa." }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa.</p><p>Uusi työ ylellisessä kartanossa tuntuu unelmalta, mutta täydellisen kuoren alla piilee synkkiä salaisuuksia. Perheen äiti Nina alkaa käyttäytyä oudosti Millietä kohtaan. Helpointa olisi lähteä talosta, mutta perheen isä Andrew tukee Millietä kestämään äidin käytöstä. Talon ilmapiiri alkaa kuitenkin käydä painostavaksi… vai kuvitteleeko Millie vain kaiken?</p><p>Paul Feigin ohjaaman, maailmanlaajuiseen menestyskirjaan perustuvan elokuvan pääosissa Sydney Sweeney, Amanda Seyfried, Brandon Sklenar ja Michele Morrone.</p><p>Ikäraja: 16<br>Kesto: 131 min<br>Ensi-ilta: 02.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kotiapulainen (16) – Kino Helios", "sv": "Kotiapulainen (16) – Kino Helios", "en": "Kotiapulainen (16) – Kino Helios" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/27BE668A5AE2CCF52D6A9E23E28776BD/Kotiapulainen_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/27BE668A5AE2CCF52D6A9E23E28776BD/Kotiapulainen_16_", "en": "http://www.malmitalo.fi/en/events/event/27BE668A5AE2CCF52D6A9E23E28776BD/Kotiapulainen_16_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67322/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }