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/?format=api&hide_super_event=true&page=79
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=80", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=78" }, "data": [ { "id": "kulke:69517", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "27,40 € / 24,30 € / 18,30 €", "sv": "27,40 € / 24,30 € / 18,30 €", "en": "27,40 € / 24,30 € / 18,30 €" }, "info_url": { "fi": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552788/", "sv": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552788/", "en": "https://www.lippu.fi/event/katja-lunden-company-what-is-love-baby-dont-hurt-me-kanneltalo-21552788/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385363, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T08:15:17.036660Z", "last_modified_time": "2026-06-25T08:15:17.036685Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787922.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385363/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T08:15:16.882111Z", "last_modified_time": "2026-08-25T07:23:20.008577Z", "date_published": null, "start_time": "2026-10-07T15:00:00Z", "end_time": "2026-10-07T16:10: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, "location_extra_info": null, "provider": null, "name": { "fi": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?", "sv": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?", "en": "Katja Lundén Company: WHAT IS LOVE (baby don’t hurt me)?" }, "description": { "fi": "<p>WHAT IS LOVE on tanssillinen tutkimusmatka antiikin rakkauskäsitykseen; katsaus rakkauden olemukseen ja ytimeen.</p><p>Mistä on kysymys, kun rakastetaan ja rakastutaan? Mihin pyritään? Mitä ihmisessä tapahtuu? Miltä tuntuu? Kuka ja mikä on Eros? Mitä on halu?</p><p>Rakkaus on latistettu, imelletty ja inflaation kärsinyt käsite ja sen nimissä on helppo myydä jos vaikka mitä. Teos pyrkii saamaan kiinni rakkauden filosofisesta ulottuvuudesta. Miksi rakkaus on alkuvoima ja mikä voisi olla sen perusta ja lopullinen tavoite.</p><p>Esityksen kieli on tanssia, liikettä, musiikkia, laulua, ääntä, puhetta ja hiljaisuutta.</p><p><b>Käsikirjoitus ja ohjaus</b>: Laura Jäntti <br><b>Dramaturgia</b>: Laura Jäntti ja Katja Lundén<br><b>Koreografia</b>: Katja Lundén<br><b>Musiikki</b>: Janne Halonen</p><p><b>Esiintyjät</b>: Janne Marja-aho, Katja Lundén, Senja Suvanto, Laura Viding, Janne Halonen</p><p><b>Valosuunnittelu</b>: Kalle Paasonen<br><b>Äänisuunnittelu</b>: Janne Halonen/Juho Suominen</p><p>Kesto: 1 t 10 min</p>", "sv": "<p>WHAT IS LOVE är en dansant upptäcktsresa in i antikens syn på kärleken: en betraktelse över kärlekens väsen och kärna.</p><p>Vad handlar det om när man älskar och blir förälskad? Vad är målet? Vad händer i människan? Hur känns det? Vem och vad är Eros? Vad är begär?</p><p>Kärlek är ett urvattnat och utslitet begrepp som det gått inflation i, och i dess namn är det lätt att sälja in vad som helst. Verket strävar efter att fånga kärlekens filosofiska dimension. Varför är kärleken en urkraft, och vad skulle kunna vara dess grund och slutgiltiga mål?</p><p>Föreställningens språk består av dans, rörelse, musik, sång, ljud, tal och tystnad.</p><p><b>Manus och regi</b>: Laura Jäntti <br><b>Dramaturgi</b>: Laura Jäntti och Katja Lundén <br><b>Koreografi</b>: Katja Lundén <br><b>Musik</b>: Janne Halonen</p><p><b>På scenen</b>: Janne Marja-aho, Katja Lundén, Senja Suvanto, Laura Viding, Janne Halonen</p><p><b>Ljusdesign</b>: Kalle Paasonen <br><b>Ljuddesign</b>: Janne Halonen/Juho Suominen</p><p>Längd: 1 h 10 min.</p>", "en": "<p>WHAT IS LOVE is a dance-based exploration of the concept of love in ancient times; an examination of the nature and essence of love.</p><p>What is it all about when we love and fall in love? What is the aim? What happens inside the person? How does it feel? Who and what is Eros? What is desire?</p><p>Love is a concept that has been trivialised, over-sweetened and devalued, making it easy to sell just about anything in its name. This work seeks to capture the philosophical dimension of love. Why is love a primal force, and what might be its foundation and ultimate goal?</p><p>The language of the performance is dance, movement, music, song, sound, speech and silence.</p><p><b>Script and direction</b>: Laura Jäntti <br><b>Dramaturgy</b>: Laura Jäntti and Katja Lundén <br><b>Choreography</b>: Katja Lundén <br><b>Music</b>: Janne Halonen</p><p><b>Performers</b>: Janne Marja-aho, Katja Lundén, Senja Suvanto, Laura Viding, Janne Halonen</p><p><b>Lighting design</b>: Kalle Paasonen <br><b>Sound design</b>: Janne Halonen/Juho Suominen</p><p>Duration: 1 h 10 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "WHAT IS LOVE on tanssillinen tutkimusmatka antiikin rakkauskäsitykseen; katsaus rakkauden olemukseen ja ytimeen.", "sv": "WHAT IS LOVE är en dansant upptäcktsresa in i antikens syn på kärleken: en betraktelse över kärlekens väsen och kärna.", "en": "WHAT IS LOVE is a dance-based exploration of the concept of love in ancient times; an examination of the nature and essence of love." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F375344B7ACDF695AA67090349B96B3/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F375344B7ACDF695AA67090349B96B3/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_", "en": "http://www.kanneltalo.fi/en/events/event/9F375344B7ACDF695AA67090349B96B3/Katja_Lund_n_Company_WHAT_IS_LOVE_baby_don_t_hurt_me_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69517/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69221", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:p2433/?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": [], "description": null, "price": { "fi": "15 € / 12 €", "sv": "15 € / 12 €", "en": "15 € / 12 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/jussu-poyhonen/", "sv": "https://www.lippu.fi/artist/jussu-poyhonen/", "en": "https://www.lippu.fi/artist/jussu-poyhonen/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385359, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T07:14:43.195563Z", "last_modified_time": "2026-06-25T07:14:43.195579Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793525.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385359/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-06-25T07:14:43.096533Z", "last_modified_time": "2026-08-25T07:23:19.027169Z", "date_published": null, "start_time": "2026-10-05T15:00:00Z", "end_time": "2026-10-05T16: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, "location_extra_info": null, "provider": null, "name": { "fi": "Jussu Pöyhönen – Juurilla-klubi", "sv": "Jussu Pöyhönen – Juurilla-klubben", "en": "Jussu Pöyhönen – Juurilla Club" }, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Kevään Juurilla-klubin solistina Kannelsalissa Jussu Pöyhönen.</p><p><b>Jussu Pöyhönen</b> on laulaja ja lauluntekijä, joka tunnetaan parhaiten 30-vuotisesta urastaan Suurlähettiläät-yhtyeen nokkamiehenä. Hän on tehnyt myös useita soololevyjä, sekä teatterimusiikkia ja esiintynyt teatterissa.</p><p>Viimeksi Jussu esiintyi Kanneltalon lavalla helmikuussa teatteriklovneriamusikaalissa <i>Täydellinen musikaali – matka manalaan</i>, johon hän teki myös musiikin. Juurilla-klubilla hän pääsee tulkitsemaan itselleen mieluisten artistien, kuten Leonard Cohenin, Tom Waitsin ja JJ Calen musiikkia, samoin kuin kappaleita hänen omalta englanninkieliseltä <i>Bel Vel</i> -albumiltaan (2013).</p><p>Edellisen kerran Jussu oli Juurilla-klubin vieraana korona-aikaan, jolloin keikka tehtiin striimaamalla. Nyt päätimme antaa Jussulle ja Kanneltalon yleisölle mahdollisuuden kohdata livenä!</p><p>Maanantai-illan suosikkiklubin <b>Juurilla</b> sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. <br> <br>Juurilla-klubia isännöivät tuttuun tapaan <b>Juki Välipakka ja The Rooty Toot Toot Band</b>:</p><p>Juki Välipakka – laulu & kitara <br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar <br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut <br> <br>Kesto: 1 tunti</p>", "sv": "<p>Börja veckan med sväng! Jussu Pöyhönen är solist på vårens Juurilla-klubb i Gamlasgårdens sal.</p><p><b>Jussu Pöyhönen</b> är en sångare och låtskrivare som är mest känd för sin 30-åriga karriär som frontfigur i bandet Suurlähettiläät. Han har också gett ut flera soloalbum, komponerat teatermusik och uppträtt på teater.</p><p>Senast uppträdde Jussu på Gamlasgårdens scen i februari i teaterclownerimusikalen <i>Täydellinen musikaali – matka manalaan</i>, som han också komponerade musiken till. På Juurilla-klubben får han möjlighet att tolka musik av artister han gillar, såsom Leonard Cohen, Tom Waits och JJ Cale, liksom låtar från sitt eget album <i>Bel Vel</i> (2013) på engelska.</p><p>Förra gången var Jussu gäst på Juurilla-klubben under coronatiden, då konserten livestreamades. Nu har vi beslutat att ge Jussi och publiken på Gamlasgården möjlighet att mötas live!</p><p>Jazz, blues, country, folk, rhythm and blues, bluegrass och americana hör alla till det rytmiska hjärtat på måndagskvällarnas favoritklubb <b>Juurilla</b>. <br> <br>Värdar på Juurilla-klubben är i vanlig ordning <b>Juki Välipakka och The Rooty Toot Toot Band</b>:</p><p>Juki Välipakka – sång och gitarr <br>Lasse Sirkko – bas <br>Tommi Lievemaa – gitarr <br>Olli Haavisto – pedal steel guitar <br>Sirpa Suomalainen – saxofon <br>Kepa Kettunen – trummor <br> <br>Längd: 1 h</p>", "en": "<p>Start your week off with high energy! Jussu Pöyhönen takes to the stage as a soloist at the Juurilla Club event in the Kanneltalo Theatre and Concert Hall.</p><p><b>Jussu Pöyhönen</b> is a singer and songwriter best known for his 30-year career as the frontman of the band Suurlähettiläät. He has also released several solo albums, composed theatre music and performed in a theatre.</p><p>Jussu last appeared on stage at Kanneltalo in February in the theatrical clown musical <i>Täydellinen musikaali – matka manalaan</i>, for which he also composed the music. At the Juurilla Club event, he gets to perform music by his favourite artists, such as Leonard Cohen, Tom Waits and JJ Cale, as well as tracks from his own English-language album <i>Bel Vel</i> (2013).</p><p>The last time Jussu appeared as a guest at the Juurilla Club was during the pandemic, due to which the gig was streamed online. We have now decided to give Jussi and the audience at Kanneltalo a chance to meet in person!</p><p>The beating heart of the beloved Monday evening <b>Juurilla Club</b> consists of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. <br> <br>The Juurilla Club event will once again be hosted by <b>Juki Välipakka and The Rooty Toot Toot Band</b>:</p><p>Juki Välipakka – vocals & guitar <br>Lasse Sirkko – bass <br>Tommi Lievemaa – guitar <br>Olli Haavisto – pedal steel guitar <br>Sirpa Suomalainen – saxophone <br>Kepa Kettunen – drums <br> <br>Duration: 1 h</p>" }, "provider_contact_info": null, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Kevään Juurilla-klubin solistina Kannelsalissa Jussu Pöyhönen.", "sv": "Börja veckan med sväng! Jussu Pöyhönen är solist på vårens Juurilla-klubb i Gamlasgårdens sal.", "en": "Start your week off with high energy! Jussu Pöyhönen takes to the stage as a soloist at the Juurilla Club event in the Kanneltalo Theatre and Concert Hall." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen", "en": "http://www.kanneltalo.fi/en/events/event/B5955D2CC9A687A4682BAB53B0FD05B4/Jussu_Poyhonen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69221/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69425", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/proyeccione/proyecciones-esitysilta-4183560/", "sv": "https://www.lippu.fi/artist/proyeccione/proyecciones-esitysilta-4183560/", "en": "https://www.lippu.fi/artist/proyeccione/proyecciones-esitysilta-4183560/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385358, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T06:15:14.012756Z", "last_modified_time": "2026-06-25T06:15:14.012779Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794406.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385358/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T06:15:13.868392Z", "last_modified_time": "2026-08-25T07:23:18.068549Z", "date_published": null, "start_time": "2026-10-03T15:00:00Z", "end_time": "2026-10-03T17: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, "location_extra_info": null, "provider": null, "name": { "fi": "Proyecciones: flamencon ilta", "sv": "Proyecciones: en kväll med flamenco", "en": "Proyecciones: an Evening of Flamenco" }, "description": { "fi": "<p>Esitysilta kokoaa näyttämölle nuorten flamencotanssijoiden ja kokeneiden konkareiden sooloja sekä otteita uuden sukupolven nykyflamencoteoksesta Criaturas.</p><p>Proyecciones suuntaa flamencon perinteestä kohti tulevaa.</p><p><b>Sooloja nuorilta ja kokeneilta konkareilta</b><br> <br>Flamencon perinne heijastuu soolojen sikermässä vivahteikkaana ja värikylläisenä. Lavalla nähdään nuoria flamencotanssijoita, joista monet debytoivat solisteina, sekä kokeneempia tanssijoita heidän rinnallaan. Soolot rakentuvat perinteisen flamencon elementeistä erilaisilla mausteilla höystettyinä. Tanssijoiden rinnalla flamencon lajeja tulkitsemassa on liuta taitavia muusikoita.<br> <br>Ilta on omistettu tanssitaiteilija Laura Rintamäelle – rakastetulle ja arvostetulle Suomen flamencon vahvalle vaikuttajalle ja puuhanaiselle. Osa sooloista on rakennettu Rintamäen ja Laura Vilhosen yhdessä käynnistämässä sooloprojektissa, jossa tavoitteellisesti työskentelevät tanssijat pääsivät työstämään sooloja ja haastamaan itsensä eri koreografien johdolla. Nyt Vilhonen viimeistelee projektin ja soolot saavat ensiesityksensä yleisön edessä.</p><p>Osa sooloista on flamencotanssijoiden Minna Saalpo ja Camila Laine käsialaa.<br> <br><b>Tanssisolistit</b>: Hilla Hanhela, Laura Lindén, Jonna Pulkkinen, Jenni Rahunen, Minna Saalpo, Ester Siltavuori ja Nicole Viontsek<br><b>Musiikki</b>: Helena Kumakari, Vesa Jaakola, Ilona Kallio, Pauliina Kauppila, Juho Krouvi, Jouni Meriläinen ja Niina Putkonen<br><b>Koreografiat</b>: Camila Laine, Minna Saalpo, Laura Rintamäki ja Laura Vilhonen<br> <br> <br><b>Marja Rautakorpi & Adelante: otteita teoksesta Criaturas</b><br> <br>Soolojen rinnalla luvassa on otteita nykyflamencoteoksesta Criaturas. Kyseessä on Marja Rautakorven ja nuorten flamencoryhmä Adelanten yhdessä rakentama teos, joka ihmettelee ihmistä otuksena maailman kiihtyvässä sykkeessä. Teos kysyy, miksi aloimme ajaa yksilöitä erilleen ajassa, jossa tarvitsemme toisiamme. Musiikin teokseen on säveltänyt äänisuunnittelija Juho Suominen. <br> <br>Adelante on Marja Rautakorven kokoama uuden sukupolven flamencoryhmä, jollaista on flamencon saralla kaivattu pitkään. Ryhmässä tanssii yhdeksän 15–35-vuotiasta edistynyttä flamencotanssijaa erilaisista taustoista. Ryhmä ja teos syntyivät Rautakorven luotsaamassa vuoden mittaisessa pilottiprojektissa, joka kokosi nuoria flamencon tekijöitä yhteen, tarjosi heille tavoitteellista toimintaa ja tuki tanssijoiden kasvua kohti taiteilijuutta. <br> <br><b>Koreografia</b>: Marja Rautakorpi & Adelante<br><b>Tanssi</b>: Hilla Hanhela, Iida Kopra, Janna Lappalainen, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Roosa Pietilä ja Milla-Maija Saari<br><b>Musiikin sävellys ja äänisuunnittelu</b>: Juho Suominen</p><p>Kesto: 2 t, sisältäen väliajan</p>", "sv": "<p>Under föreställningskvällen framförs solon av unga flamencodansare och erfarna veteraner samt utdrag ur den nya generationens samtida flamencoverk Criaturas på scenen.</p><p>Proyecciones tar flamencon från det traditionella in i framtiden.</p><p><b>Solon av både unga dansare och erfarna veteraner</b></p><p>Flamencotraditionen återspeglas som en nyansrik och färgstark samling solon. På scenen ses unga flamencodansare, varav många gör sin debut som solister, tillsammans med mer erfarna dansare. Solona bygger på element från traditionell flamenco, kryddade medolika inslag. Vid sidan av dansarna finns en skara skickliga musiker som tolkar olika flamencostilar.</p><p>Kvällen är tillägnad danskonstnären Laura Rintamäki – en älskad och uppskattad stark påverkare och drivande kraft inom den finska flamencon. En del av solona har skapats inom ramen för ett soloprojekt som Rintamäki och Laura Vilhonen startat tillsammans, där målinriktade dansare fick möjlighet att utveckla solon och utmana sig själva under ledning av olika koreografer. Nu håller Vilhonen på att färdigställa projektet och solopartierna framförs för första gången inför publik.</p><p>En del av solona är koreograferade av flamencodansarna Minna Saalpo och Camila Laine.</p><p><b>Danssolister</b>: Hilla Hanhela, Laura Lindén, Jonna Pulkkinen, Jenni Rahunen, Minna Saalpo, Ester Siltavuori och Nicole Viontsek</p><p><b>Musik</b>: Helena Kumakari, Vesa Jaakola, Ilona Kallio, Pauliina Kauppila, Juho Krouvi, Jouni Meriläinen och Niina Putkonen</p><p><b>Koreografi</b>: Camila Laine, Minna Saalpo, Laura Rintamäki och Laura Vilhonen</p><p><b>Marja Rautakorpi & Adelante: utdrag ur verket Criaturas</b></p><p>Förutom solon bjuds det på utdrag ur det samtida flamencoverket Criaturas. Det är ett verk som skapats gemensamt av Marja Rautakorpi och flamencodansgruppen Adelante för unga och som förundrar sig över människan som varelse i en accelererande värld. Verket ställer sig frågan varför vi började driva isär individer i en tid då vi behöver varandra. Musiken till verket har komponerats av ljuddesignern Juho Suominen.</p><p>Adelante är en flamencogrupp för en ny generation sammanställd av Marja Rautakorpi. En sådan har varit ett länge efterlängtat tillskott på flamencoscenen. Gruppen består av nio avancerade flamencodansare i åldern 15–35 år med olika bakgrunder. Gruppen och verket skapades inom ramen för ett ettårigt pilotprojekt under ledning av Rautakorpi som samlade unga flamencoartister, erbjöd dem målmedveten verksamhet och stödde dansarnas utveckling mot ett liv som artister.</p><p><b>Koreografi</b>: Marja Rautakorpi och Adelante</p><p><b>Dans</b>: Hilla Hanhela, Iida Kopra, Janna Lappalainen, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Roosa Pietilä och Milla-Maija Saari</p><p><b>Musikkomposition och ljuddesign</b>: Juho Suominen</p><p>Längd: 2 h, inklusive paus</p>", "en": "<p>This performance brings together solos by young flamenco dancers and seasoned veterans, as well as excerpts from Criaturas, a new-generation contemporary flamenco piece.</p><p>Proyecciones sets its course from the traditions of flamenco towards the future.</p><p><b>Solos from young talents and seasoned veterans</b></p><p>The tradition of flamenco is reflected in this collection of solos with nuance and a rich colour palette. The stage features young flamenco dancers, many of whom are making their debut as soloists, alongside more experienced dancers. The solos are built around elements of traditional flamenco, spiced up with different flavours. Alongside the dancers, a host of talented musicians are there to interpret various styles of flamenco.</p><p>The evening is dedicated to dance artist Laura Rintamäki – a much-loved and highly regarded figure who has had a major influence on Finnish flamenco and is a true driving force behind the art form. Some of the solos were created as part of a solo project launched jointly by Rintamäki and Laura Vilhonen, in which ambitious dancers were given an opportunity to develop solos and challenge themselves under the guidance of different choreographers. Vilhonen is now putting the finishing touches to the project, and the solos are set to be performed in front of an audience for the first time.</p><p>Some of the solos were choreographed by flamenco dancers Minna Saalpo and Camila Laine.</p><p><b>Dance soloists</b>: Hilla Hanhela, Laura Lindén, Jonna Pulkkinen, Jenni Rahunen, Minna Saalpo, Ester Siltavuori and Nicole Viontsek</p><p><b>Music</b>: Helena Kumakari, Vesa Jaakola, Ilona Kallio, Pauliina Kauppila, Juho Krouvi, Jouni Meriläinen and Niina Putkonen</p><p><b>Choreographies</b>: Camila Laine, Minna Saalpo, Laura Rintamäki and Laura Vilhonen</p><p><b>Marja Rautakorpi & Adelante: excerpts from Criaturas</b></p><p>Alongside solos, the event features excerpts from the contemporary flamenco piece Criaturas. The work was created by Marja Rautakorpi and the youth flamenco group Adelante, and it explores humans as creatures in the accelerating pulse of the world. The work poses the question: why did we start to drive individuals apart in a time when we need each other? The music for the production was composed by sound designer Juho Suominen.</p><p>Adelante, a flamenco group for the new generation assembled by Marja Rautakorpi, is a long-awaited addition to the flamenco scene. The group consists of nine advanced flamenco dancers aged 15–35 from different backgrounds. The group and the work were created as part of a year-long pilot project led by Rautakorpi, which brought together young flamenco artists, provided them with goal-oriented activities and supported the dancers’ development towards becoming artists.</p><p><b>Choreography</b>: Marja Rautakorpi & Adelante</p><p><b>Dance</b>: Hilla Hanhela, Iida Kopra, Janna Lappalainen, Laura Lindén, Sini Mannerhovi, Nora Mekkid, Roosa Pietilä and Milla-Maija Saari</p><p><b>Music composition and sound design</b>: Juho Suominen</p><p>Duration: 2 h, incl. intermission</p>" }, "provider_contact_info": null, "short_description": { "fi": "Esitysilta kokoaa näyttämölle nuorten flamencotanssijoiden ja kokeneiden konkareiden sooloja sekä otteita uuden sukupolven nykyflamencoteoksesta Criaturas.", "sv": "Under föreställningskvällen framförs solon av unga flamencodansare och erfarna veteraner samt utdrag ur den nya generationens samtida flamencoverk Criaturas på scenen.", "en": "This performance brings together solos by young flamenco dancers and seasoned veterans, as well as excerpts from Criaturas, a new-generation contemporary flamenco piece." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E68493436BDBD61E06F70EEC3FA175DA/Proyecciones_flamencon_ilta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E68493436BDBD61E06F70EEC3FA175DA/Proyecciones_en_kvall_med_flamenco", "en": "http://www.kanneltalo.fi/en/events/event/E68493436BDBD61E06F70EEC3FA175DA/Proyecciones_an_Evening_of_Flamenco_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69425/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68936", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/yso:p29865/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-25T06:15:12.666325Z", "last_modified_time": "2026-06-25T06:15:12.666352Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792282.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385357/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-25T06:15:12.444200Z", "last_modified_time": "2026-08-25T07:23:17.358349Z", "date_published": null, "start_time": "2026-10-02T15:00:00Z", "end_time": "2026-10-02T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Global Club Nights: Humphrey Mubba & Trio Mandeng – Global Club Nights", "sv": "Global Club Nights: Humphrey Mubba & Trio Mandeng – Global Club Nights", "en": "Global Club Nights: Humphrey Mubba & Trio Mandeng – Global Club Nights" }, "description": { "fi": "<p>Global Club Nights on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2026 aikana kahtena iltana. Ensimmäisessä klubi-illassa 2.10. esiintyvät Humphrey Mubba ja Trio Mandeng. Toinen klubi-ilta järjestetään 20.11. Lapsen oikeuksien päivänä.</p><p>Maksuttomat klubi-illat alkavat aikaisin, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoaa mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Humphrey Mubba</b> on tansanialainen jazzbasisti, säveltäjä ja opettaja, joka asuu Suomessa. Hänen vanhempansa ovat kotoisin Tansanian Kilimanjaron alueelta, missä hän kasvoi monikulttuurisessa perheessä. Hänen musiikissaan syvät afrikkalaiset juuret yhdistyvät kansainvälisiin jazzvaikutteisiin. Soundissa tansanialaiset ja afrikkalaiset rytmit sulautuvat jazzimprovisaation vapauteen, luoden energistä, liikettä herättävää musiikkia, jossa tanssi ja musiikki ovat erottamattomia.</p><p>Richard Bonan, Etienne Mbappén ja Hugh Masekelan kaltaisten artistien vaikutteita saanut Mubba on kiertänyt kansainvälisesti ja esiintynyt muun muassa Sauti za Busara ja BC International Jazz Festival -festivaaleilla. Hänen debyyttialbumiansa <i>Time</i> voi kuunnella kaikilla suurimmilla suoratoistopalveluilla.</p><p><b>Trio Mandeng</b> soittaa bluesin, jazzin ja latinon juurilla. Tyylilajina on klassinen länsiafrikkalainen Mande-musiikkiperinne, jossa kora-harpun ja balafonin herkkiä melodiakudelmia ryydittävät akustiset perkussiorytmit.</p><p>Malilais-burkinalais-guinealais-suomalaisen trion soittajat ovat jokainen tahollaan genren kansainvälisesti noteerattuja virtuooseja. Lyriikat soivat usealla läntisen Afrikan kielellä, hetkittäin myös suomimaustein, ja viimeistään sävelkieltä ymmärtävät kaikki akustisen livegrooven ystävät kansallisuudesta riippumatta.</p><p><b>Global Club Nights</b> -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>", "sv": "<p>Global Club Nights är en klubbserie där människor som arbetar med musik och som älskar musik samlas för att fira musiken tillsammans.</p><p>På Gamlasgården ordnas klubbar under två kvällar hösten 2026. Under den första klubbkvällen den 2 oktober uppträder Humphrey Mubba och Trio Mandeng. Den andra klubbkvällen hålls den 20 november på Internationella barndagen.</p><p>De kostnadsfria klubbkvällarna börjar tidigt, så också barn är välkomna i sällskap med en vuxen. Förutom medryckande musik bjuder klubben också på annat roligt program som passar barn. Låt oss inleda helgen tillsammans!</p><p><b>Humphrey Mubba</b> är en tanzanisk jazzbasist, kompositör och lärare som bor i Finland. Hans föräldrar kommer från Kilimanjaro-regionen i Tanzania, där han växte upp i en mångkulturell familj. I hans musik förenas djupa afrikanska rötter med internationella jazzinfluenser. I soundet smälter tanzaniska och afrikanska rytmer samman med jazzimprovisationens frihet och skapar en energisk musik som inspirerar till rörelse där dansen och musiken är oskiljaktiga.</p><p>Mubba, som har influerats av artister som Richard Bona, Etienne Mbappé och Hugh Masekela, har turnerat internationellt och uppträtt bland annat på festivalerna Sauti za Busara och BC International Jazz Festival. Hans debutalbum <i>Time</i> finns att lyssna på i alla de största streamingtjänsterna.</p><p><b>Trio Mandeng</b> spelar musik med rötter i blues, jazz och latino. Musikstilen är den klassiska västafrikanska musiktraditionen Mande, där de känslofyllda melodierna från kora-harpa och balafon kryddas med akustiska perkussionsrytmer. <br> <br>Musikerna i den malisk-burkinesisk-guineansk-finska trion är var och en på sitt sätt internationellt erkända virtuoser inom genren. Texterna sjungs på flera västafrikanska språk, ibland också med inslag av finska, och alla som uppskattar akustisk livegroove – oavsett nationalitet – förstår åtminstone tonspråket.</p><p>Målet för <b>Global Club Nights</b>-klubbarna är att skapa en trygg, inkluderande och kreativ miljö samt att bygga broar mellan alla musikälskare och deras gemenskaper. Kulturcentret Gamlasgården arrangerar Global Club Nights-kvällarna i samarbete med Sibeliusakademins utbildningsprogram Global Music samt Maailman musiikin keskus.</p>", "en": "<p>Global Club Nights is a series of club events where people who work in the music industry and those who love music come together to celebrate music.</p><p>At Kanneltalo, these club events are held on two evenings in autumn 2026. The first club night on 2 October features Humphrey Mubba and Trio Mandeng on the stage. The second club night will take place on World Children's Day, 20 November.</p><p>The free club nights start early, which means children are also welcome when accompanied by an adult. In addition to captivating music, the club nights also provide other fun activities that are suitable for children. Let us kick off the weekend together!</p><p><b>Humphrey Mubba</b> is a Tanzanian jazz bassist, composer and teacher who lives in Finland. His parents are originally from the Kilimanjaro region of Tanzania, where he grew up in a multicultural family. His music combines deep African roots with international jazz influences. In the resulting sound, Tanzanian and African rhythms blend with the freedom of jazz improvisation, creating energetic, movement-inspiring music in which dance and music are inseparable.</p><p>Influenced by artists such as Richard Bona, Etienne Mbappé and Hugh Masekela, Mubba has toured internationally and performed at festivals such as Sauti za Busara and the BC International Jazz Festival. His debut album, <i>Time</i>, is available on all the major streaming services.</p><p><b>Trio Mandeng</b> draws on the roots of blues, jazz and Latin music. The trio’s chosen genre is the classical West African Mande musical tradition, in which the delicate melodic interplay of the kora and the balafon is accompanied by acoustic percussion rhythms. <br> <br>The musicians of this Malian-Burkinabe-Guinean-Finnish trio are each, in their own right, internationally renowned virtuosos of the genre. The lyrics are sung in several West African languages, with some occasional Finnish flavour thrown in, and the musical language, at the very least, can be understood by all fans of live acoustic grooves, regardless of their nationality.</p><p>The aim of the <b>Global Club Nights</b> events is to create a safe, participatory and creative environment and build bridges between all music lovers and their communities. Cultural Centre Kanneltalo organises the Global Club Nights events in collaboration with the Sibelius Academy’s Global Music education programme and the Global Music Centre.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Global Club Nights on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.", "sv": "Global Club Nights är en klubbserie där människor som arbetar med musik och som älskar musik samlas för att fira musiken tillsammans.", "en": "Global Club Nights is a series of club events where people who work in the music industry and those who love music come together to celebrate music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1BE1DCF3C4C9544F1D52895E1A556B20/Global_Club_Nights_Humphrey_Mubba_Trio_Mandeng", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1BE1DCF3C4C9544F1D52895E1A556B20/Global_Club_Nights_Humphrey_Mubba_Trio_Mandeng", "en": "http://www.kanneltalo.fi/en/events/event/1BE1DCF3C4C9544F1D52895E1A556B20/Global_Club_Nights_Humphrey_Mubba_Trio_Mandeng_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69015", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [], "description": null, "price": { "fi": "15€ / 12€", "sv": "15€ / 12€", "en": "15€ / 12€" }, "info_url": { "fi": "https://www.lippu.fi//artist/iiro-rantala/iiro-rantala-lotta-kuusisto-vuosirenkaita-vahvatunnelmainen-esitys-elaemaenmenosta-4150714/", "sv": "https://www.lippu.fi//artist/iiro-rantala/iiro-rantala-lotta-kuusisto-vuosirenkaita-vahvatunnelmainen-esitys-elaemaenmenosta-4150714/", "en": "https://www.lippu.fi//artist/iiro-rantala/iiro-rantala-lotta-kuusisto-vuosirenkaita-vahvatunnelmainen-esitys-elaemaenmenosta-4150714/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385355, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T13:13:28.240183Z", "last_modified_time": "2026-06-24T13:13:28.240198Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792406.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385355/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-06-24T13:13:28.110270Z", "last_modified_time": "2026-08-25T07:23:16.517241Z", "date_published": null, "start_time": "2026-10-01T11:00:00Z", "end_time": "2026-10-01T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "Iiro Rantala & Lotta Kuusisto: Vuosirenkaita – Vahvatunnelmainen esitys elämänmenosta", "sv": "Iiro Rantala & Lotta Kuusisto: Vuosirenkaita – En stämningsfull föreställning om livets gång", "en": "Iiro Rantala & Lotta Kuusisto: Vuosirenkaita – An intensely atmospheric performance about the passage of life" }, "description": { "fi": "<p>Pianisti Iiro Rantalan ja näyttelijä Lotta Kuusiston vuosirenkaat ovat taipuvia tarinoita elämänkaaresta.</p><p>Ne ovat voimakkaan kierteisiä tarinoita ihmisenä olemisesta, tulkintoja siitä mihin kuulumme ja miten olemme kuulumattomia. Toiveita siitä, että kaikki ei olisi epämääräistä ja vaihtelevaa, ja että voisi olla kuin kataja: ei taipumusta halkeiluun eikä kieroutumiseen.</p><p>Taiteilijapari Rantala-Kuusiston luomat vuosirenkaat muodostuvat musiikin sydänpuusta ja tekstien valosta.</p><p>Iiro Rantala, flyygeli<br>Lotta Kuusisto, kertoja</p><p>Tekstit: Kari Hotakainen, Timo Parvela, Elo Viding, Pablo Neruda, Claes Andersson ja Lotta<br>Kuusisto.<br>Säveltäjät: Egberto Gismonti, Unto Mononen, Thelonius Monk, Paul Desmond, Duke Ellington<br>ja Iiro Rantala.</p><p>Kesto 1 t</p><p>Esiintyjien verkkosivut ja some-tilit<br>https://iirorantala.fi/<br>https://lottakuusisto.fi/<br>IG:<br>@iirotheliverace<br>@sixsto<br>FB: @iiro.rantala.1</p>", "sv": "<p>Pianisten Iiro Rantalas och skådespelaren Lotta Kuusistos årsringar är berättelser om livets cykel.</p><p>Det är starkt skruvade berättelser om vad det innebär att vara människa, tolkningar av var vi hör hemma och hur vi inte hör hemma någonstans. En önskan om att allt inte skulle vara så diffust och omväxlande, och att man skulle kunna vara som en enbuske: utan benägenhet att spricka eller vrida sig.</p><p>De årsringar som konstnärsparet Rantala-Kuusisto har skapat består av musikens kärna och texternas ljus.</p><p>Iiro Rantala – flygel <br>Lotta Kuusisto – berättare</p><p>Texter: Kari Hotakainen, Timo Parvela, Elo Viding, Pablo Neruda, Claes Andersson och Lotta <br>Kuusisto. <br>Kompositörer: Egberto Gismonti, Unto Mononen, Thelonius Monk, Paul Desmond, Duke Ellington <br>och Iiro Rantala. <br> <br>Längd: 1 h</p>", "en": "<p>Pianist Iiro Rantala and actress Lotta Kuusisto’s ‘annual rings’ are flexible stories about the cycle of life.</p><p>They are powerfully spiral stories about being human, interpretations of where we belong and how we do not belong. Wishes about not everything being vague and varying, and about being like a juniper; with no tendency to split or twist.</p><p>The annual rings created by the artist duo Rantala-Kuusisto are formed from the heartwood of the music and the light of the texts.</p><p>Iiro Rantala, grand piano <br>Lotta Kuusisto, narrator</p><p>Texts: Kari Hotakainen, Timo Parvela, Elo Viding, Pablo Neruda, Claes Andersson and Lotta <br>Kuusisto. <br>Composers: Egberto Gismonti, Unto Mononen, Thelonius Monk, Paul Desmond, Duke Ellington <br>and Iiro Rantala. <br> <br>Duration: 1 h</p>" }, "provider_contact_info": null, "short_description": { "fi": "Pianisti Iiro Rantalan ja näyttelijä Lotta Kuusiston vuosirenkaat ovat taipuvia tarinoita elämänkaaresta.", "sv": "Pianisten Iiro Rantalas och skådespelaren Lotta Kuusistos årsringar är berättelser om livets cykel.", "en": "Pianist Iiro Rantala and actress Lotta Kuusisto’s ‘annual rings’ are flexible stories about the cycle of life." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FC270F28D1ECE2DCF6885F266B43147D/Iiro_Rantala_Lotta_Kuusisto_Vuosirenkaita", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FC270F28D1ECE2DCF6885F266B43147D/Iiro_Rantala_Lotta_Kuusisto_Vuosirenkaita", "en": "http://www.kanneltalo.fi/en/events/event/FC270F28D1ECE2DCF6885F266B43147D/Iiro_Rantala_Lotta_Kuusisto_Vuosirenkaita" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69015/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68817", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-hopeacine-hetki-ennen-valoa-malmitalo-22038459/", "sv": "https://www.lippu.fi/event/kino-helios-hopeacine-hetki-ennen-valoa-malmitalo-22038459/", "en": "https://www.lippu.fi/event/kino-helios-hopeacine-hetki-ennen-valoa-malmitalo-22038459/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385902, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:18.043332Z", "last_modified_time": "2026-08-21T09:14:18.043350Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792033.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:17.940881Z", "last_modified_time": "2026-08-25T07:23:11.669444Z", "date_published": null, "start_time": "2026-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, "location_extra_info": null, "provider": null, "name": { "fi": "Hetki ennen valoa (7) – Kino Helios", "sv": "Hetki ennen valoa (7)", "en": "Hetki ennen valoa (7)" }, "description": { "fi": "<p>Klaus Härön uutuuselokuva kertoo kahden naisen kohtaamisesta keskellä hoitoalan kriisiä.</p><p>Erikoissairaanhoitaja Inka (Laura Birn) tekee työtään suurella sydämellä vaativien työolosuhteiden ja oman perhe-elämänsä ristipaineessa. Lenin (Oona Airola) ja Karin (Jussi Vatanen) onni rakoilee, kun heidän vastasyntynyt vauvansa kiidätetään äkillisesti tehohoitoon. Sairaanhoitajat suunnittelevat lakkoa parempien työolosuhteiden puolesta, ja epävarmuuden hetkellä hämmentynyt Leni löytää tukea ja toivoa Inkasta. Inka on kuitenkin vaikeiden päätösten äärellä. Molemmat naiset toimivat rakkaudesta ja velvollisuudesta – mutta miten tehdä oikea valinta, kun vaakalaudalla ovat oma ja toisten elämä?</p><p>Ikäraja: 7<br>Kesto: 87 min<br>Ensi-ilta:<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Klaus Härön uutuuselokuva kertoo kahden naisen kohtaamisesta keskellä hoitoalan kriisiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/83125AF6DF4DAF24F206E1C239431275/Hetki_ennen_valoa_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/83125AF6DF4DAF24F206E1C239431275/Hetki_ennen_valoa_7_", "en": "http://www.malmitalo.fi/en/events/event/83125AF6DF4DAF24F206E1C239431275/Hetki_ennen_valoa_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68817/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68815", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038451/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038451/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038451/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385901, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:17.249671Z", "last_modified_time": "2026-08-21T09:14:17.249687Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792030.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385901/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:17.144932Z", "last_modified_time": "2026-08-25T07:23:10.948466Z", "date_published": null, "start_time": "2026-09-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "The Invite (12) – Kino Helios", "sv": "The Invite (12)", "en": "The Invite (12)" }, "description": { "fi": "<p>Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä.</p><p>Kun he kutsuvat arvoitukselliset yläkerran naapurinsa (Edward Norton & Penélope Cruz) illalliselle, ilta ajautuu yllättäviin suuntiin. Sytyttivätkö he kipinän uudelleen — vai liekin, joka polttaa kaiken maan tasalle?</p><p>Ikäraja: 12<br>Kesto: 108 min<br>Ensi-ilta: 14.08.2026<br>Kieli: englanti, espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0FDE1CB522014B3361CA2DF12164B9E3/The_Invite_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0FDE1CB522014B3361CA2DF12164B9E3/The_Invite_12_", "en": "http://www.malmitalo.fi/en/events/event/0FDE1CB522014B3361CA2DF12164B9E3/The_Invite_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68815/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68814", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-hopeacine-hetki-ennen-valoa-malmitalo-22038458/", "sv": "https://www.lippu.fi/event/kino-helios-hopeacine-hetki-ennen-valoa-malmitalo-22038458/", "en": "https://www.lippu.fi/event/kino-helios-hopeacine-hetki-ennen-valoa-malmitalo-22038458/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385900, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:16.793744Z", "last_modified_time": "2026-08-21T09:14:16.793759Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385900/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:16.695322Z", "last_modified_time": "2026-08-25T07:23:10.653175Z", "date_published": null, "start_time": "2026-09-18T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Hetki ennen valoa (7) – Kino Helios", "sv": "Hetki ennen valoa (7)", "en": "Hetki ennen valoa (7)" }, "description": { "fi": "<p>Klaus Härön uutuuselokuva kertoo kahden naisen kohtaamisesta keskellä hoitoalan kriisiä.</p><p>Erikoissairaanhoitaja Inka (Laura Birn) tekee työtään suurella sydämellä vaativien työolosuhteiden ja oman perhe-elämänsä ristipaineessa. Lenin (Oona Airola) ja Karin (Jussi Vatanen) onni rakoilee, kun heidän vastasyntynyt vauvansa kiidätetään äkillisesti tehohoitoon. Sairaanhoitajat suunnittelevat lakkoa parempien työolosuhteiden puolesta, ja epävarmuuden hetkellä hämmentynyt Leni löytää tukea ja toivoa Inkasta. Inka on kuitenkin vaikeiden päätösten äärellä. Molemmat naiset toimivat rakkaudesta ja velvollisuudesta – mutta miten tehdä oikea valinta, kun vaakalaudalla ovat oma ja toisten elämä?</p><p>Ikäraja: 7<br>Kesto: 87 min<br>Ensi-ilta:<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Klaus Härön uutuuselokuva kertoo kahden naisen kohtaamisesta keskellä hoitoalan kriisiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E2AF99294A6383B7E23EE195D3C7664E/Hetki_ennen_valoa_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E2AF99294A6383B7E23EE195D3C7664E/Hetki_ennen_valoa_7_", "en": "http://www.malmitalo.fi/en/events/event/E2AF99294A6383B7E23EE195D3C7664E/Hetki_ennen_valoa_7_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68814/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68811", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038454/", "sv": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038454/", "en": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038454/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385899, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:15.670884Z", "last_modified_time": "2026-08-21T09:14:15.670900Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792024.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:15.566690Z", "last_modified_time": "2026-08-25T07:23:09.570752Z", "date_published": null, "start_time": "2026-09-16T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Spa weekend (12) – Kino Helios", "sv": "Spa weekend (12)", "en": "Spa weekend (12)" }, "description": { "fi": "<p>Kauhea kankkunen ja Bad Moms elokuvien käsikirjoittajien uudessa komediassa Spa Weekend kolme ystävystä lähtevät rentouttavalle kylpyläviikonlopulle</p><p>Kaikki kuitenkin karkaa käsistä, kun heidän katastrofikaverinsa liittyy seuraan – luvassa on hulvaton kaaos. Pääosissa Leslie Mann, Isla Fisher, Michelle Buteau ja Anna Faris.</p><p>Ikäraja: 12<br>Kesto: 97 min<br>Ensi-ilta: 21.08.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kauhea kankkunen ja Bad Moms elokuvien käsikirjoittajien uudessa komediassa Spa Weekend kolme ystävystä lähtevät rentouttavalle kylpyläviikonlopulle" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/061D95C800363C41F4FB38CE9678599C/Spa_weekend_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/061D95C800363C41F4FB38CE9678599C/Spa_weekend_12_", "en": "http://www.malmitalo.fi/en/events/event/061D95C800363C41F4FB38CE9678599C/Spa_weekend_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68811/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68810", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038457/", "sv": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038457/", "en": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038457/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385898, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:14.942940Z", "last_modified_time": "2026-08-21T09:14:14.942955Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792023.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385898/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:14.830621Z", "last_modified_time": "2026-08-25T07:23:08.991935Z", "date_published": null, "start_time": "2026-09-16T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "Presidentin kyyditys (12) – Kino Helios", "sv": "Presidentin kyyditys (12)", "en": "Presidentin kyyditys (12)" }, "description": { "fi": "<p>Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia.</p><p>Raskaan ryyppyillan aikana joukko kunnianhimoisia upseereita päättää kaapata Suomen ensimmäisen presidentin – jo eläkkeellä olevan K. J. Ståhlbergin. Uppiniskainen presidentin vaimo Ester Ståhlberg ei tiukassakaan tilanteessa suostu jättämään miestään, vaan änkeää muiluttajien pään menoksi samaan kyytiin auton takapenkille. Alkaa uskomaton matka halki levottoman Suomen, jossa huhupuheet ja historia kietoutuvat yhteen – eikä vieläkään tiedetä, mikä presidentin kyydityksessä oli totta ja mikä tarua.</p><p>Ikäraja: 12<br>Kesto: 87 min<br>Ensi-ilta: 04.09.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A0025828D7967A846DDFDDE7EC9DDA7F/Presidentin_kyyditys_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A0025828D7967A846DDFDDE7EC9DDA7F/Presidentin_kyyditys_12_", "en": "http://www.malmitalo.fi/en/events/event/A0025828D7967A846DDFDDE7EC9DDA7F/Presidentin_kyyditys_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68810/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68809", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038453/", "sv": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038453/", "en": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038453/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385897, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:13.567789Z", "last_modified_time": "2026-08-21T09:14:13.567804Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792021.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:13.462420Z", "last_modified_time": "2026-08-25T07:23:07.574985Z", "date_published": null, "start_time": "2026-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, "location_extra_info": null, "provider": null, "name": { "fi": "Spa weekend (12) – Kino Helios", "sv": "Spa weekend (12)", "en": "Spa weekend (12)" }, "description": { "fi": "<p>Kauhea kankkunen ja Bad Moms elokuvien käsikirjoittajien uudessa komediassa Spa Weekend kolme ystävystä lähtevät rentouttavalle kylpyläviikonlopulle</p><p>Kaikki kuitenkin karkaa käsistä, kun heidän katastrofikaverinsa liittyy seuraan – luvassa on hulvaton kaaos. Pääosissa Leslie Mann, Isla Fisher, Michelle Buteau ja Anna Faris.</p><p>Ikäraja: 12<br>Kesto: 97 min<br>Ensi-ilta: 21.08.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kauhea kankkunen ja Bad Moms elokuvien käsikirjoittajien uudessa komediassa Spa Weekend kolme ystävystä lähtevät rentouttavalle kylpyläviikonlopulle" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E913A32154E3731C0F97E7B942E759EE/Spa_weekend_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E913A32154E3731C0F97E7B942E759EE/Spa_weekend_12_", "en": "http://www.malmitalo.fi/en/events/event/E913A32154E3731C0F97E7B942E759EE/Spa_weekend_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68809/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68807", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038450/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038450/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038450/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:12.545879Z", "last_modified_time": "2026-08-21T09:14:12.545900Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792018.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:12.422241Z", "last_modified_time": "2026-08-25T07:23:06.561231Z", "date_published": null, "start_time": "2026-09-11T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "The Invite (12) – Kino Helios", "sv": "The Invite (12)", "en": "The Invite (12)" }, "description": { "fi": "<p>Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä.</p><p>Kun he kutsuvat arvoitukselliset yläkerran naapurinsa (Edward Norton & Penélope Cruz) illalliselle, ilta ajautuu yllättäviin suuntiin. Sytyttivätkö he kipinän uudelleen — vai liekin, joka polttaa kaiken maan tasalle?</p><p>Ikäraja: 12<br>Kesto: 108 min<br>Ensi-ilta: 14.08.2026<br>Kieli: englanti, espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/191F447A96D889F52A1D50BBE01FEE4D/The_Invite_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/191F447A96D889F52A1D50BBE01FEE4D/The_Invite_12_", "en": "http://www.malmitalo.fi/en/events/event/191F447A96D889F52A1D50BBE01FEE4D/The_Invite_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68807/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68806", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038456/", "sv": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038456/", "en": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038456/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385895, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:12.001911Z", "last_modified_time": "2026-08-21T09:14:12.001926Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792017.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385895/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:11.894361Z", "last_modified_time": "2026-08-25T07:23:06.193021Z", "date_published": null, "start_time": "2026-09-11T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Presidentin kyyditys (12) – Kino Helios", "sv": "Presidentin kyyditys (12)", "en": "Presidentin kyyditys (12)" }, "description": { "fi": "<p>Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia.</p><p>Raskaan ryyppyillan aikana joukko kunnianhimoisia upseereita päättää kaapata Suomen ensimmäisen presidentin – jo eläkkeellä olevan K. J. Ståhlbergin. Uppiniskainen presidentin vaimo Ester Ståhlberg ei tiukassakaan tilanteessa suostu jättämään miestään, vaan änkeää muiluttajien pään menoksi samaan kyytiin auton takapenkille. Alkaa uskomaton matka halki levottoman Suomen, jossa huhupuheet ja historia kietoutuvat yhteen – eikä vieläkään tiedetä, mikä presidentin kyydityksessä oli totta ja mikä tarua.</p><p>Ikäraja: 12<br>Kesto: 87 min<br>Ensi-ilta: 04.09.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D5F0C2D218C02100CE5749390225E6C2/Presidentin_kyyditys_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D5F0C2D218C02100CE5749390225E6C2/Presidentin_kyyditys_12_", "en": "http://www.malmitalo.fi/en/events/event/D5F0C2D218C02100CE5749390225E6C2/Presidentin_kyyditys_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68806/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68805", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038447/", "sv": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038447/", "en": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038447/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385894, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:11.383373Z", "last_modified_time": "2026-08-21T09:14:11.383388Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792015.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385894/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:11.273994Z", "last_modified_time": "2026-08-25T07:23:05.671478Z", "date_published": null, "start_time": "2026-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, "location_extra_info": null, "provider": null, "name": { "fi": "Autofiktio (12) – Kino Helios", "sv": "Autofiktio (12)", "en": "Autofiktio (12)" }, "description": { "fi": "<p>Espanjalaisen ohjaajalegendan Pedro Almodóvarin melodraama Autofiktio (Amarga Navidad) kertoo luomiskriisissä kamppailevasta elokuvantekijästä.</p><p>Elokuvan keskiössä on Elsa, mainoskuvaaja, joka tekee töitä tauotta eikä anna itselleen aikaa surra äitinsä kuolemaa. Hän lähtee ystävänsä kanssa Lanzarotelle, sillä molemmat kaipaavat irtiottoa arjesta. Naisten tarinan rinnalla kulkee kertomus elokuvantekijästä, joka tutkii, kuinka erottamattomasti tosielämä ja fiktio voivat kietoutua toisiinsa ja kuinka läheisten kokemukset voivat muuntua taiteeksi – joskus kuohuttavallakin tavalla.</p><p>Ikäraja: 12<br>Kesto: 112 min<br>Ensi-ilta: 28.08.2026<br>Kieli: espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Espanjalaisen ohjaajalegendan Pedro Almodóvarin melodraama Autofiktio (Amarga Navidad) kertoo luomiskriisissä kamppailevasta elokuvantekijästä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B883F36BFD69E794445EBE55F056677B/Autofiktio_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B883F36BFD69E794445EBE55F056677B/Autofiktio_12_", "en": "http://www.malmitalo.fi/en/events/event/B883F36BFD69E794445EBE55F056677B/Autofiktio_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68805/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68803", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038449/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038449/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038449/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385892, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:10.141226Z", "last_modified_time": "2026-08-21T09:14:10.141241Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792012.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385892/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:10.036770Z", "last_modified_time": "2026-08-25T07:23:04.717942Z", "date_published": null, "start_time": "2026-09-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "The Invite (12) – Kino Helios", "sv": "The Invite (12)", "en": "The Invite (12)" }, "description": { "fi": "<p>Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä.</p><p>Kun he kutsuvat arvoitukselliset yläkerran naapurinsa (Edward Norton & Penélope Cruz) illalliselle, ilta ajautuu yllättäviin suuntiin. Sytyttivätkö he kipinän uudelleen — vai liekin, joka polttaa kaiken maan tasalle?</p><p>Ikäraja: 12<br>Kesto: 108 min<br>Ensi-ilta: 14.08.2026<br>Kieli: englanti, espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/795F0AAC70DEA59DD2660BD391EF20B8/The_Invite_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/795F0AAC70DEA59DD2660BD391EF20B8/The_Invite_12_", "en": "http://www.malmitalo.fi/en/events/event/795F0AAC70DEA59DD2660BD391EF20B8/The_Invite_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68803/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68801", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038455/", "sv": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038455/", "en": "https://www.lippu.fi/event/kino-helios-presidentin-kyyditys-malmitalo-22038455/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385890, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:08.220714Z", "last_modified_time": "2026-08-21T09:14:08.220734Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792009.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385890/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:08.098239Z", "last_modified_time": "2026-08-25T07:23:03.000906Z", "date_published": null, "start_time": "2026-09-05T15: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, "location_extra_info": null, "provider": null, "name": { "fi": "Presidentin kyyditys (12) – Kino Helios", "sv": "Presidentin kyyditys (12)", "en": "Presidentin kyyditys (12)" }, "description": { "fi": "<p>Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia.</p><p>Raskaan ryyppyillan aikana joukko kunnianhimoisia upseereita päättää kaapata Suomen ensimmäisen presidentin – jo eläkkeellä olevan K. J. Ståhlbergin. Uppiniskainen presidentin vaimo Ester Ståhlberg ei tiukassakaan tilanteessa suostu jättämään miestään, vaan änkeää muiluttajien pään menoksi samaan kyytiin auton takapenkille. Alkaa uskomaton matka halki levottoman Suomen, jossa huhupuheet ja historia kietoutuvat yhteen – eikä vieläkään tiedetä, mikä presidentin kyydityksessä oli totta ja mikä tarua.</p><p>Ikäraja: 12<br>Kesto: 87 min<br>Ensi-ilta: 04.09.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tositapahtumien inspiroima Presidentin kyyditys vie katsojan keskelle vuoden 1930 absurdeja tapahtumia." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BC2936EAD3407E56F0D189E578618D39/Presidentin_kyyditys_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BC2936EAD3407E56F0D189E578618D39/Presidentin_kyyditys_12_", "en": "http://www.malmitalo.fi/en/events/event/BC2936EAD3407E56F0D189E578618D39/Presidentin_kyyditys_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68801/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68799", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038452/", "sv": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038452/", "en": "https://www.lippu.fi/event/kino-helios-spa-weekend-malmitalo-22038452/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385889, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:07.558721Z", "last_modified_time": "2026-08-21T09:14:07.558738Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792006.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385889/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:07.442380Z", "last_modified_time": "2026-08-25T07:23:02.444952Z", "date_published": null, "start_time": "2026-09-04T15: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, "location_extra_info": null, "provider": null, "name": { "fi": "Spa weekend (12) – Kino Helios", "sv": "Spa weekend (12)", "en": "Spa weekend (12)" }, "description": { "fi": "<p>Kauhea kankkunen ja Bad Moms elokuvien käsikirjoittajien uudessa komediassa Spa Weekend kolme ystävystä lähtevät rentouttavalle kylpyläviikonlopulle</p><p>Kaikki kuitenkin karkaa käsistä, kun heidän katastrofikaverinsa liittyy seuraan – luvassa on hulvaton kaaos. Pääosissa Leslie Mann, Isla Fisher, Michelle Buteau ja Anna Faris.</p><p>Ikäraja: 12<br>Kesto: 97 min<br>Ensi-ilta: 21.08.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kauhea kankkunen ja Bad Moms elokuvien käsikirjoittajien uudessa komediassa Spa Weekend kolme ystävystä lähtevät rentouttavalle kylpyläviikonlopulle" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4A11E82FEB7B6CFE6F82560D41815645/Spa_weekend_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4A11E82FEB7B6CFE6F82560D41815645/Spa_weekend_12_", "en": "http://www.malmitalo.fi/en/events/event/4A11E82FEB7B6CFE6F82560D41815645/Spa_weekend_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68799/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68798", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038446/", "sv": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038446/", "en": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038446/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385888, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:07.154001Z", "last_modified_time": "2026-08-21T09:14:07.154018Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792005.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385888/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:07.035546Z", "last_modified_time": "2026-08-25T07:23:02.217037Z", "date_published": null, "start_time": "2026-09-04T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "Autofiktio (12) – Kino Helios", "sv": "Autofiktio (12)", "en": "Autofiktio (12)" }, "description": { "fi": "<p>Espanjalaisen ohjaajalegendan Pedro Almodóvarin melodraama Autofiktio (Amarga Navidad) kertoo luomiskriisissä kamppailevasta elokuvantekijästä.</p><p>Elokuvan keskiössä on Elsa, mainoskuvaaja, joka tekee töitä tauotta eikä anna itselleen aikaa surra äitinsä kuolemaa. Hän lähtee ystävänsä kanssa Lanzarotelle, sillä molemmat kaipaavat irtiottoa arjesta. Naisten tarinan rinnalla kulkee kertomus elokuvantekijästä, joka tutkii, kuinka erottamattomasti tosielämä ja fiktio voivat kietoutua toisiinsa ja kuinka läheisten kokemukset voivat muuntua taiteeksi – joskus kuohuttavallakin tavalla.</p><p>Ikäraja: 12<br>Kesto: 112 min<br>Ensi-ilta: 28.08.2026<br>Kieli: espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Espanjalaisen ohjaajalegendan Pedro Almodóvarin melodraama Autofiktio (Amarga Navidad) kertoo luomiskriisissä kamppailevasta elokuvantekijästä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AA6075645216B7D2C4980EE8768F4777/Autofiktio_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/AA6075645216B7D2C4980EE8768F4777/Autofiktio_12_", "en": "http://www.malmitalo.fi/en/events/event/AA6075645216B7D2C4980EE8768F4777/Autofiktio_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68798/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68796", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038448/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038448/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-the-invite-malmitalo-22038448/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385886, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:05.916684Z", "last_modified_time": "2026-08-21T09:14:05.916706Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792002.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385886/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:05.786850Z", "last_modified_time": "2026-08-25T07:23:01.141727Z", "date_published": null, "start_time": "2026-09-03T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "The Invite (12) – Kino Helios", "sv": "The Invite (12)", "en": "The Invite (12)" }, "description": { "fi": "<p>Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä.</p><p>Kun he kutsuvat arvoitukselliset yläkerran naapurinsa (Edward Norton & Penélope Cruz) illalliselle, ilta ajautuu yllättäviin suuntiin. Sytyttivätkö he kipinän uudelleen — vai liekin, joka polttaa kaiken maan tasalle?</p><p>Ikäraja: 12<br>Kesto: 108 min<br>Ensi-ilta: 14.08.2026<br>Kieli: englanti, espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Joen (Seth Rogen) ja Angelan (Olivia Wilde) avioliitto on veitsenterällä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6F5E45177EEF6F39B9513061DA244BA3/The_Invite_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6F5E45177EEF6F39B9513061DA244BA3/The_Invite_12_", "en": "http://www.malmitalo.fi/en/events/event/6F5E45177EEF6F39B9513061DA244BA3/The_Invite_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68796/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68795", "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": [], "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" }, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038445/", "sv": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038445/", "en": "https://www.lippu.fi/event/kino-helios-autofiktio-malmitalo-22038445/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-21T09:14:05.290465Z", "last_modified_time": "2026-08-21T09:14:05.290478Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792000.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-21T09:14:05.170646Z", "last_modified_time": "2026-08-25T07:23:00.665266Z", "date_published": null, "start_time": "2026-09-02T15: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, "location_extra_info": null, "provider": null, "name": { "fi": "Autofiktio (12) – Kino Helios", "sv": "Autofiktio (12)", "en": "Autofiktio (12)" }, "description": { "fi": "<p>Espanjalaisen ohjaajalegendan Pedro Almodóvarin melodraama Autofiktio (Amarga Navidad) kertoo luomiskriisissä kamppailevasta elokuvantekijästä.</p><p>Elokuvan keskiössä on Elsa, mainoskuvaaja, joka tekee töitä tauotta eikä anna itselleen aikaa surra äitinsä kuolemaa. Hän lähtee ystävänsä kanssa Lanzarotelle, sillä molemmat kaipaavat irtiottoa arjesta. Naisten tarinan rinnalla kulkee kertomus elokuvantekijästä, joka tutkii, kuinka erottamattomasti tosielämä ja fiktio voivat kietoutua toisiinsa ja kuinka läheisten kokemukset voivat muuntua taiteeksi – joskus kuohuttavallakin tavalla.</p><p>Ikäraja: 12<br>Kesto: 112 min<br>Ensi-ilta: 28.08.2026<br>Kieli: espanja<br>Tekstitys: suomi, ruotsi</p>" }, "provider_contact_info": null, "short_description": { "fi": "Espanjalaisen ohjaajalegendan Pedro Almodóvarin melodraama Autofiktio (Amarga Navidad) kertoo luomiskriisissä kamppailevasta elokuvantekijästä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/54C63059ABA0B943232D1F9BD0F2795C/Autofiktio_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/54C63059ABA0B943232D1F9BD0F2795C/Autofiktio_12_", "en": "http://www.malmitalo.fi/en/events/event/54C63059ABA0B943232D1F9BD0F2795C/Autofiktio_12_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68795/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }