Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?division=malmi&format=api&page=6
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=5" }, "data": [ { "id": "kulke:67376", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375686/", "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375686/", "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375686/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1508334, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T10:12:55.424209Z", "last_modified_time": "2026-03-03T10:12:55.424223Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781056.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508334/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T10:12:55.299015Z", "last_modified_time": "2026-03-20T01:13:33.092953Z", "date_published": null, "start_time": "2026-03-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5B1AC2FF7E140F0BCB2C0AC795FB9451/Isanpaiva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5B1AC2FF7E140F0BCB2C0AC795FB9451/Isanpaiva_7_", "en": "http://www.malmitalo.fi/en/events/event/5B1AC2FF7E140F0BCB2C0AC795FB9451/Isanpaiva_7_" }, "description": { "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Isänpäivä (7) – Kino Helios", "sv": "Isänpäivä (7) – Kino Helios", "en": "Isänpäivä (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67376/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67375", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21364433/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21364433/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21364433/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1506902, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T07:14:14.919413Z", "last_modified_time": "2026-03-03T07:14:14.919430Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781055.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1506902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T07:14:14.769938Z", "last_modified_time": "2026-03-20T01:13:32.975372Z", "date_published": null, "start_time": "2026-03-13T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/36BA12BB2D0A72707810AB33DC9484E6/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/36BA12BB2D0A72707810AB33DC9484E6/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/36BA12BB2D0A72707810AB33DC9484E6/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67375/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67487", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/matti-johannes-koivu/a-la-malmi-matti-johannes-koivu-4025917/", "sv": "https://www.lippu.fi/artist/matti-johannes-koivu/a-la-malmi-matti-johannes-koivu-4025917/", "en": "https://www.lippu.fi/artist/matti-johannes-koivu/a-la-malmi-matti-johannes-koivu-4025917/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494024, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T10:12:48.452105Z", "last_modified_time": "2025-12-03T10:12:48.452119Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781542.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494024/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T10:12:48.341074Z", "last_modified_time": "2026-03-20T01:13:32.357572Z", "date_published": null, "start_time": "2026-03-12T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Matti Johannes Koivu kuuluu vankasti maamme vahvimpien laulaja-lauluntekijöiden riviin. Hänet tunnetaan artistina, joka ei epäröi tuoda tunteitaan musiikkiin.", "sv": "Matti Johannes Koivu har en stark ställning som en av vårt lands bästa sångare och låtskrivare. Han är känd som en artist som inte tvekar att uttrycka sina känslor i sin musik.", "en": "Matti Johannes Koivu is undeniably among the strongest singer-songwriters in Finland. He is known as an artist who does not hesitate to put his feelings into music." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6F0A55F3E5A61B49872E8773DF455B6D/Matti_Johannes_Koivu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6F0A55F3E5A61B49872E8773DF455B6D/Matti_Johannes_Koivu", "en": "http://www.malmitalo.fi/en/events/event/6F0A55F3E5A61B49872E8773DF455B6D/Matti_Johannes_Koivu" }, "description": { "fi": "<p>Matti Johannes Koivu kuuluu vankasti maamme vahvimpien laulaja-lauluntekijöiden riviin. Hänet tunnetaan artistina, joka ei epäröi tuoda tunteitaan musiikkiin.</p><p>Koivu on julkaissut kahdeksan soololevyn lisäksi lastenmusiikkilevyn ja neljä albumia Ultramariini-yhtyeen jäsenenä. Suuren yleisön tietoon Koivu tuli alunperin cover-versioista, joita hän teki Irwin Goodmanin esittämistä kappaleista.</p><p>Oman tuotantonsa lisäksi Koivu on kirjoittanut lauluja ja tekstejä myös muille artisteille, muun muassa Vesa-Matti Loirille ja Lassi Valtoselle. Koivun musiikissa on kuultavissa vaikutteita muun muassa folkista ja beat-musiikista.</p><p>Live-esiintymisiin Matti Johannes Koivu suhtautuu intohimoisesti: ”Musiikin kestävyys punnitaan elävän yleisön edessä. Rakastan live-esiintymisen haastetta; sitä kuinka jännittää ja hirvittää, ja kuinka musiikki parhaimmillaan vapauttaa esiintyjän ja yleisön.”</p><p>Matti Johannes Koivu on laajentanut viime vuosina muusikon toimenkuvaansa. Hän on tehnyt kolme historiaa ja sen ymmärtämistä käsittelevää radiodokumenttisarjaa Yleisradiolle. Näistä uusin esitettiin kesällä 2019. Musiikintekijänä Matti Johannes Koivu on julkaissut aiemmin kahdeksan soololevyä sekä neljä albumia Ultramariini-yhtyeen jäsenenä. Emma-ehdokkaana Koivu on ollut niin Toisen maailman nimi –soololevyllään kuin Ultramariinin levyllä Ydin.</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät.</p><p>Keikka on ikärajaton.</p>", "sv": "<p>Matti Johannes Koivu har en stark ställning som en av vårt lands bästa sångare och låtskrivare. Han är känd som en artist som inte tvekar att uttrycka sina känslor i sin musik.</p><p>Utöver åtta soloalbum har Koivu gett ut ett album med barnmusik och fyra album som medlem i bandet Ultramariini. Koivu blev ursprungligen känd för allmänheten genom sina coverversioner av Irwin Goodmans låtar.</p><p>Förutom sin egen produktion har Koivu också skrivit sånger och texter för andra artister, bland andra Vesa-Matti Loiri och Lassi Valtonen. Koivus musik är influerad av bland annat folk- och beatmusik.</p><p>Matti Johannes Koivu förhåller sig passionerat till live-uppträdanden: ”Musikens hållbarhet vägs inför en levande publik. Jag älskar utmaningen med live-uppträdanden; spänningen samt den där skrämmande känslan och hur musik sedan som bäst frigör både artisten och publiken.”</p><p>Under de senaste åren har Matti Johannes Koivu utvidgat sitt verksamhetsområde som musiker. Han har gjort tre radiodokumentärserier som behandlar historia och förståelsen för den för Yle. Den nyaste av dessa presenterades sommaren 2019. Som musikskapare har Matti Johannes Koivu tidigare gett ut åtta soloalbum och fyra album som medlem i bandet Ultramariini. Koivu har varit Emma-kandidat med såväl soloalbumet Toisen maailman nimi som med Ultramariinis skiva Ydin.</p><p>Spelningen har ingen åldersgräns.<br>Längd: 2 h, inkl. en paus på 20 min.<br>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft. Den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare erbjuder varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass. A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik.</p>", "en": "<p>Matti Johannes Koivu is undeniably among the strongest singer-songwriters in Finland. He is known as an artist who does not hesitate to put his feelings into music.</p><p>Koivu has released eight solo albums, a children's music album and four albums as a member of the band Ultramariini. The general public first learned of Koivu through his cover versions of songs by Irwin Goodman.</p><p>In addition to his own work, Koivu has also written songs and lyrics for other artists, including Vesa-Matti Loiri and Lassi Valtonen. Koivu's music is influenced by folk and beat music, among others.</p><p>Matti Johannes Koivu is passionate about performing live: “The true weight of music is measured in front of a live audience. I love the challenge of performing live; the excitement and the nerves, and how music, at its best, can liberate both the performer and the audience.”</p><p>In recent years, Matti Johannes Koivu has expanded his professional range. He has made three radio documentary series on history and understanding it for the Finnish Broadcasting Company. The latest of these was broadcast in summer 2019. As a music writer, Matti Johannes Koivu has previously released eight solo albums and four albums as a member of the band Ultramariini. Koivu has been nominated for an Emma Award for his solo album Toisen maailman nimi and for the Ultramariini album Ydin.</p><p>The gig has no age limit.<br>Duration: 2 hours, incl. 20 min intermission</p><p>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music. The high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art. A la Malmi doesn’t care about genre boundaries but brings the best independent musicians to its audiences.</p>" }, "name": { "fi": "Matti Johannes Koivu – A la Malmi", "sv": "Matti Johannes Koivu – A la Malmi", "en": "Matti Johannes Koivu – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67487/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67477", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/roots-musiikin-evoluutio-niko-ahvonen-ja-tilanteen-herrat-malmitalo-21028828/", "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-niko-ahvonen-ja-tilanteen-herrat-malmitalo-21028828/", "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-niko-ahvonen-ja-tilanteen-herrat-malmitalo-21028828/" }, "description": null, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494022, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:53.739543Z", "last_modified_time": "2025-12-03T09:12:53.739559Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781453.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494022/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:53.658401Z", "last_modified_time": "2026-03-20T01:13:31.312849Z", "date_published": null, "start_time": "2026-03-11T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Levyjulkkarikeikka!", "sv": "Situationen lever och är under kontroll!Vårt band framför Niko Ahvonens finskspråkiga och rytmiska kvällsprogram från fyra årtionden.", "en": "Situation is changing but under control! Our ensemble performs Niko Ahvonen's rhythmic Finnish evening repertoire from across four decades." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A204EBAD01A04E5C4EA0AB4A697483F2/Niko_Ahvonen_ja_Tilanteen_Herrat_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A204EBAD01A04E5C4EA0AB4A697483F2/Niko_Ahvonen_Tilanteen_Herrat_", "en": "http://www.malmitalo.fi/en/events/event/A204EBAD01A04E5C4EA0AB4A697483F2/Niko_Ahvonen_and_Tilanteen_Herrat_" }, "description": { "fi": "<p>Levyjulkkarikeikka!</p><p>Bändi julkaisi juuri Valmis maailma -levyn ja Malmilla nähdään bändin levynjulkistuskeikka!</p><p>Niko Ahvonen esittää suomenkielistä rytmikästä iltamaohjelmistoa neljältä vuosikymmeneltä.</p><p>Bändi:</p><p>Niko Ahvonen: laulu, alttosaksofoni, rytmikitara<br>Mitja Tuurala: basso, taustalaulu<br>Markus Tiiro: soolokitara, taustalaulu<br>Antti Utriainen: koskettimet, taustalaulu<br>Janne Haavisto: rummut<br>Antti Snellman: tenorisaksofoni<br>Jarmo Rouvinen: baritonisaksofoni, huilu</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>", "sv": "<p>Situationen lever och är under kontroll!Vårt band framför Niko Ahvonens finskspråkiga och rytmiska kvällsprogram från fyra årtionden.</p><p>De senaste låtarna är redan färdiginspelade, albumet släpps vilken stund som helst. Så kom och njut!</p><p>Niko Ahvonen: sång, altsaxofon, rytmgitarr<br>Mitja Tuurala: bas, bakgrundssång<br>Markus Tiiro: sologitarr, bakgrundssång<br>Antti Utriainen: keyboard, bakgrundssång<br>Janne Haavisto: trummor<br>Antti Snellman: tenorsaxofon<br>Jarmo Rouvinen: barytonsaxofon, flöjt</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>", "en": "<p>Situation is changing but under control! Our ensemble performs Niko Ahvonen's rhythmic Finnish evening repertoire from across four decades.</p><p>The newest songs are already bubbling under the lid and the album will be released any minute now. So come by and let us entertain you!</p><p>Niko Ahvonen: vocals, alto saxophone, rhythm guitar<br>Mitja Tuurala: bass, backing vocals<br>Markus Tiiro: solo guitar, backing vocals<br>Antti Utriainen: keyboards, backing vocals<br>Janne Haavisto: drums<br>Antti Snellman: tenor saxophone<br>Jarmo Rouvinen: baritone saxophone, flute</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>" }, "name": { "fi": "Niko Ahvonen ja Tilanteen Herrat – Roots-musiikin evoluutio", "sv": "Niko Ahvonen & Tilanteen Herrat – Roots-musikens evolution", "en": "Niko Ahvonen and Tilanteen Herrat – The evolution of roots music" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67374", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21375774/", "sv": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21375774/", "en": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21375774/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1507855, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T09:15:37.587626Z", "last_modified_time": "2026-03-03T09:15:37.587652Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781053.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507855/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T09:15:37.464651Z", "last_modified_time": "2026-03-20T01:13:30.973805Z", "date_published": null, "start_time": "2026-03-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BD586A2A94C2304773E6D679690A550A/Humiseva_harju_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BD586A2A94C2304773E6D679690A550A/Humiseva_harju_16_", "en": "http://www.malmitalo.fi/en/events/event/BD586A2A94C2304773E6D679690A550A/Humiseva_harju_16_" }, "description": { "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Humiseva harju (16) – Kino Helios", "sv": "Humiseva harju (16) – Kino Helios", "en": "Humiseva harju (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67374/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67373", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375775/", "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375775/", "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375775/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1508333, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-03T10:12:54.129377Z", "last_modified_time": "2026-03-03T10:12:54.129392Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781052.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508333/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-03T10:12:53.997765Z", "last_modified_time": "2026-03-20T01:13:30.446494Z", "date_published": null, "start_time": "2026-03-11T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1A56EF8B8B86856B4642446AC874570E/Isanpaiva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1A56EF8B8B86856B4642446AC874570E/Isanpaiva_7_", "en": "http://www.malmitalo.fi/en/events/event/1A56EF8B8B86856B4642446AC874570E/Isanpaiva_7_" }, "description": { "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Isänpäivä (7) – Kino Helios", "sv": "Isänpäivä (7) – Kino Helios", "en": "Isänpäivä (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67373/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67486", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/", "sv": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/", "en": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/" }, "description": null, "price": { "fi": "29€/27€", "sv": "29€/27€", "en": "29€/27€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494585, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:40.315010Z", "last_modified_time": "2026-01-21T10:13:40.315028Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781540.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494585/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T10:13:40.193283Z", "last_modified_time": "2026-03-20T01:13:29.604614Z", "date_published": null, "start_time": "2026-03-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin", "en": "http://www.malmitalo.fi/en/events/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin" }, "description": { "fi": "<p>Finnair Pilots´ Big Band palaa jälleen Malmitaloon upeiden solistien, Sami Pitkämön sekä Sari Tuliniemen kera.</p><p>Sari on pitkän linjan finnairilainen sekä tuttu useimpien big bandien riveistä. Konsertissa kuullaan<br>lennokasta musiikkia, Sami Pitkämön levytyskappaleita sekä hienoja big band -klassikoita.</p><p>Tästä konsertista ei tulkintaa eikä tunnelmaa tule puuttumaan.</p><p>Tervetuloa lennolle!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>" }, "name": { "fi": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin", "sv": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin", "en": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67486/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67467", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494011, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:08.728071Z", "last_modified_time": "2025-12-03T08:13:08.728117Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781432.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494011/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:08.617891Z", "last_modified_time": "2026-03-20T01:13:29.382388Z", "date_published": null, "start_time": "2026-03-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!", "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!", "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8156A6A6FB98E2A8741FC66E74D984D8/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8156A6A6FB98E2A8741FC66E74D984D8/Allsang", "en": "http://www.malmitalo.fi/en/events/event/8156A6A6FB98E2A8741FC66E74D984D8/Singalongs" }, "description": { "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>", "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>", "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>" }, "name": { "fi": "Yhteislaulut", "sv": "Allsång", "en": "Singalongs" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67485", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lauluyhtye-chime-luontomme-malmitalo-20992912/", "sv": "https://www.lippu.fi/event/lauluyhtye-chime-luontomme-malmitalo-20992912/", "en": "https://www.lippu.fi/event/lauluyhtye-chime-luontomme-malmitalo-20992912/" }, "description": null, "price": { "fi": "17,80 € / 19,80 €", "sv": "17,80 € / 19,80 €", "en": "17,80 € / 19,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494021, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:53.383977Z", "last_modified_time": "2025-12-03T09:12:53.383989Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781538.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494021/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:53.312553Z", "last_modified_time": "2026-03-20T01:13:28.046986Z", "date_published": null, "start_time": "2026-03-07T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Miten ihminen suhtautuu elinympäristöönsä ja miten luonto vastaa siihen?", "sv": "Hur reagerar människan på sin livsmiljö och hur svarar naturen på det?", "en": "How do humans feel about their living environment and how does nature respond?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4DA2B24A1C29A31B3F31565E1BECC2C6/Lauluyhtye_Chime_Luontomme_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4DA2B24A1C29A31B3F31565E1BECC2C6/Sanggruppen_Chime_Luontomme", "en": "http://www.malmitalo.fi/en/events/event/4DA2B24A1C29A31B3F31565E1BECC2C6/Lauluyhtye_Chime_Luontomme_Our_nature" }, "description": { "fi": "<p>Miten ihminen suhtautuu elinympäristöönsä ja miten luonto vastaa siihen?</p><p>Näemmekö oman toimintamme vaikutukset, entä onko meillä rohkeutta toimia säilyttääksemme meille niin tärkeän planeettamme? Mitä ihminen on ilman luontoa ja mitä meistä jää jäljelle, jos kadotamme sen?</p><p>Näitä kysymyksiä Lauluyhtye Chime pohtii a cappella -laulun keinoin Luontomme -konsertissa Malmitalolla 7.3.2026. Konsertti vie matkalle, jossa luonto peilaa ihmisyyttä ja näyttää, keitä me olemme.</p><p>Kesto 1 t 15 min, ei väliaikaa</p>", "sv": "<p>Hur reagerar människan på sin livsmiljö och hur svarar naturen på det?</p><p>Ser vi konsekvenserna av våra egna handlingar, och har vi modet att agera för att bevara den planet som vi bryr oss så mycket om? Vad är människan utan natur och vad blir kvar av oss om vi förlorar den?</p><p>Dessa frågor funderar sånggruppen Chime på i form av a cappella-sång på konserten Luontomme på Malms kulturhus den 7 mars 2026. Konserten för publiken på en resa där naturen speglar mänskligheten och visar vilka vi är.</p><p>Längd 1 h 15 min., utan paus</p>", "en": "<p>How do humans feel about their living environment and how does nature respond?</p><p>Do we see the impacts of our actions and do we have the courage to act to preserve the planet that is so vital to us? What are humans without nature and what will be left of us if we lose it?</p><p>These are the questions that Lauluyhtye Chime will ask in their a cappella songs at their Luontomme concert at Malmitalo on 7 March 2026. The concert will take the audience on a journey where nature reflects humanity and shows us who we are.</p><p>Duration 1 hour 15 min, no intermission</p>" }, "name": { "fi": "Lauluyhtye Chime: Luontomme", "sv": "Sånggruppen Chime: Luontomme", "en": "Lauluyhtye Chime: Luontomme – Our nature" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67485/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67372", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299698/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299698/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299698/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494743, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:06.911809Z", "last_modified_time": "2026-02-05T13:14:06.911828Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781050.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:06.810096Z", "last_modified_time": "2026-03-20T01:13:27.930813Z", "date_published": null, "start_time": "2026-03-07T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E10B117BE95722461DA12462BE295B7/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6E10B117BE95722461DA12462BE295B7/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/6E10B117BE95722461DA12462BE295B7/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67372/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67371", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299672/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299672/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299672/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494735, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:20.351960Z", "last_modified_time": "2026-02-05T10:13:20.351974Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781049.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494735/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:20.246121Z", "last_modified_time": "2026-03-20T01:13:27.590953Z", "date_published": null, "start_time": "2026-03-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D1B9B53D759E3F43BA57626F968262FF/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D1B9B53D759E3F43BA57626F968262FF/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/D1B9B53D759E3F43BA57626F968262FF/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67371/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67484", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4048779", "sv": "https://www.lippu.fi/eventseries/name-4048779", "en": "https://www.lippu.fi/eventseries/name-4048779" }, "description": null, "price": { "fi": "15€/20€", "sv": "15€/20€", "en": "15€/20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494226, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-16T14:13:40.472993Z", "last_modified_time": "2025-12-16T14:13:40.473010Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781536.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494226/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-16T14:13:40.320706Z", "last_modified_time": "2026-03-20T01:13:26.909702Z", "date_published": null, "start_time": "2026-03-06T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Folk Saimaa tarjoilee rakastetun Saimaa-yhtyeen musiikkia intiimillä kvartettikokoonpanolla." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A79010D5B7C23894C7388DFA136667B2/Folk_Saimaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A79010D5B7C23894C7388DFA136667B2/Folk_Saimaa", "en": "http://www.malmitalo.fi/en/events/event/A79010D5B7C23894C7388DFA136667B2/Folk_Saimaa" }, "description": { "fi": "<p>Folk Saimaa tarjoilee rakastetun Saimaa-yhtyeen musiikkia intiimillä kvartettikokoonpanolla.</p><p>Kokoonpanossa soittavat kitaristi Petri Kautto sekä laulajat Kimmo Härmä, Unna Kortehisto ja Liisa Anastasiadis.<br> <br>Saimaa julkaisi vuonna 2024 viiden tähden arvioita keränneet albumit Vol. 6 & Vol. 7, joista yhtye pokkasi myös Vuoden iskelmä -Emma-palkinnon.</p><p>A la Malmi on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa. A la Malmi ei välitä genrerajoista vaan tarjoilee kuulijoiden eteen parhaat itsenäisen musiikin tekijät.</p><p>Kesto: 1 t 40min, sis 20 min väliajan</p><p>Keikka on ikärajaton.</p>", "sv": "<p>A la Malmi är en klubbserie i Malms kulturhus som presenterar den intressantaste och färskaste finländska musiken med mest lyft.<br> <br>Den högkvalitativa konserthusmiljön med sina upphöjningsbara läktare erbjuder varje åhörare en bekväm sittplats och en bra utsikt över scenen. De akustiska, ljud- och ljusmässiga förhållandena i Malmsalen är av högsta klass.</p><p>A la Malmi bryr sig inte om genregränser, utan erbjuder åhörarna det bästa inom indiemusik.<br>Spelningen har ingen åldersgräns.</p>", "en": "<p>A la Malmi is a club series at Malmitalo that showcases the most interesting, fresh and upcoming Finnish music.</p><p>The high-quality concert hall environment with its ascending stands provides each customer with a comfortable seat and a good view of the stage. The acoustic, audio and lighting in Malmisali are state-of-the-art.</p><p>A la Malmi doesn’t care about genre boundaries but brings the best independent musicians to its audiences.<br>The show is for all ages.</p>" }, "name": { "fi": "Folk Saimaa – A la Malmi", "sv": "Folk Saimaa – A la Malmi", "en": "Folk Saimaa – A la Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67484/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67370", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299553/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299553/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299553/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494725, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T08:13:43.462788Z", "last_modified_time": "2026-02-05T08:13:43.462805Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781047.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494725/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T08:13:43.349059Z", "last_modified_time": "2026-03-20T01:13:26.573944Z", "date_published": null, "start_time": "2026-03-06T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FBA56FFDE46D24A43E47449960BA0CDB/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FBA56FFDE46D24A43E47449960BA0CDB/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/FBA56FFDE46D24A43E47449960BA0CDB/_Luottomies-elokuva_Lepoloma_7_" }, "description": { "fi": "<p>Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle.</p><p>Johanilla on yksi ehto: hän haluaa autonsa mukaan. Tommi lupautuu ajamaan Johanin auton Espanjaan – yhdessä Juhiksen kanssa. Asiat eivät kuitenkaan mene aivan suunnitellusti, ja kun Johanin auto varastetaan, Tommi ja Juhis päättävät selvittää tilanteen omin avuin ja pian sankarimme syöksyvät taas kiihtyvällä vauhdilla katastrofista toiseen.</p><p>Ikäraja: 7<br>Kesto: 88 min<br>Ensi-ilta: 4.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "sv": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "en": "Luottomies-elokuva: Lepoloma (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67370/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67369", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299760/", "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299760/", "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299760/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494742, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:06.127559Z", "last_modified_time": "2026-02-05T13:14:06.127644Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494742/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:06.018023Z", "last_modified_time": "2026-03-20T01:13:26.352854Z", "date_published": null, "start_time": "2026-03-06T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/44C1BDB63087CAB4126B2A6105C6BFA3/EPiC_Elvis_Presley_in_Concert", "sv": "http://www.malmitalo.fi/sv/evenemang/event/44C1BDB63087CAB4126B2A6105C6BFA3/EPiC_Elvis_Presley_in_Concert", "en": "http://www.malmitalo.fi/en/events/event/44C1BDB63087CAB4126B2A6105C6BFA3/EPiC_Elvis_Presley_in_Concert" }, "description": { "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita. Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: ei tiedossa<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "EPiC: Elvis Presley in Concert – Kino Helios", "sv": "EPiC: Elvis Presley in Concert – Kino Helios", "en": "EPiC: Elvis Presley in Concert – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67369/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67701", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494020, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:52.979146Z", "last_modified_time": "2025-12-03T09:12:52.979160Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782444.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494020/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:52.899946Z", "last_modified_time": "2026-03-20T01:13:25.943992Z", "date_published": null, "start_time": "2026-03-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Miltä maailma ja yhteiskunta näyttävät elokapinalaisen silmin? Saku Soukan dokumenttielokuva vie meidät tapahtumien ytimeen.", "sv": "Hur ser världen och samhället ut med en Elokapina-aktivists ögon? Saku Soukkas dokumentärfilm tar oss till händelsernas kärna.", "en": "How do the world and society look like through the eyes of a member of Extinction Rebellion? Saku Soukka's documentary film takes us to the heart of the events." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8BF12395807EA5818B044C1469CCDB36/Doc_Helios_Kapina_elaman_puolesta_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8BF12395807EA5818B044C1469CCDB36/Doc_Helios_Kapina_elaman_puolesta_7_", "en": "http://www.malmitalo.fi/en/events/event/8BF12395807EA5818B044C1469CCDB36/Doc_Helios_Kapina_elaman_puolesta_7_Rebelling_for_existence" }, "description": { "fi": "<p>Miltä maailma ja yhteiskunta näyttävät elokapinalaisen silmin? Saku Soukan dokumenttielokuva vie meidät tapahtumien ytimeen.</p><p>Valokuvataiteilijana tunnetun Saku Soukan esikoiselokuva Kapina elämän puolesta kuvaa Elokapina-yhteisön toimia sisältäpäin. Minkä hinnan yhteiskunnassa vallitsevien käytäntöjen kritisoimisesta joutuu maksamaan? Miltä tuntuu, kun vastassa ovat valtaapitävät viranomaiset ja kovat otteet?</p><p>Pitkä dokumenttielokuva seuraa tapahtumia tiiviisti kahden vuoden ajan niin Lapin aapasuolla kuin Helsingin kaduillakin. Pyrkiessään hillitsemään ilmastokriisiä ja luontokatoa kapinalliset käyttävät omia kehojaan, joilla he blokkaavat tehtaita, tuotantovälineitä ja katuja. Yhteenotot virkavallan kanssa hiertävät, ja kapinalliset joutuvat välillä putkaan, oikeuden eteen ja myös väkivallan kohteeksi.</p><p>Kesto: 80 min<br>Ikäraja: K-7<br>Vapaa pääsy!</p>", "sv": "<p>Hur ser världen och samhället ut med en Elokapina-aktivists ögon? Saku Soukkas dokumentärfilm tar oss till händelsernas kärna.</p><p>Fotokonstnären Saku Soukkas debutfilm, Kapina elämän puolesta, skildrar Elokapina-rörelsens verksamhet inifrån. <br>Vilket pris måste man betala för att kritisera rådande praxis i samhället?<br>Hur känns det när man möts av makthavande myndigheter och hårda grepp?</p><p>Den långa dokumentärfilmen följer händelserna intensivt under två års tid både på aapamyren i Lappland och på gatorna i Helsingfors. <br>I ett försök att stävja klimatkrisen och minskningen av den biologiska mångfalden använder rebellerna sina egna kroppar med vilka de blockerar fabriker, produktionsmedel och gator. <br>Sammandrabbningarna med myndigheterna skapar friktion och rebeller hamnar ibland i finkan, ställs inför rätten och utsätts till och med för våld.</p><p>Längd: 80 min.<br>Åldersgräns: K-7<br>Fritt inträde!</p>", "en": "<p>How do the world and society look like through the eyes of a member of Extinction Rebellion? Saku Soukka's documentary film takes us to the heart of the events.</p><p>Kapina elämän puolesta, the debut film of Saku Soukka, who is best known as a photographer, depicts the workings of the Elokapina community – the Finnish Extinction Rebellion – from the inside. What is the price they have to pay for criticising the prevailing practices in society? How does it feel when you stand against powerful authorities, facing rough treatment?</p><p>The feature-length documentary film follows events closely over a period of two years, both in the string bogs of Lapland and on the streets of Helsinki. In an effort to mitigate the climate crisis and the loss of biodiversity, these rebels are using their own bodies to block factories, production equipment and streets. Clashes with the authorities bring their own problems, and the rebels are sometimes jailed, tried in court and even subjected to violence.</p><p>Duration: 80 min<br>Age rating: 7<br>Free entry!</p>" }, "name": { "fi": "Doc Helios: Kapina elämän puolesta (7)", "sv": "Doc Helios: Kapina elämän puolesta (7)", "en": "Doc Helios: Kapina elämän puolesta (7) – Rebelling for existence" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67701/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68122", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-18T13:13:30.651097Z", "last_modified_time": "2026-02-18T13:13:30.651124Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785670.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T13:13:30.515963Z", "last_modified_time": "2026-03-20T01:13:25.238349Z", "date_published": null, "start_time": "2026-03-05", "end_time": "2026-03-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Intersections on Alex Markwithin yksityisnäyttely, joka tarkastelee jännitettä ja päällekkäisyyttä abstraktin ja esittävän, digitaalisen ja fyysisen sekä rakenteiden ja hajoamisen välillä.", "en": "Where Painting Meets the Algorithm: Alex Markwith’s Intersections" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2F2DA2E0EB946290F707AC68B9D68900/_Alex_Markwith_Intersections", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2F2DA2E0EB946290F707AC68B9D68900/Alex_Markwith_Intersections", "en": "http://www.malmitalo.fi/en/events/event/2F2DA2E0EB946290F707AC68B9D68900/_Alex_Markwith_Intersections" }, "description": { "fi": "<p>Intersections on Alex Markwithin yksityisnäyttely, joka tarkastelee jännitettä ja päällekkäisyyttä abstraktin ja esittävän, digitaalisen ja fyysisen sekä rakenteiden ja hajoamisen välillä.</p><p>Maalaukset ovat kerroksellisia ja voimakkaasti teksturoituja, ja niissä näkyy usein repeämisen, eroosion ja rappeutumisen merkkejä. Markwithille kangas on samanaikaisesti kuvapinta, esine ja toiminnan näyttämö.</p><p>Geometriset ruudukot viittaavat logiikkaan tai rytmiin, joita rikkovat ilmaisulliset siveltimenvedot, valumat ja ajoittaiset viillot pinnan läpi. Kuvia ilmestyy lineaaristen matriisien sisälle tai niiden päälle siirrettyinä; teoksissa yhdistyvät ihmiskeho, psykologia ja arkkitehtuuri.</p><p>Toistuvat kuvalliset elementit, kuten shakkinappulat ja pääkallot, käsittelevät vallan, konfliktin, kuolevaisuuden ja muutoksen teemoja.</p><p>Markwith työskentelee kankaan ja tietokoneen välillä. Taiteilija on jo vuosia syöttänyt omia maalauksiaan tekoälylle, joka luo niistä uusia kuvia. Tämän jälkeen hän muokkaa yhteistyönä syntyneitä kuvia Photoshopissa. Nämä vääristyneet, kyberneettisesti muuntuneet visuaaliset kuvat tulostetaan paperille ja lisätään uusiin maalauksiin, joissa ne sulautuvat ekspressionistiseen sivellintyöskentelyyn, peittyvät sen alle tai hautautuvat sen kerroksiin. Maalaukset kehittyvät vähitellen. Sattumalla, spontaaniudella ja improvisaatiolla on keskeinen rooli jokaisessa työvaiheessa.</p><p>Valmis teos heijastaa maalaamisen käsintehtyä luonnetta ja korostaa taiteellisen toimijuuden merkitystä maailmassa, jota algoritmit hallitsevat yhä enemmän.</p><p>Miten tekoäly muokkaa tai vääristää taiteellista tarkoitusta? Mitä merkitsisi, jos tekoäly olisi aidosti luova? Markwith tarkastelee teknologian roolia luovassa työssä sekä siihen liittyviä laajempia filosofisia kysymyksiä, kuten tekijyyteen, etiikkaan ja kontrolliin liittyviä huolenaiheita digitaalisella aikakaudella.</p><p>Näyttelyn avajaiset järjestetään ke 4.3. klo 17 Malmitalon galleriassa.</p><p>Tervetuloa!</p>", "en": "<p>Where Painting Meets the Algorithm: Alex Markwith’s Intersections</p><p>Malmitalo Gallery presents Intersections, a solo exhibition by Helsinki-based visual artist Alex Markwith, on view March 5–28, 2026, at Cultural Center Malmitalo in Helsinki.</p><p>The opening reception will be held on Wednesday, March 4, from 5 to 7 PM.</p><p>Intersections explores the tension and overlap between digital and physical processes.</p><p>Markwith’s paintings are characterized by layered surfaces and textures suggesting damage, erosion and decay.</p><p>Geometric grids and linear structures are disrupted by expressive brushwork, drips, and incisions, creating dynamic compositions that combine abstraction and representation.</p><p>Recurring symbols such as chess pieces and skulls address themes of power, conflict, mortality, and transformation.</p><p>Central to Markwith’s practice is the dialogue between traditional painting and emerging technologies. At times, the artist feeds his own artwork to artificial intelligence to generate new images, which are digitally altered, printed, and physically incorporated into new paintings. The finished works celebrate the hand-made nature of painting and highlight the role of artistic agency in a world increasingly ruled by algorithms.</p><p>Alex Markwith is a visual artist based in Helsinki. Originally from the United States, he lived in New York City for ten years and holds a BFA from the Rhode Island School of Design. He is a member of the Finnish Painters’ Union, Helsinki Artists’ Association and Globe Art Point. His work has been shown in over 60 exhibitions internationally, including in Paris, Berlin, Helsinki, New York, Los Angeles, and Dubai and is included in the permanent collection of the Museum of Fine Arts, Houston, and numerous private collections.</p><p>The exhibition is produced in cooperation with Helsinki Artists’ Association with support from Taike and the City of Helsinki.</p><p>The exhibition opening will take place on Wednesday, March 4 at 5 PM at the Malmitalo Gallery. Welcome!</p>" }, "name": { "fi": "Alex Markwith: Intersections – Näyttely", "sv": "Alex Markwith: Intersections – Näyttely", "en": "Alex Markwith: Intersections – Näyttely" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67368", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299759/", "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299759/", "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299759/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494741, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:05.444411Z", "last_modified_time": "2026-02-05T13:14:05.444425Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781044.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494741/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:05.338428Z", "last_modified_time": "2026-03-20T01:13:24.659076Z", "date_published": null, "start_time": "2026-03-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7D0C88F1797356810D404B8CCB606D2A/EPiC_Elvis_Presley_in_Concert", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7D0C88F1797356810D404B8CCB606D2A/EPiC_Elvis_Presley_in_Concert", "en": "http://www.malmitalo.fi/en/events/event/7D0C88F1797356810D404B8CCB606D2A/EPiC_Elvis_Presley_in_Concert" }, "description": { "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita.</p><p>Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: ei tiedossa<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "EPiC: Elvis Presley in Concert – Kino Helios", "sv": "EPiC: Elvis Presley in Concert – Kino Helios", "en": "EPiC: Elvis Presley in Concert – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67368/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67367", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299697/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299697/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299697/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494740, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:05.026384Z", "last_modified_time": "2026-02-05T13:14:05.026402Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781043.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494740/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:04.902665Z", "last_modified_time": "2026-03-20T01:13:24.251043Z", "date_published": null, "start_time": "2026-03-04T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9DC36F68100AACF27D76FE9AB4C3A4C0/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9DC36F68100AACF27D76FE9AB4C3A4C0/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/9DC36F68100AACF27D76FE9AB4C3A4C0/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67367/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67170", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/teleks-tuuli-joka-tarttuu-siipiin-malmitalo-20873670/", "sv": "https://www.lippu.fi/event/teleks-tuuli-joka-tarttuu-siipiin-malmitalo-20873670/", "en": "https://www.lippu.fi/event/teleks-tuuli-joka-tarttuu-siipiin-malmitalo-20873670/" }, "description": null, "price": { "fi": "28 € / 22 €", "sv": "28 € / 22 €", "en": "28 € / 22 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494019, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:52.685649Z", "last_modified_time": "2025-12-03T09:12:52.685660Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494019/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:52.606760Z", "last_modified_time": "2026-03-20T01:13:21.910997Z", "date_published": null, "start_time": "2026-02-28T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Vastikään uuden Juopunut-singlen julkaissut Teleks valmistautuu uuteen aikakauteen.", "sv": "Teleks, som nyligen släppt en ny singelplatta, Juopunut, förbereder sig för en ny era.", "en": "Teleks, who recently released their new single Juopunut, is preparing for a whole new era." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8C56D80B75ED2440A3B4B20771DFFB6B/Teleks_Tuuli_joka_tarttuu_siipiin", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8C56D80B75ED2440A3B4B20771DFFB6B/Teleks_Tuuli_joka_tarttuu_siipiin", "en": "http://www.malmitalo.fi/en/events/event/8C56D80B75ED2440A3B4B20771DFFB6B/Teleks_Tuuli_joka_tarttuu_siipiin" }, "description": { "fi": "<p>Vastikään uuden Juopunut-singlen julkaissut Teleks valmistautuu uuteen aikakauteen.</p><p>Yhtye julkaisee tammikuussa 2026 uuden albumin Tuuli joka tarttuu siipiin, ja sen myötä Teleks lähtee kiertueelle ympäri Suomen.</p><p>Kevään kiertue saa vauhtia jo loppuvuodesta, kun bändi suuntaa tien päälle soittamaan keikkoja Etelästä aina Pohjoiseen saakka. Sekä syksyn että kevään konserteissa kuullaan tulevan albumin uusia kappaleita ja tietenkin Teleksin rakastetuimpia lauluja – kuten Siivet, Kotimatkalla, Tuulilasin nurkkaan, Tyttö joka katsoo merelle, Onnellisii loppuja ja Lukot sillankaiteeseen.</p><p>Yli kahdenkymmenen vuoden ajan suomalaisia musiikinystäviä koskettanut Teleks on uudistunut ja löytänyt uuden soinnin. Nykyisin yhtye koostuu Pepe Johanssonista, Janne Rajalasta ja Sampo Haapaniemestä.</p><p>Teleks on kotimaisen popmusiikin klassikoiden tekijä, jonka laulut ovat soineet radioissa, automatkoilla, juhlissa ja laulukirjoissa – lauluja, jotka ovat kasvaneet sukupolvien yhteisiksi tarinoiksi. Näitä kappaleita voi hyvällä syyllä kutsua ikivihreiksi.</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>Teleks, som nyligen släppt en ny singelplatta, Juopunut, förbereder sig för en ny era.</p><p>i januari 2026 släpper bandet ett nytt album, Tuuli joka tarttuu siipiin, och i och med detta åker Teleks på Finlandsturné.</p><p>Vårturnén drar i gång redan i slutet av året, då bandet reser iväg på spelningar från södra till norra Finland. Under såväl höstens som vårens konserter får man höra nya låtar från det kommande albumet och naturligtvis Teleks mest älskade sånger – såsom Siivet, Kotimatkalla, Tuulilasin nurkkaan, Tyttö joka katsoo merelle, Onnellisii loppuja och Lukot sillankaiteeseen.</p><p>Teleks, som har berört finska musikälskare i mer än tjugo år, har förnyat sig och hittat en ny klang. Idag består bandet av Pepe Johansson, Janne Rajala och Sampo Haapaniemi.</p><p>Teleks är en skapare av inhemska popmusikklassiker vars sånger har spelats i radio, under bilresor, på fester och i sångböcker – sånger som har vuxit till generationers gemensamma berättelser. Dessa låtar kan med god orsak kallas evergreens.</p><p>Längd: 1 h 15 min</p>", "en": "<p>Teleks, who recently released their new single Juopunut, is preparing for a whole new era.</p><p>In January 2026, the band will release a new album, Tuuli joka tarttuu siipiin, and will then celebrate by going on tour around Finland.</p><p>The spring tour will catch flight at the end of the year, when Teleks hits the road to play shows from the south all the way to the north. Both the autumn and spring concerts will feature new songs from the forthcoming album and of course the band’s best-loved songs, such as Siivet, Kotimatkalla, Tuulilasin nurkkaan, Tyttö joka katsoo merelle, Onnellisii loppuja and Lukot sillankaiteeseen.</p><p>Teleks has been delighting Finnish music lovers for more than twenty years and has now renewed itself, finding a new sound. Today the band includes Pepe Johansson, Janne Rajala and Sampo Haapaniemi.</p><p>Teleks is the author of many Finnish pop classics, with songs that have been played on the radio, on car journeys and at parties and included in songbooks – songs that have grown into stories shared by many generations. Songs that can truly be called evergreen.</p><p>Duration: 1 hour 15 min</p>" }, "name": { "fi": "Teleks: Tuuli joka tarttuu siipiin", "sv": "Teleks: Tuuli joka tarttuu siipiin", "en": "Teleks: Tuuli joka tarttuu siipiin" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67170/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67366", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21299572/", "sv": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21299572/", "en": "https://www.lippu.fi/event/kino-helios-kalevala-kullervon-tarina-malmitalo-21299572/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T09:13:57.354649Z", "last_modified_time": "2026-02-05T09:13:57.354666Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781041.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T09:13:57.210340Z", "last_modified_time": "2026-03-20T01:13:21.796883Z", "date_published": null, "start_time": "2026-02-28T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/24F0F8C7099BFDDFFD5147D64CB1FDE1/Kalevala_Kullervon_tarina_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/24F0F8C7099BFDDFFD5147D64CB1FDE1/Kalevala_Kullervon_tarina_16_", "en": "http://www.malmitalo.fi/en/events/event/24F0F8C7099BFDDFFD5147D64CB1FDE1/Kalevala_Kullervon_tarina_16_" }, "description": { "fi": "<p>Karjala 1100-luvulla. Kalervon ja Untamon välinen veljesviha johtaa kokonaisen kylän verilöylyyn.</p><p>Ainoa eloonjäänyt on Kalervon poikalapsi Kullervo, jonka Untamo päättää kasvattaa omanaan. Varttuessaan Kullervon raaka voima ja kapinallinen luonne tekevät hänestä vaarallisen, ja kyläläiset haluavat päästä hänestä lopullisesti eroon.</p><p>Kullervo etsii koko elämänsä olemassaololleen ja taidoilleen tarkoitusta. Kun menneisyyden tapahtumat paljastuvat hänelle, on hänen kohtalonsa selvä. Koston tie johdattaa Kullervon kohtaamaan Untamon ja pakottamaan hänet tilille syntiensä kanssa.</p><p>Kullervon kohtalo on Kalevalan kuuluisimpia. Antti J. Jokisen ohjauksessa isän ja pojan tarina herää vahvasti eloon Pohjois-Karjalan jylhissä kansallismaisemissa. Kullervon roolissa nähdään Elias Salonen ja Untamona Jussi-palkittu Eero Aho.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kalevala: Kullervon tarina (16) – Kino Helios", "sv": "Kalevala: Kullervon tarina (16) – Kino Helios", "en": "Kalevala: Kullervon tarina (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67366/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }