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=21
{ "meta": { "count": 1650, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=22", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=20" }, "data": [ { "id": "kulke:66394", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p6529/?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 €" }, "info_url": { "fi": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/", "sv": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/", "en": "https://www.lippu.fi/event/aeiou-elaemaen-kukka-malmitalo-20281904/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1178356, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-04T08:12:35.339766Z", "last_modified_time": "2025-07-04T08:12:35.339780Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774026.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178356/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-04T08:12:35.276842Z", "last_modified_time": "2025-09-01T11:13:47.188184Z", "date_published": null, "start_time": "2025-09-20T07: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka", "sv": "http://www.malmitalo.fi/sv/evenemang/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka", "en": "http://www.malmitalo.fi/en/events/event/78DD10F4B320B7A2779CD12037B0B165/AEIOU_Elaman_kukka" }, "name": { "fi": "AEIOU: Elämän kukka", "sv": "AEIOU: Elämän kukka", "en": "AEIOU: Elämän kukka" }, "description": { "fi": "<p>Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.</p><p>Vakavaa aihetta käsitellään elämänmyönteisesti. ”Ensin on siemen. Se itää, kasvaa, kukkii, pölyttyy, siementää ja kuihtuu. ”</p><p>Ikäsuositus: 6 kk + <br>Kieli: Sanaton<br>Kesto: 30 min</p><p>Elämän kukalle myönnettiin Slovenian Teatteri-instituutin Laatumerkki 2020.<br> <br>Käsikirjoitus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Ohjaus: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Vannekoreografia: Henna Matanuska<br>Lavastus ja puvustus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Kukkahame: Iztok Hrga<br>Musiikki: Gregor Zemljič</p><p>Esiintyjät: Henna Matanuska, Katja Kähkönen<br>Kuvat ja video: Heikki Järvinen<br>Tuottaja: Vauva- ja taaperoteatteri AEIOU<br>Yhteistyökumppanit: Lasten ja taiteiden talo, Ljubljana, Lastenkulttuurikeskus Rulla, Tampereen kulttuuripalvelut<br>Suomen ensi-ilta: marraskuu 2020, Monitoimitalo 13, Tampere<br>Slovenian ensi-ilta: lokakuu 2021, Bobri-festivaali, Lasten ja taiteiden talo, Ljubljana<br>Esitystä ovat tukeneet Taiteen edistämiskeskus, Samuel Huberin taidesäätiö, Alli Paasikiven Säätiö, Suomen Kulttuurirahasto, Pirkanmaan Kulttuurirahasto, Alfred Kordelinin säätiö ja Ljubljanan kulttuuritoimi.</p><p>Esitys päiväkotiryhmille pe 19.9. klo 10 varattavissa kultus.hel.fi kautta.</p>", "sv": "<p>Elämän kukka (Livets blomma) är en ordlös pjäs, som musiken skapar rytm till, som handlar om livets kretslopp och kombinerar cirkus och dockteater.</p><p>Det allvarliga ämnet behandlas på ett livsbekräftande sätt. ”Först är det fröet. Det gror, växer, blommar, pollinerar, fröar och vissnar.”</p><p>Åldersrekommendation: +6 månader <br>Språk: Ordlöst<br>Längd: 30 minuter</p><p>Elämän kukka tilldelades Slovenian Theatre Institutes kvalitetsmärke 2020.<br> <br>Manus: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Regi: Katja Kähkönen, Katja Povše, Mateja Ocepek<br>Tunnbandskoreografi: Henna Matanuska<br>Scenografi och kostymdesign: Katja Kähkönen, Mateja Ocepek, Katja Povše<br>Blomkjol: Iztok Hrga<br>Musik: Gregor Zemljič</p><p>Artister: Henna Matanuska, Katja Kähkönen<br>Bilder och video: Heikki Järvinen<br>Producent: Baby- och barnteater AEIOU<br>Samarbetspartner: House of Children and Arts, Ljubljana, barnkulturcentret Rulla, Tammerfors kulturtjänster<br>Premiär i Finland: november 2020, Monitoimitalo 13, Tammerfors<br>Premiär i Slovenien: oktober 2021, Bobri Festival, House of Children and Arts, Ljubljana<br>Föreställningen stöds av Centret för konstfrämjande, Samuel Hubers konststiftelse, Alli Paasikivis stiftelse, Finska kulturfonden, Birkalands kulturstiftelse, Alfred Kordelins stiftelse och Ljubljanas kulturväsende.</p>", "en": "<p>The Flower of Life is a wordless performance combining hoop artistry, object theatre, music, circus and puppet theatre to portray the cycle of life.</p><p>Although serious, the theme is approached with a life-affirming tone. \"First comes the seed. It germinates, grows, blooms, is pollinated, produces seeds and withers.\"</p><p>Age recommendation: +6 months <br>Language: Non-verbal<br>Duration: 30 min</p><p>The Flower of Life was awarded the Quality Label by the Slovenian Theatre Institute in 2020.<br> <br>Script: Katja Kähkönen, Mateja Ocepek and Katja Povše<br>Directed by: Katja Kähkönen, Katja Povše and Mateja Ocepek<br>Hoop choreography: Henna Matanuska<br>Set and costume design: Katja Kähkönen, Mateja Ocepek and Katja Povše<br>Flower skirt: Iztok Hrga<br>Music: Gregor Zemljič</p><p>Performers: Henna Matanuska and Katja Kähkönen<br>Photos and video: Heikki Järvinen<br>Producer: Baby and Toddler Theatre AEIOU<br>Partners: House of Children and Arts, Ljubljana; Children's Cultural Centre Rulla; Tampere Cultural Services<br>Finnish premiere: November 2020, Multihouse 13, Tampere<br>Slovenian premiere: October 2021, Bobri Festival, House of Children and Arts, Ljubljana<br>The performance has been supported by the Arts Promotion Centre Finland, the Samuel Huber Art Foundation, the Alli Paasikivi Foundation, the Finnish Cultural Foundation, the Pirkanmaa Regional Fund, the Alfred Kordelin Foundation, and the City of Ljubljana Department for Culture.</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Elämän kukka on musiikin rytmittämä, sirkusta ja nukketeatteria yhdistävä sanaton vannetaide- ja esineteatteriesitys elämän kiertokulusta.", "sv": "Elämän kukka (Livets blomma) är en ordlös pjäs, som musiken skapar rytm till, som handlar om livets kretslopp och kombinerar cirkus och dockteater.", "en": "The Flower of Life is a wordless performance combining hoop artistry, object theatre, music, circus and puppet theatre to portray the cycle of life." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66394/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66097", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" }, "info_url": { "fi": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/", "sv": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/", "en": "https://www.lippu.fi/event/jukka-gustavson-street-level-feat-jukka-orma-malmitalo-20201222/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1177685, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-04T06:12:36.850925Z", "last_modified_time": "2025-07-04T06:12:36.850945Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771484.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1177685/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-04T06:12:36.794824Z", "last_modified_time": "2025-09-01T11:13:46.401889Z", "date_published": null, "start_time": "2025-09-18T16: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_", "en": "http://www.malmitalo.fi/en/events/event/EE181F724774556C5C45F02505EEAD6C/Jukka_Gustavson_Street_Level_feat_Jukka_Orma_" }, "name": { "fi": "Jukka Gustavson & Street Level feat. Jukka Orma", "sv": "Jukka Gustavson & Street Level feat. Jukka Orma", "en": "Jukka Gustavson & Street Level feat. Jukka Orma" }, "description": { "fi": "<p>Jukka Orma ja Jukka Gustavson yhdistävät voimansa ja tarjoavat mielenkiintoisen konsertin eri vuosikymmeniltä!</p><p>Konsertti pohjautuu 60- ja 70-luvun klassikoihin sekä omaan materiaaliin ja yllätyksiäkin on luvassa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>", "sv": "<p>Jukka Orma och Jukka Gustavson förenar sina krafter och bjuder på en intressant konsert från olika årtionden!</p><p>Konserten bygger på klassiker från 60- och 70-talet samt eget material, och även överraskningar utlovas.</p><p>Längd: 2 timmar inklusive paus 20 minuter</p>", "en": "<p>Jukka Orma and Jukka Gustavson join forces for an interesting concert from various decades!</p><p>The concert is based on classics from the 60s and 70s, as well as original material with a few surprises in store.</p><p>Duration: 2 hours, incl. a 20-min intermission.</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Jukka Orma ja Jukka Gustavson yhdistävät voimansa ja tarjoavat mielenkiintoisen konsertin eri vuosikymmeniltä!", "sv": "Jukka Orma och Jukka Gustavson förenar sina krafter och bjuder på en intressant konsert från olika årtionden!", "en": "Jukka Orma and Jukka Gustavson join forces for an interesting concert from various decades!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66097/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66956", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490568, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T13:13:55.941804Z", "last_modified_time": "2025-08-29T13:13:55.941821Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777068.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490568/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T13:13:55.802822Z", "last_modified_time": "2025-08-29T15:13:50.851617Z", "date_published": null, "start_time": "2025-08-30T08:00:00Z", "end_time": "2025-08-30T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva", "en": "http://www.malmitalo.fi/en/events/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmi_Market_Day" }, "name": { "fi": "Ylä-Malmin toripäivä", "sv": "Ylä-Malmin toripäivä", "en": "Ylä-Malmi Market Day" }, "description": { "fi": "<p>Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.</p><p>Paikan päällä on yli 20 torimyyjää ja esittelijää, joiden antimiin pääset tutustumaan markkinatyyliin. Päivään mahtuu myös muuta pientä ilahduttavaa, somistetaan Malmia kauniin kukkakirjaimin ja mahdollisesti paikan päällä on myös sirkusta. Tervetuloa mukaan! <br> <br>Ylä-Malmin toripäivä on osa OmaStadi-hanketta \"Ylä-Malmin tori ja Ala-Malmin puisto viihtyisäksi!\". Ylä-Malmin torin elävöittäminen on lähtenyt käyntiin asukkaiden ja alueen toimijoiden toiveita ja ehdotuksia kartoittamalla.</p>", "en": "<p>Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!</p><p>There will be more than 20 market sellers and exhibitors on site offering their specialties in true market style. The day will also feature other delightful surprises: we will once again decorate the square with beautiful floral letters, and there may even be circus performances! Everyone is welcome!<br> <br>Ylä-Malmi Market Day is part of the OmaStadi project “Making the square of Ylä-Malmi and Ala-Malmi Park more enjoyable!”. The revitalization of Ylä-Malmi Square began by gathering wishes and suggestions from residents and local actors.</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.", "en": "Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66956/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66682", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1162433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T08:13:43.171942Z", "last_modified_time": "2025-07-02T08:13:43.171958Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772202.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T08:13:43.042214Z", "last_modified_time": "2025-08-29T11:17:00.201089Z", "date_published": null, "start_time": "2025-09-13", "end_time": "2025-10-04", "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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BF675A976F98603E8E6E42CA89953EC4/Live_Love_Lahio_Malmi_Vice_20_vuotta_juhlanayttely", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_LAHIO_MALMI_VICE_20_AR", "en": "http://www.malmitalo.fi/en/events/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS_MALMI_VICE_20_YEARS" }, "name": { "fi": "Live Love Lähiö – Malmi Vice 20 vuotta juhlanäyttely", "sv": "LIVE LOVE LÄHIÖ – MALMI VICE 20 ÅR", "en": "LIVE LOVE SUBURBS – MALMI VICE 20 YEARS" }, "description": { "fi": "<p>Omaperäinen lähiökulttuurin helmi Malmi Vice juhlistaa 20-vuotista eloaan värikkäällä näyttelyllä Malmitalon galleriassa.</p><p>Taiteilija <b>Valari Tynkkysen </b> luoma ironinen ja oivaltava Malmi Vice sai alkunsa vuosien 2004–2005 taitteessa. Noin 20 vuotta myöhemmin tämä suomenlaajuiseksi levinnyt paikallinen ilmiö on edelleen voimissaan!</p><p>Malmitalon galleria ja aula täyttyy syyskuussa eri tekniikoin valmistetuista töistä, jotka ovat läpileikkauksia Malmi Vice logoista, printeistä ja estetiikasta 20 vuoden ajalta. Jos luulet, että ruska on syksyn värikkäin tapahtuma, olet väärässä.</p><p>Näyttelyn lisäksi Miami Vice näkyy Malmitalossa järjestettävässä Malmi Mayhemi-ilmaistapahtumassa 13.9. klo 13–19, jossa tarjoillaan lähiökulttuurin, urbaanin taiteen ja katumuodin parhaita paloja.</p>", "sv": "<p>Den unika internet- och memekulturens pärla Malmi Vice firar sitt 20-åriga liv med en färgstark utställning i galleriet i Malms kulturhus.</p><p>Den ironiska och insiktsfulla Malmi Vice, som skapades av konstnären Valari Tynkkynen, fick sin början i årsskiftet 2004–2005. Ungefär 20 år senare är detta lokala fenomen som har spridit sig över hela Finland fortfarande i full gång!</p><p>I september fylls galleriet och hallentrén i Malms kulturhus med arbeten som skapats med olika tekniker och som genomskärs av Malmi Vices logotyper, print och estetik under 20 år. Om du tror att ruskan är höstens mest färgstarka händelse, har du fel.</p><p>Förutom i utställningen visas Malmi Vice på gratisevenemanget Malmi Mayhem i Malms kulturhus den 13 september kl. 13–19, som serverar det bästa av förortskultur, urban konst och gatumode.</p><p>Fritt inträde</p>", "en": "<p>An original gem of internet and meme culture, Malmi Vice celebrates its 20th anniversary with a colourful exhibition at Malmitalo's gallery.</p><p>The ironic and insightful Malmi Vice, created by artist Valari Tynkkynen, was born in 2004–2005. Nearly 20 years on, this local phenomenon, which has now spread across Finland, is still going strong!</p><p>In September, Malmitalo's gallery and lobby will be filled with artworks made with various techniques, offering a cross-section of Malmi Vice logos, prints and aesthetics from across two decades. If you think autumn leaves are the most colourful thing this season, think again.</p><p>In addition to the exhibition, Malmi Vice will also take over the free Malmi Mayhemi event at Malmitalo on 13 September from 13:00 to 19:00, featuring the best of suburban culture, urban art and street fashion.</p><p>Free entry</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Omaperäinen lähiökulttuurin helmi Malmi Vice juhlistaa 20-vuotista eloaan värikkäällä näyttelyllä Malmitalon galleriassa.", "sv": "Den unika internet- och memekulturens pärla Malmi Vice firar sitt 20-åriga liv med en färgstark utställning i galleriet i Malms kulturhus.", "en": "An original gem of internet and meme culture, Malmi Vice celebrates its 20th anniversary with a colourful exhibition at Malmitalo's gallery." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66947", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490566, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T10:15:41.458744Z", "last_modified_time": "2025-08-29T10:15:41.458760Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776500.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490566/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T10:15:41.354498Z", "last_modified_time": "2025-08-29T10:15:41.587004Z", "date_published": null, "start_time": "2025-09-19T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_", "en": "http://www.malmitalo.fi/en/events/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_" }, "name": { "fi": "The Last Viking (16) – Kino Helios", "sv": "The Last Viking (16) – Kino Helios", "en": "The Last Viking (16) – Kino Helios" }, "description": { "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66947/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66946", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T10:15:39.665080Z", "last_modified_time": "2025-08-29T10:15:39.665097Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T10:15:39.524728Z", "last_modified_time": "2025-08-29T10:15:39.826826Z", "date_published": null, "start_time": "2025-09-13T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_", "en": "http://www.malmitalo.fi/en/events/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_" }, "name": { "fi": "The Last Viking (16) – Kino Helios", "sv": "The Last Viking (16) – Kino Helios", "en": "The Last Viking (16) – Kino Helios" }, "description": { "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66946/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66945", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T09:13:46.435865Z", "last_modified_time": "2025-08-29T09:13:46.435887Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776504.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T09:13:46.337686Z", "last_modified_time": "2025-08-29T09:13:46.566433Z", "date_published": null, "start_time": "2025-09-20T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_", "en": "http://www.malmitalo.fi/en/events/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_" }, "name": { "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios" }, "description": { "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66945/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66944", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T09:13:45.003925Z", "last_modified_time": "2025-08-29T09:13:45.003941Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776497.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T09:13:44.903532Z", "last_modified_time": "2025-08-29T09:13:45.133799Z", "date_published": null, "start_time": "2025-09-17T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/60BB1D03272160B7FC67FD2F5F377FAB/Downton_Abbey_Viimeinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/60BB1D03272160B7FC67FD2F5F377FAB/Downton_Abbey_Viimeinen_naytos_S_", "en": "http://www.malmitalo.fi/en/events/event/60BB1D03272160B7FC67FD2F5F377FAB/Downton_Abbey_Viimeinen_naytos_S_" }, "name": { "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios" }, "description": { "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66944/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66943", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T09:13:43.237268Z", "last_modified_time": "2025-08-29T09:13:43.237285Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776493.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T09:13:43.077349Z", "last_modified_time": "2025-08-29T09:13:43.403919Z", "date_published": null, "start_time": "2025-09-12T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_", "en": "http://www.malmitalo.fi/en/events/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_" }, "name": { "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios" }, "description": { "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66943/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66942", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T11:13:56.589397Z", "last_modified_time": "2025-08-27T11:13:56.589412Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776507.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490547/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-27T11:13:56.492265Z", "last_modified_time": "2025-08-27T11:13:56.738470Z", "date_published": null, "start_time": "2025-09-27T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5CEC2D2FB3391EB4037FD3CFC8ACA93/Fleak_Kekselias_ystavani_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5CEC2D2FB3391EB4037FD3CFC8ACA93/Fleak_Kekselias_ystavani_7_", "en": "http://www.malmitalo.fi/en/events/event/D5CEC2D2FB3391EB4037FD3CFC8ACA93/Fleak_Kekselias_ystavani_7_" }, "name": { "fi": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "sv": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "en": "Fleak: Kekseliäs ystäväni (7) – Kino Helios" }, "description": { "fi": "<p>Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta.</p><p>Elokuva kertoo 11-vuotiaasta Tuomaksesta joka seuraa vanhempia sisaruksiaan Mikiä ja Ceciä salaiseen piilopaikkaan. Tuomas todistaa heille innokkaasti kykyjään ja joutuu onnettomuuteen, jossa hän menettää kävelykykynsä.</p><p>Mutta, silloin hänen elämäänsä ilmestyy Fleak, pieni, pörröinen ja leikkisä vieras toisesta ulottuvuudesta. He ystävystyvät ja Fleak vie Tuomaksen mukaan omaan värikkääseen maailmaansa, missä Tuomas oppii irrottautumaan varjostaan ja kävelemään taas.</p><p>Vapaudella on kuitenkin hintansa, sillä kun Tuomas siirtyy takaisin omaan todellisuuteensa, saa hän varjonsa taas seurakseen. Varjo uhkaa niin Fleakin kuin Tuomaksenkin todellisuutta ja sen pysäyttääkseen Tuomaksen on löydettävä yhteys sisaruksiinsa uudelleen.</p><p>Ikäraja: 7<br>Kesto: 84 min<br>Ensi-ilta: 05.09.2025<br>Elokuva on puhuttu suomeksi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66942/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66941", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490546, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T11:13:54.865883Z", "last_modified_time": "2025-08-27T11:13:54.865898Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776503.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490546/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-27T11:13:54.755185Z", "last_modified_time": "2025-08-27T11:13:55.014674Z", "date_published": null, "start_time": "2025-09-20T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/867E6AC7321E7564A21FF415861EA73D/Fleak_Kekselias_ystavani_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/867E6AC7321E7564A21FF415861EA73D/Fleak_Kekselias_ystavani_7_", "en": "http://www.malmitalo.fi/en/events/event/867E6AC7321E7564A21FF415861EA73D/Fleak_Kekselias_ystavani_7_" }, "name": { "fi": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "sv": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "en": "Fleak: Kekseliäs ystäväni (7) – Kino Helios" }, "description": { "fi": "<p>Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta.</p><p>Elokuva kertoo 11-vuotiaasta Tuomaksesta joka seuraa vanhempia sisaruksiaan Mikiä ja Ceciä salaiseen piilopaikkaan. Tuomas todistaa heille innokkaasti kykyjään ja joutuu onnettomuuteen, jossa hän menettää kävelykykynsä.</p><p>Mutta silloin hänen elämäänsä ilmestyy Fleak, pieni, pörröinen ja leikkisä vieras toisesta ulottuvuudesta. He ystävystyvät ja Fleak vie Tuomaksen mukaan omaan värikkääseen maailmaansa, missä Tuomas oppii irrottautumaan varjostaan ja kävelemään taas. Vapaudella on kuitenkin hintansa, sillä kun Tuomas siirtyy takaisin omaan todellisuuteensa, saa hän varjonsa taas seurakseen. Varjo uhkaa niin Fleakin kuin Tuomaksenkin todellisuutta ja sen pysäyttääkseen Tuomaksen on löydettävä yhteys sisaruksiinsa uudelleen.</p><p>Ikäraja: 7<br>Kesto: 84 min<br>Ensi-ilta: 05.09.2025<br>Elokuva on puhuttu suomeksi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66941/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66940", "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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "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 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-jossain-on-valo-joka-ei-sammu-3964075/#calendar-start=2025-09", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-jossain-on-valo-joka-ei-sammu-3964075/#calendar-start=2025-09", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-jossain-on-valo-joka-ei-sammu-3964075/#calendar-start=2025-09" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T11:13:53.614208Z", "last_modified_time": "2025-08-27T11:13:53.614223Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775247.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-27T11:13:53.482785Z", "last_modified_time": "2025-08-27T11:13:53.808630Z", "date_published": null, "start_time": "2025-09-18T10: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E98FE073949B6C94EBE1A7763A717B93/Jossain_on_valo_joka_ei_sammu_tekijavierailu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E98FE073949B6C94EBE1A7763A717B93/Jossain_on_valo_joka_ei_sammu_filmskapargast_", "en": "http://www.malmitalo.fi/en/events/event/E98FE073949B6C94EBE1A7763A717B93/A_Light_That_Never_Goes_Out_Guest_Lauri-Matti_Parppei" }, "name": { "fi": "Jossain on valo joka ei sammu + tekijävierailu – HopeaCine / Kino Helios", "sv": "Jossain on valo joka ei sammu + filmskapargäst – HopeaCine / Kino Helios", "en": "A Light That Never Goes Out + Guest Lauri-Matti Parppei – HopeaCine / Kino Helios" }, "description": { "fi": "<p>Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset saapuvat tänä syksynä Malmitaloon ja Vuotaloon!</p><p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa. 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.</p><p><b>Jossain on valo joka ei sammu</b><br>Romahduksen kokenut ammattihuilisti Pauli (Samuel Kujala) palaa lapsuudenkotiinsa Raumalle. Hän tapaa vanhan koulukaverinsa Iiriksen (Anna Rosaliina Kauno), joka sinnikkäästi taivuttelee Paulin mukaansa tekemään outoa musiikkia, jota kukaan ei tiennyt haluavansa kuulla. Aiemmin virheettömyyteen pyrkinyt Pauli alkaa löytää lohtua kummallisista äänistä ja omalaatuisesta ystävyydestä.</p><p>Cannesin elokuvajuhlien ACID-sarjassa maailmanensi-iltansa saanut Jossain on valo joka ei sammu on Lauri-Matti Parppein anteeksipyytelemätön esikoisohjaus ja vilpitön rakkaudentunnustus kotikaupungilleen Raumalle.</p><p>Tekijävieraana elokuvan ohjaaja-käsikirjoittaja <b>Lauri-Matti Parppei.</b> Haastattelijana elokuvakasvattaja <b>Kaisa Kukkola.</b></p><p>Elokuvan kesto 1 tunti 50 min + keskustelu n. 30 min</p>", "sv": "<p>HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!</p><p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden. Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som berättar om processen för att göra filmen efter föreställningen och erbjuder nytt att tänka på för att fördjupa filmvisningen.</p><p><b>Jossain on valo joka ei sammu</b><br>Pauli (Samuel Kujala) är en yrkesflöjtist som återvänder till sitt barndomshem i Raumo. Han träffar sin gamla skolkamrat Iiris (Anna Rosaliina Kauno) som envist övertalar Pauli att skapa konstig musik som ingen visste att de ville höra. Pauli, som tidigare strävat efter felfrihet, börjar finna tröst i de konstiga ljuden och den säregna vänskapen.</p><p>Jossain on valo joka ei sammu, som hade världspremiär på Cannes filmfestival i ACID-serien, är Lauri-Matti Parppeis okonstlade debutfilm och en uppriktig kärleksförklaring till hans hemstad Rauma.</p><p>Regissören och manusförfattaren <b>Lauri-Matti Parppei</b> är filmskapargäst.<br>Filmens längd: 1 timme 50 minuter + diskussion ca 30 minuter</p>", "en": "<p>HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!</p><p>Designed for seniors, HopeaCine's programme features new Finnish films once a month. 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.</p><p><b>A Light That Never Goes Out</b><br>Pauli (Samuel Kujala), a professional flutist who has gone through a breakdown, returns to his childhood home in Rauma. There, he meets his old school friend Iris (Anna Rosaliina Kauno), who convinces Pauli to join her in creating strange music that no one knew they wanted to hear. Previously striving for perfection, Pauli begins to find comfort in unusual sounds and an unconventional friendship.</p><p>A Light That Never Goes Out, which had its world premiere in the ACID section at the Cannes Film Festival, is Lauri-Matti Parppei's unapologetic debut film and a sincere confession of his love for his hometown, Rauma.</p><p>The director-screenwriter <b>Lauri-Matti Parppei</b> will appear as a guest.</p><p>Film duration 1 hour 50 min + about 30 min of discussion</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Cinema Orionista lähtöisin olevat HopeaCine-elokuvanäytökset saapuvat tänä syksynä Malmitaloon ja Vuotaloon!", "sv": "HopeaCine-filmvisningarna från Cinema Orion kommer till Malms kulturhus och Nordhuset i höst!", "en": "HopeaCine film screenings, originally from Cinema Orion, are coming to Malmitalo and Vuotalo this autumn!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66940/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66939", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490540, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T14:12:34.800181Z", "last_modified_time": "2025-08-26T14:12:34.800194Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776495.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-26T14:12:34.751854Z", "last_modified_time": "2025-08-26T14:12:34.898144Z", "date_published": null, "start_time": "2025-09-13T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7D1DB1D4F0E69AB202712BED5E376423/Fleak_Kekselias_ystavani_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7D1DB1D4F0E69AB202712BED5E376423/Fleak_Kekselias_ystavani_7_", "en": "http://www.malmitalo.fi/en/events/event/7D1DB1D4F0E69AB202712BED5E376423/Fleak_Kekselias_ystavani_7_" }, "name": { "fi": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "sv": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "en": "Fleak: Kekseliäs ystäväni (7) – Kino Helios" }, "description": { "fi": "<p>Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta.</p><p>Elokuva kertoo 11-vuotiaasta Tuomaksesta joka seuraa vanhempia sisaruksiaan Mikiä ja Ceciä salaiseen piilopaikkaan. Tuomas todistaa heille innokkaasti kykyjään ja joutuu onnettomuuteen, jossa hän menettää kävelykykynsä.</p><p>Mutta, silloin hänen elämäänsä ilmestyy Fleak, pieni, pörröinen ja leikkisä vieras toisesta ulottuvuudesta. He ystävystyvät ja Fleak vie Tuomaksen mukaan omaan värikkääseen maailmaansa, missä Tuomas oppii irrottautumaan varjostaan ja kävelemään taas.</p><p>Vapaudella on kuitenkin hintansa, sillä kun Tuomas siirtyy takaisin omaan todellisuuteensa, saa hän varjonsa taas seurakseen. Varjo uhkaa niin Fleakin kuin Tuomaksenkin todellisuutta ja sen pysäyttääkseen Tuomaksen on löydettävä yhteys sisaruksiinsa uudelleen.</p><p>Ikäraja: 7<br>Kesto: 84 min<br>Ensi-ilta: 05.09.2025<br>Elokuva on puhuttu suomeksi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66939/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66885", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-fleak-kekseliaes-ystaevaeni-3964070/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490532, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T13:14:43.670992Z", "last_modified_time": "2025-08-26T13:14:43.671010Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776477.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490532/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-26T13:14:43.556325Z", "last_modified_time": "2025-08-26T14:12:33.693938Z", "date_published": null, "start_time": "2025-09-06T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9FAABF343CDDE0EF7A74DF5F2B687568/Fleak_Kekselias_ystavani_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9FAABF343CDDE0EF7A74DF5F2B687568/Fleak_Kekselias_ystavan_7_", "en": "http://www.malmitalo.fi/en/events/event/9FAABF343CDDE0EF7A74DF5F2B687568/Fleak_Kekselias_ystavan_7_" }, "name": { "fi": "Fleak: Kekseliäs ystäväni (7) – Kino Helios", "sv": "Fleak: Kekseliäs ystävän (7) – Kino Helios", "en": "Fleak: Kekseliäs ystävän (7) – Kino Helios" }, "description": { "fi": "<p>Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta.</p><p>Elokuva kertoo 11-vuotiaasta Tuomaksesta joka seuraa vanhempia sisaruksiaan Mikiä ja Ceciä salaiseen piilopaikkaan. Tuomas todistaa heille innokkaasti kykyjään ja joutuu onnettomuuteen, jossa hän menettää kävelykykynsä.</p><p>Mutta, silloin hänen elämäänsä ilmestyy Fleak, pieni, pörröinen ja leikkisä vieras toisesta ulottuvuudesta. He ystävystyvät ja Fleak vie Tuomaksen mukaan omaan värikkääseen maailmaansa, missä Tuomas oppii irrottautumaan varjostaan ja kävelemään taas.</p><p>Vapaudella on kuitenkin hintansa, sillä kun Tuomas siirtyy takaisin omaan todellisuuteensa, saa hän varjonsa taas seurakseen. Varjo uhkaa niin Fleakin kuin Tuomaksenkin todellisuutta ja sen pysäyttääkseen Tuomaksen on löydettävä yhteys sisaruksiinsa uudelleen.</p><p>Ikäraja: 7<br>Kesto: 84 min<br>Ensi-ilta: 05.09.2025<br>Elokuva on puhuttu suomeksi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lapsen näkökulmasta kerrottu Fleak on sydäntälämmittävä ja villin mielikuvituksellinen seikkailu omien pelkojen kohtaamisesta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66885/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66214", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/gourmet/", "sv": "https://www.lippu.fi/artist/gourmet/", "en": "https://www.lippu.fi/artist/gourmet/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T13:14:58.665455Z", "last_modified_time": "2025-08-26T13:14:58.665476Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772839.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T13:14:58.421806Z", "last_modified_time": "2025-08-26T13:14:58.954145Z", "date_published": null, "start_time": "2025-10-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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E8E49DEE127D89C683BAD9D940E5CA6D/Gourmet_Symposium_levynjulkaisukonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E8E49DEE127D89C683BAD9D940E5CA6D/Releasekonsert_for_albumet_Gourmet_Symposium", "en": "http://www.malmitalo.fi/en/events/event/E8E49DEE127D89C683BAD9D940E5CA6D/Gourmet_Symposium_Album_Release_Concert" }, "name": { "fi": "Gourmet Symposium – levynjulkaisukonsertti – MalmiJazz", "sv": "Releasekonsert för albumet Gourmet Symposium – MalmiJazz", "en": "Gourmet Symposium – Album Release Concert – MalmiJazz" }, "description": { "fi": "<p>Suomalaisen instrumentaalimusiikin oman tiensä kulkija ilahduttaa uudella levyllään.</p><p>Malmijazz-konsertissa yhtye juhlii tuoreinta julkaisuaan esittäen levyn kappaleita sekä tuoreempaa tuotantoa. Helsingissä kesäkuussa 2017 taltioitu Symposium on yhtyeen ensimmäinen live-albumi, joka julkaistiin 2.5.2025.</p><p>Kitaristi Esa Onttosen ja saksofonisti Mikko Innasen vuonna 1997 perustama Gourmet on yksi Suomen pitkäikäisimmistä jazzyhtyeistä, jonka värikylläisestä musiikista löytyy rautalankakitaraa, schlaageria, Pariisin kahvilatunnelmia, New Orleans -bluesia, valssia, marssia ja raivobeattia. Mukana Malmisalissa ovat Innasen ja Onttosen lisäksi muut alkuperäisjäsenet harmonikan soittaja Veli Kujala, pasunisti Ilmari Pohjola ja rumpali Mika Kallio. Uutena jäsenenä kuullaan tuubisti Ville Niemelää. <br> <br>Symposium tuo ensimmäistä kertaa äänitteelle Gourmet'n rehevän lavasoundin. Albumi on taltioitu yhtyeen konsertissa G Livelabissa Helsingissä 10. kesäkuuta 2017. Symposium sisältää yhdeksän live-versiota menestyksekkään En garde -albumin (2018) kappaleista kuten suistomaisesti rokkaavasta \"Pink Camelista\", sirkushenkisestä \"Love Gone Wrongista\" ja virtuoottisesta \"What Can We Do When The Sky Falls Downista\". Julkaisulla Gourmet-yhtye kunnioittaa myös keväällä 2023 edesmenneitä jäseniään Petri Keskitaloa ja Janne Antikaista. Äänityksesta vastaa Kimmo Antikainen, miksauksesta Teemu Korpipää ja masteroinnista ja vinyylikaiverruksesta Virtalähde Mastering. Kannet on toteuttanut Petra Innanen.</p><p>Gourmet on julkaissut aiemmin viisi albumia, joista viimeisin New Habitat julkaistiin loppuvuodesta 2020. Yhtye on esiintynyt Suomen lisäksi Alankomaissa, Belgiassa, Itävallassa, Marokossa, Norjassa, Ranskassa, Saksassa, Unkarissa ja Virossa.</p><p>“Gourmet-yhtyeen oma tapa sekoittaa populaarimusiikin tunnelmia, perinteistä jazzia, elokuvamusiikkia (spaghetti-western), musette-valssia, ja niin edelleen, on aivan ällistyttävä ja huumaava.” <br>- Philippe Méziat, Jazz Magazine / Gourmet Rendez-vous de l’Erdre festivaalilla, Nantes, Ranska 2017.</p><p>Kesto: 1 t 15 min</p><p><b>Kokoonpano:</b><br>Esa Onttonen, kitara, säv. <br>Mikko Innanen, saksofoni, säv. <br>Ilmari Pohjola, pasuuna <br>Veli Kujala, harmonikka <br>Ville Niemelä, tuuba <br>Mika Kallio, rummut <br> <br><b>Tuotanto:</b> Malmitalo ja Vapaat äänet</p>", "sv": "<p>Bandet som går sin egen väg inom den finländska instrumentalmusiken gläder oss med sin nya skiva.</p><p>I Malmijazz-konserten firar bandet sin senaste utgivning genom att framföra låtarna på skivan samt en nyare produktion. Symposium, som spelades in i Helsingfors i juni 2017, är bandets första livealbum och släpptes den 2 maj 2025.</p><p>Gourmet, som grundades 1997 av gitarristen Esa Onttonen och saxofonisten Mikko Innanen, är ett av Finlands mest långlivade jazzband, med färgstark musik som omfattar ståltrådsgitarr, schlager, parisisk caféatmosfär, New Orleans-blues, vals, marsch och furiös beat. Förutom Innanen och Onttonen är de övriga originalmedlemmarna, dragspelaren Veli Kujala, trombonisten Ilmari Pohjola och trumslagare Mika Kallio, på plats i salen i Malms Kulturhus. Tubaspelaren Ville Niemelä är en ny medlem i bandet. <br> <br>Symposium återger för första gången Gourmets frodiga scenljud i en inspelning. Albumet spelades in vid bandets konsert på G Livelab i Helsingfors den 10 juni 2017. Symposium innehåller nio liveversioner av låtar från succéalbumet En garde (2018), bland annat den mjukt rockande Pink Camel, den cirkusinspirerade Love Gone Wrong och den virtuosa What Can We Do When The Sky Falls Down. Med utgivningen hyllar Gourmet också medlemmarna Petri Keskitalo och Janne Antikainen, som gick bort våren 2023. Inspelningen är gjord av Kimmo Antikainen, mixningen av Teemu Korpipää och mastering och vinylredigering av Virtalähde Mastering. Omslag av Petra Innanen.</p><p>Gourmet har tidigare givit ut fem album, varav det senaste, New Habitat, släpptes i slutet av 2020. Förutom i Finland har bandet uppträtt i Belgien, Estland, Frankrike, Marocko, Nederländerna, Norge, Frankrike, Tyskland, Ungern, Österrike och Ungern.</p><p>”Gourmets eget sätt att blanda populärmusikens stämningar, traditionell jazz, filmmusik (spaghetti-western), musettevals och så vidare är helt fantastiskt och berusande.” <br>– Philippe Méziat, Jazz Magazine/Gourmet Rendez-vous de l'Erdre festival, Nantes, Frankrike 2017.</p><p>Längd: 1 timme 15 minuter</p><p><b>Sammansättning:</b><br>Esa Onttonen – gitarr, komposition <br>Mikko Innanen – saxofon, komposition <br>Ilmari Pohjola – trombon <br>Veli Kujala – dragspel <br>Ville Niemelä – tuba <br>Mika Kallio – trummor <br> <br><b>Produktion:</b> Malms Kulthurhus och Vapaat äänet</p>", "en": "<p>The maverick of Finnish instrumental music delights with a new album.</p><p>The Malmijazz concert will celebrate the band's latest release by performing songs from the album as well as more recent productions. Symposium, recorded in Helsinki in June 2017, is the band's first live album, released on 2 May 2025.</p><p>Formed in 1997 by guitarist Esa Onttonen and saxophonist Mikko Innanen, Gourmet is one of Finland's longest-running jazz bands, whose colourful music includes rautalanka guitar, schlagers, Parisian café vibes, New Orleans blues, waltz, marches and rage beat. Joining Innanen and Onttonen at Malmisali are fellow original members, accordionist Veli Kujala, trombonist Ilmari Pohjola and drummer Mika Kallio. New to the line-up is tuba player Ville Niemelä. <br> <br>Symposium captures Gourmet's lush live sound on record for the first time. The album was recorded at the band's concert at G Livelab in Helsinki on 10 June 2017. Symposium features nine live versions of tracks from the successful En garde album (2018), including the swampy rocker Pink Camel, the circus-inspired Love Gone Wrong and the virtuosic What Can We Do When The Sky Falls Down. With the release, Gourmet also pay tribute to their late members, Petri Keskitalo and Janne Antikainen, who passed away in spring 2023. The recording was done by Kimmo Antikainen, mixing by Teemu Korpipää, and mastering and vinyl cutting by Virtalähde Mastering. The cover image was created by Petra Innanen.</p><p>Gourmet has released five prior albums, the most recent of which, New Habitat, came out at the end of 2020. In addition to Finland, the band have performed in the Netherlands, Belgium, Austria, Morocco, Norway, France, Germany, Hungary and Estonia.</p><p>\"Gourmet's unique way of blending the moods of popular music, traditional jazz, film music (spaghetti western), musette waltz and so on is absolutely stunning and intoxicating.\" <br>- Philippe Méziat, Jazz Magazine / Gourmet at the Rendez-vous de l'Erdre festival, Nantes, France 2017.</p><p>Duration: 1 hour 15 min</p><p><b>Line-up:</b><br>Esa Onttonen: guitar, compositions <br>Mikko Innanen: saxophone, compositions <br>Ilmari Pohjola: trombone <br>Veli Kujala: accordion <br>Ville Niemelä: tuba <br>Mika Kallio: drums <br> <br><b>Production:</b> Malmitalo and Vapaat äänet</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suomalaisen instrumentaalimusiikin oman tiensä kulkija ilahduttaa uudella levyllään.", "sv": "Bandet som går sin egen väg inom den finländska instrumentalmusiken gläder oss med sin nya skiva.", "en": "The maverick of Finnish instrumental music delights with a new album." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66214/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66405", "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": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T12:14:16.782003Z", "last_modified_time": "2025-08-26T12:14:16.782020Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774082.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490525/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T12:14:16.669834Z", "last_modified_time": "2025-08-26T13:14:58.274132Z", "date_published": null, "start_time": "2025-10-23T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EA4146714C3B66F9FBBACF69AE361719/Yleison_suosikit_Levoton_Tuhkimo_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EA4146714C3B66F9FBBACF69AE361719/Publikens_favoriter_Levoton_Tuhkimo_7_", "en": "http://www.malmitalo.fi/en/events/event/EA4146714C3B66F9FBBACF69AE361719/Audience_Favourites_My_Name_Is_Dingo_7_" }, "name": { "fi": "Yleisön suosikit: Levoton Tuhkimo (7)", "sv": "Publikens favoriter: Levoton Tuhkimo (7)", "en": "Audience Favourites: My Name Is Dingo (7)" }, "description": { "fi": "<p>Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.</p><p>Levoton Tuhkimo -elokuva kertoo Pertti \"Nipa\" Neumannin silmin yhtyeen räjähdysmäisestä läpimurrosta, järisyttävästä Dingomaniasta ja dramaattisesta lopusta. Neumannin henkilökohtaisen elämän rinnalla soivat ikoniset jättihitit, kuten Levoton Tuhkimo, Autiotalo, Sinä ja minä ja Lakatut varpaankynnet. Elokuva kertoo miten Dingo jätti ikuisen jäljen suomalaiseen kulttuuriin ja musiikkikenttään.</p><p>Levoton Tuhkimo -elokuvan on ohjannut Mari Rantasila.</p><p>Pääosissa loistavat Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä ja Ronja Keiramo. <br>Käsikirjoitus Hanna Leivonniemi.</p><p>Ikäraja: 7<br>Kesto: 1 h 28 min<br>Kieli: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>Historien om bandet Dingo, som har gett upphov till hysteri utan motstycke, ses äntligen som en film.</p><p>Filmen Levoton Tuhkimo handlar om bandets explosionsartade genombrott, den skakande Dingomanien och det dramatiska slutet, så som Pertti ”Nipa” Neumann såg det. Neumanns personliga liv ackompanjeras av ikoniska hits som Levoton Tuhkimo, Autiotalo, Sinä ja minä och Lakatut varpaankynne. Filmen berättar om hur Dingo lämnade ett evigt spår i den finländska kulturen och i musikfältet.</p><p>Filmen Levoton Tuhkimo är regisserad av Mari Rantasila.</p><p>I huvudrollerna lyser Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä och Ronja Keiramo. <br>Manus av Hanna Leivonniemi.</p><p>Åldersgräns: 7<br>Längd: 1 timme 28 minuter<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>The story of Dingo, a band that created unprecedented hysteria, has finally been made into a film.</p><p>Through the eyes of Pertti \"Nipa\" Neumann, the film tells the story of the band's explosive breakthrough, the shocking Dingomania and the dramatic end. Alongside Neumann's personal life, the film features iconic hits such as Levoton Tuhkimo, Autiotalo, Sinä ja minä and Lakatut varpaankynnet. The film describes the way in which Dingo left an everlasting mark on Finnish culture and music.</p><p>My Name Is Dingo is directed by Mari Rantasila.</p><p>Starring Saku Taittonen, Alvari Stenbäck, Emil Kihlström, Samuel Kujala, Valtteri Lehtinen, Mauno Terävä and Ronja Keiramo. <br>Screenplay by Hanna Leivonniemi.</p><p>Age limit: 7<br>Duration: 1 hour 28 min<br>Language: Finnish</p><p>Free entry</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Ennennäkemätöntä hysteriaa synnyttäneen Dingo-yhtyeen tarina nähdään vihdoin elokuvana.", "sv": "Historien om bandet Dingo, som har gett upphov till hysteri utan motstycke, ses äntligen som en film.", "en": "The story of Dingo, a band that created unprecedented hysteria, has finally been made into a film." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66405/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66938", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490538, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T13:14:49.471330Z", "last_modified_time": "2025-08-26T13:14:49.471350Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776499.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490538/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T13:14:49.363270Z", "last_modified_time": "2025-08-26T13:14:49.608353Z", "date_published": null, "start_time": "2025-09-19T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8BDFEA21AB3C1F3ECDF9DB1A3B701906/Elama_on_juhla_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8BDFEA21AB3C1F3ECDF9DB1A3B701906/Elama_on_juhla_12_", "en": "http://www.malmitalo.fi/en/events/event/8BDFEA21AB3C1F3ECDF9DB1A3B701906/Elama_on_juhla_12_" }, "name": { "fi": "Elämä on juhla (12) – Kino Helios", "sv": "Elämä on juhla (12) – Kino Helios", "en": "Elämä on juhla (12) – Kino Helios" }, "description": { "fi": "<p>Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä.</p><p>Keskikesä on kauneimmillaan ja juhannus lähestyy, mutta Nauvon saaristolaisidyllissä ja Eerolan perheessä onni rakoilee: konkurssiin mennyt ravintola, salasuhteen aloittanut äiti (Pirjo Lonka), itsetunto-ongelmien kanssa kamppaileva isä (Jani Volanen) ja olosuhteiden vangiksi jäänyt kyyninen teinitytär (Aamu Milonoff).</p><p>Naapurissa asuva entinen Idols-tähti (Jussi Vatanen) haikailee menetettyä menestystä ja saa vieraaksi etäiseksi jääneen, uteliaan ja maailmalle avoimen poikansa (Bruno Baer).</p><p>Juhannusviikon aikana heistä jokainen joutuu kohtaamaan elämänsä sellaisena kuin se on – kudelmana pettymyksiä ja onnea, juhlana joka jatkuu, kunnes kerran päättyy.</p><p>Ikäraja: 12<br>Kesto: 101 min<br>Ensi-ilta: 03.09.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66937", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490537, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T13:14:48.688417Z", "last_modified_time": "2025-08-26T13:14:48.688435Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776498.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490537/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T13:14:48.581674Z", "last_modified_time": "2025-08-26T13:14:48.844045Z", "date_published": null, "start_time": "2025-09-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0A438ED977EFF85372437E204DC6C6D4/Elama_on_juhla_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0A438ED977EFF85372437E204DC6C6D4/Elama_on_juhla_12_", "en": "http://www.malmitalo.fi/en/events/event/0A438ED977EFF85372437E204DC6C6D4/Elama_on_juhla_12_" }, "name": { "fi": "Elämä on juhla (12) – Kino Helios", "sv": "Elämä on juhla (12) – Kino Helios", "en": "Elämä on juhla (12) – Kino Helios" }, "description": { "fi": "<p>Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä.</p><p>Keskikesä on kauneimmillaan ja juhannus lähestyy, mutta Nauvon saaristolaisidyllissä ja Eerolan perheessä onni rakoilee: konkurssiin mennyt ravintola, salasuhteen aloittanut äiti (Pirjo Lonka), itsetunto-ongelmien kanssa kamppaileva isä (Jani Volanen) ja olosuhteiden vangiksi jäänyt kyyninen teinitytär (Aamu Milonoff).</p><p>Naapurissa asuva entinen Idols-tähti (Jussi Vatanen) haikailee menetettyä menestystä ja saa vieraaksi etäiseksi jääneen, uteliaan ja maailmalle avoimen poikansa (Bruno Baer).</p><p>Juhannusviikon aikana heistä jokainen joutuu kohtaamaan elämänsä sellaisena kuin se on – kudelmana pettymyksiä ja onnea, juhlana joka jatkuu, kunnes kerran päättyy.</p><p>Ikäraja: 12<br>Kesto: 101 min<br>Ensi-ilta: 03.09.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66934", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-roses-3964068/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-roses-3964068/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-roses-3964068/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490536, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T13:14:46.982863Z", "last_modified_time": "2025-08-26T13:14:46.982879Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776494.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490536/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T13:14:46.866463Z", "last_modified_time": "2025-08-26T13:14:47.147395Z", "date_published": null, "start_time": "2025-09-12T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C4ACA025C263CD930A03C96A3427B4D2/The_Roses_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C4ACA025C263CD930A03C96A3427B4D2/The_Roses_12_", "en": "http://www.malmitalo.fi/en/events/event/C4ACA025C263CD930A03C96A3427B4D2/The_Roses_12_" }, "name": { "fi": "The Roses (12) – Kino Helios", "sv": "The Roses (12) – Kino Helios", "en": "The Roses (12) – Kino Helios" }, "description": { "fi": "<p>The Roses on uusi versio vuoden 1989 klassikkoelokuvasta Ruusujen sota, joka perustuu Warren Adlerin kirjaan.</p><p>Täydellisen pariskunnan Ivyn (Olivia Colman) ja Theon (Benedict Cumberbatch) elämä vaikuttaa huolettomalta: on menestyksekkäät urat, rakkaudentäyteinen avioliitto ja mahtavat lapset.</p><p>Mutta heidän päällepäin idyllisten kulissiensa takana muhii myrsky – kun Theon ura ajautuu syöksykierteeseen saman aikaan kun Ivyn unelmat lähtevät lentoon, armottoman kilpailun ja peitellyn kaunan alle kätkeytynyt ruutitynnyri räjähtää.</p><p>Ikäraja: 12<br>Kesto: 99 min<br>Ensi-ilta: 29.08.2025<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "The Roses on uusi versio vuoden 1989 klassikkoelokuvasta Ruusujen sota, joka perustuu Warren Adlerin kirjaan." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66934/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66936", "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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-elaemae-on-juhla-3964069/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490535, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T13:14:45.820914Z", "last_modified_time": "2025-08-26T13:14:45.820931Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776492.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490535/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T13:14:45.711881Z", "last_modified_time": "2025-08-26T13:14:45.966491Z", "date_published": null, "start_time": "2025-09-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2F9974A72D8374B48ED80AC19DDEC391/Elama_on_juhla_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2F9974A72D8374B48ED80AC19DDEC391/Elama_on_juhla_12_", "en": "http://www.malmitalo.fi/en/events/event/2F9974A72D8374B48ED80AC19DDEC391/Elama_on_juhla_12_" }, "name": { "fi": "Elämä on juhla (12) – Kino Helios", "sv": "Elämä on juhla (12) – Kino Helios", "en": "Elämä on juhla (12) – Kino Helios" }, "description": { "fi": "<p>Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä.</p><p>Keskikesä on kauneimmillaan ja juhannus lähestyy, mutta Nauvon saaristolaisidyllissä ja Eerolan perheessä onni rakoilee: konkurssiin mennyt ravintola, salasuhteen aloittanut äiti (Pirjo Lonka), itsetunto-ongelmien kanssa kamppaileva isä (Jani Volanen) ja olosuhteiden vangiksi jäänyt kyyninen teinitytär (Aamu Milonoff).</p><p>Naapurissa asuva entinen Idols-tähti (Jussi Vatanen) haikailee menetettyä menestystä ja saa vieraaksi etäiseksi jääneen, uteliaan ja maailmalle avoimen poikansa (Bruno Baer).</p><p>Juhannusviikon aikana heistä jokainen joutuu kohtaamaan elämänsä sellaisena kuin se on – kudelmana pettymyksiä ja onnea, juhlana joka jatkuu, kunnes kerran päättyy.</p><p>Ikäraja: 12<br>Kesto: 101 min<br>Ensi-ilta: 03.09.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "short_description": { "fi": "Huumoria pilkahtelevassa ihmissuhdedraamassa rakastutaan, petytään ja juhlistetaan yötöntä yötä. Saaristojuhannuksen jälkeen ei kenenkään elämä ole entisensä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }