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=8
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=9", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=7" }, "data": [ { "id": "kulke:67553", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.284883Z", "last_modified_time": "2025-12-10T11:12:46.284899Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:46.183470Z", "last_modified_time": "2026-03-20T01:13:09.457341Z", "date_published": null, "start_time": "2026-02-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67553/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67558", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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": 1494298, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:41.857565Z", "last_modified_time": "2025-12-23T09:13:41.857581Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781716.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494298/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-23T09:13:41.734644Z", "last_modified_time": "2026-03-20T01:13:09.059460Z", "date_published": null, "start_time": "2026-02-18T08:00:00Z", "end_time": "2026-02-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/748629EB3C58C3CFE6B89B012B38C423/Satuolennon_ovi_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/748629EB3C58C3CFE6B89B012B38C423/Konstverkstaden_Satuolennon_ovi", "en": "http://www.malmitalo.fi/en/events/event/748629EB3C58C3CFE6B89B012B38C423/Art_workshop_door_for_a_fairytale_creature" }, "description": { "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Lumikin taikametsässä asuu monenlaisia satuolentoja! Tässä pajassa askarrellaan ovia, jotka vievät näiden olentojen kotiin. Mikä satuolento sinun ovesi takana asustaa?</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>I Snövits magiska skog bor mångahanda sagovarelser! I denna verkstad pysslar man dörrar som leder in till dessa varelsers hem. Vilken sagovarelse bor bakom din dörr?</p><p>Verkstadens språk: finska <br>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>Snow White's magical forest is home to a many creatures and critters from fairytales! In this workshop, you’ll get to create a door leading to the homes of these creatures. Which fairytale creature lives behind your door?</p><p>Workshop language: Finnish<br>Free entry!</p>" }, "name": { "fi": "Satuolennon ovi -taidepaja", "sv": "Konstverkstaden Satuolennon ovi", "en": "Art workshop: door for a fairytale creature" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67558/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67552", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494010, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:07.487439Z", "last_modified_time": "2025-12-03T08:13:07.487454Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781705.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494010/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-03T08:13:07.409478Z", "last_modified_time": "2026-03-20T01:13:08.633021Z", "date_published": null, "start_time": "2026-02-17T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!", "sv": "Filmen som baserar sig på världens mest sålda videospel!", "en": "A film based on the world's best-selling video game Minecraft, starring." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/798575C7282F4A11AEFE5FDD7A530429/Talvilomaleffa_Minecraft-elokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/798575C7282F4A11AEFE5FDD7A530429/Sportlovsbio_A_Minecraft_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/798575C7282F4A11AEFE5FDD7A530429/Winter_holiday_movie_A_Minecraft_Movie_7_" }, "description": { "fi": "<p>Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!</p><p>Päätähtinä nähdään Jason Momoa ja Jack Black. Pelin ensimmäisen näytellyn valkokangassovituksen ohjauksesta vastaa Jared Hess.</p><p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen. Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa. Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Kesto: 101 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på världens mest sålda videospel!</p><p>Jason Momoa och Jack Black ses i huvudrollerna. Den här första filmatiseringen av spelet med skådespelare är regisserad av Jared Hess.</p><p>Välkommen till Minecraft-världen, där kreativiteten inte bara hjälper till med byggandet, utan den är en viktig överlevnadsfärdighet! Fyra karaktärer som känner sig utanför – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) och Dawn (Brooks) – kämpar med vardagliga problem när de plötsligt förs genom en mystisk portal till Överjorden: ett märkligt kubland där fantasin flödar fritt. För att överleva och komma hem måste de lära sig att styra den här världen (och ytterligare skydda den från skurkar som piglins och zombies) när de ger sig ut på ett magiskt äventyr med den oväntade mästerbyggaren Steve (Black). Längs vägen måste alla fem hitta modet att arbeta tillsammans för att utnyttja sina egna unika kreativa talanger... just de färdigheter som de behöver för att lyckas även i den verkliga världen.</p><p>Längd: 101 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>A film based on the world's best-selling video game Minecraft, starring.</p><p>Jason Momoa and Jack Black! Jared Hess directed the first live action screen adaptation of the game.</p><p>Welcome to the world of Minecraft, where creativity is not just a building tool, it's an essential survival skill! Four characters who feel like outsiders – Garrett ‘The Garbage Man’ Garrison (Momoa), Henry (Hansen), Natalie (Myers) and Dawn (Brooks) – are struggling with their everyday problems when they are suddenly whisked through a mysterious portal to the Overworld: a strange cube land where imagination runs wild. To make it back home, they must learn to control this world (and protect it from bad guys like piglins and zombies) as they head off on a magical adventure with surprising master builder Steve (Black). Along the way, the five must find the courage to work together to harness their own unique creative talents... the very skills they need to succeed back in the real world too.</p><p>Duration: 101 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Minecraft-elokuva (7)", "sv": "Sportlovsbio: A Minecraft Movie (7)", "en": "Winter holiday movie: A Minecraft Movie (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67551", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494009, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:07.174606Z", "last_modified_time": "2025-12-03T08:13:07.174623Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781704.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494009/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-03T08:13:07.084116Z", "last_modified_time": "2026-03-20T01:13:08.503019Z", "date_published": null, "start_time": "2026-02-17T11: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": "Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!", "sv": "Filmen som baserar sig på världens mest sålda videospel!", "en": "A film based on the world's best-selling video game Minecraft, starring." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93E7CE0104775E277D522255EF394323/Talvilomaleffa_Minecraft-elokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/93E7CE0104775E277D522255EF394323/Sportlovsbio_A_Minecraft_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/93E7CE0104775E277D522255EF394323/Winter_holiday_movie_A_Minecraft_Movie_7_" }, "description": { "fi": "<p>Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!</p><p>Päätähtinä nähdään Jason Momoa ja Jack Black. Pelin ensimmäisen näytellyn valkokangassovituksen ohjauksesta vastaa Jared Hess.</p><p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen. Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa. Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Kesto: 101 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på världens mest sålda videospel!</p><p>Jason Momoa och Jack Black ses i huvudrollerna. Den här första filmatiseringen av spelet med skådespelare är regisserad av Jared Hess.</p><p>Välkommen till Minecraft-världen, där kreativiteten inte bara hjälper till med byggandet, utan den är en viktig överlevnadsfärdighet! Fyra karaktärer som känner sig utanför – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) och Dawn (Brooks) – kämpar med vardagliga problem när de plötsligt förs genom en mystisk portal till Överjorden: ett märkligt kubland där fantasin flödar fritt. För att överleva och komma hem måste de lära sig att styra den här världen (och ytterligare skydda den från skurkar som piglins och zombies) när de ger sig ut på ett magiskt äventyr med den oväntade mästerbyggaren Steve (Black). Längs vägen måste alla fem hitta modet att arbeta tillsammans för att utnyttja sina egna unika kreativa talanger... just de färdigheter som de behöver för att lyckas även i den verkliga världen.</p><p>Längd: 101 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>A film based on the world's best-selling video game Minecraft, starring.</p><p>Jason Momoa and Jack Black! Jared Hess directed the first live action screen adaptation of the game.</p><p>Welcome to the world of Minecraft, where creativity is not just a building tool, it's an essential survival skill! Four characters who feel like outsiders – Garrett ‘The Garbage Man’ Garrison (Momoa), Henry (Hansen), Natalie (Myers) and Dawn (Brooks) – are struggling with their everyday problems when they are suddenly whisked through a mysterious portal to the Overworld: a strange cube land where imagination runs wild. To make it back home, they must learn to control this world (and protect it from bad guys like piglins and zombies) as they head off on a magical adventure with surprising master builder Steve (Black). Along the way, the five must find the courage to work together to harness their own unique creative talents... the very skills they need to succeed back in the real world too.</p><p>Duration: 101 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Minecraft-elokuva (7)", "sv": "Sportlovsbio: A Minecraft Movie (7)", "en": "Winter holiday movie: A Minecraft Movie (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67551/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67557", "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: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:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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": 1494297, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T08:13:50.518364Z", "last_modified_time": "2025-12-23T08:13:50.518380Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781713.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494297/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-23T08:13:50.420338Z", "last_modified_time": "2026-03-20T01:13:08.261236Z", "date_published": null, "start_time": "2026-02-17T08:00:00Z", "end_time": "2026-02-17T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7489592FBFDFCB3D19AC1ECF95800FEB/Pelihahmopaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7489592FBFDFCB3D19AC1ECF95800FEB/Spelfigursverkstad", "en": "http://www.malmitalo.fi/en/events/event/7489592FBFDFCB3D19AC1ECF95800FEB/Game_character_workshop_" }, "description": { "fi": "<p>Maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Minecraft-elokuvan inspiroimana pääset tässä pajassa muovailemaan oman pelihahmon. Millaisesta pelimaailmasta sinun hahmosi on saapunut?</p><p>Työpajan kieli: suomi</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>Inspirerad av Minecraft-filmen kan du i denna verkstad modellera en egen spelfigur. Vilken spelvärld kommer din figur från?</p><p>Verkstadens språk: finska<br>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>Inspired by the Minecraft movie, this workshop lets you sculpt your own character. What game world did your character come from?</p><p>Workshop language: Finnish<br>Free entry!</p>" }, "name": { "fi": "Pelihahmopaja", "sv": "Spelfigursverkstad", "en": "Game character workshop" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67557/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67354", "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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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-21223605/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223605/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223605/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T10:12:54.476048Z", "last_modified_time": "2026-01-20T10:12:54.476063Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781023.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T10:12:54.371225Z", "last_modified_time": "2026-03-20T01:13:07.283295Z", "date_published": null, "start_time": "2026-02-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "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/6612C03477D614101FEC774B6865C9FD/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6612C03477D614101FEC774B6865C9FD/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/6612C03477D614101FEC774B6865C9FD/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:67354/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67353", "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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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-kanakani-ja-murmelin-salaisuus-malmitalo-21222531/", "sv": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222531/", "en": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222531/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494558, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T08:12:49.750233Z", "last_modified_time": "2026-01-20T08:12:49.750247Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781022.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494558/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T08:12:49.646096Z", "last_modified_time": "2026-03-20T01:13:06.194915Z", "date_published": null, "start_time": "2026-02-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F60D4201E762CDEF21CF71F8E4341DC5/Kanakani_ja_murmelin_salaisuus_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F60D4201E762CDEF21CF71F8E4341DC5/Kanakani_ja_murmelin_salaisuus_7_", "en": "http://www.malmitalo.fi/en/events/event/F60D4201E762CDEF21CF71F8E4341DC5/Kanakani_ja_murmelin_salaisuus_7_" }, "description": { "fi": "<p>Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika.</p><p>Kanakani ja hänen ystävänsä, Meri ja Hugo, ovat keränneet mainetta kuuluisina seikkailijoina. Uusi seikkailu odottaa heitä, kun Rollo palaa kuvioihin mukanaan mystinen esine. Kanakanin ottoisä, kuningas Kaarle, huomaa esineeseen kaiverretun symbolin, joka liittyy tarunomaiseen murmeliin.</p><p>Kuningas kertoo tarinan murmelista, jolla on taaksepäin katsovat kasvot ja kannustaa ryhmää etsintäretkelle – murmeli on löydettävä ennen kuin joku ehtii käyttää sen maagista voimaa. Seikkailu saa yllättävän käänteen, kun Kanakani ystävineen huomaa, etteivät he ole ainoita, jotka etsivät tätä muinaista voimaesinettä.</p><p>Matkansa varrella he kohtaavat toinen toistaan erikoisempia esteitä ja uusia, värikkäitä hahmoja. Kuka löytää murmelin ensimmäisenä ja saa käyttöönsä sen valtavan voiman – ja mitä siitä seuraa?</p><p>Ikäraja: 7<br>Kesto: 89 min<br>Ensi-ilta: 23.01.2026<br>Elokuva on puhuttu suomeksi</p>" }, "name": { "fi": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "sv": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "en": "Kanakani ja murmelin salaisuus (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67353/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67700", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": 1494014, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:11.851201Z", "last_modified_time": "2025-12-03T08:13:11.851218Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782440.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494014/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:11.776653Z", "last_modified_time": "2026-03-20T01:13:05.842427Z", "date_published": null, "start_time": "2026-02-14T12:00:00Z", "end_time": "2026-02-14T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Malmin sydän on yhteisöllinen ja kaikille avoin tapahtuma, jossa kutsumme kaupunkilaiset osallistuman yhteisen, kaikkia ilahduttavan yhteisteoksen luomiseen Ala-Malmin torilla.", "sv": "Malmin sydän är ett evenemang som är öppet för allmänheten och i vilket vi bjuder in stadsborna att delta i skapandet av ett kollektivt konstverk på Nedre Malms torg som ger glädje åt alla.", "en": "Heart of Malmi is a community event open to all, inviting city residents to participate in the creation of a collective work of art that brings joy to all at the Ala-Malmi Square." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1733942D0D5DB152D0E29EADBDBF6287/Malmin_Sydan_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1733942D0D5DB152D0E29EADBDBF6287/Malms_hjarta", "en": "http://www.malmitalo.fi/en/events/event/1733942D0D5DB152D0E29EADBDBF6287/Malmin_sydan_Heart_of_Malmi" }, "description": { "fi": "<p>Malmin sydän on yhteisöllinen ja kaikille avoin tapahtuma, jossa kutsumme kaupunkilaiset osallistuman yhteisen, kaikkia ilahduttavan yhteisteoksen luomiseen Ala-Malmin torilla.</p><p>Vaikka ulkona on kylmä, Malmin sydän lämmittää mieltä!</p><p>Malmin sydän -tapahtumassa rakennetaan yhteisöllinen jääteos. Osallistu jäädyttämällä kotona omat jääpalasi jäädyttämällä litra vettä esim. maitotölkissä. Voit värjätä veden vesiväreillä tai koristella jääpalan kukilla, tai millä tahansa muulla ympäristöystävällisellä tavalla. Tuo jääpala Ala-Malmin torille klo 14-17 välisenä aikana. Rakentamista organisoi ohjaaja, joka katsoo että kaikkien palat pääsevät mukaan ja rakentaminen tapahtuu turvallisesti.</p><p>Jääteoksen lisäksi ohjelmassa on Iltakorva, missä asukkaat voivat tulla juttelemaan Helsingin kaupungin työntekijöiden kanssa matalalla kynnyksellä. Voit tulla kertomaan huolesi tai esittää kysymyksiä.</p><p>Tapahtumassa tarjoillaan myös lämmintä mehua.</p><p>Vapaa pääsy</p>", "sv": "<p>Malmin sydän är ett evenemang som är öppet för allmänheten och i vilket vi bjuder in stadsborna att delta i skapandet av ett kollektivt konstverk på Nedre Malms torg som ger glädje åt alla.</p><p>Det är enkelt att delta. Du kan göra din egen isbit genom att frysa in en liter vatten i till exempel en mjölkkartong. Om du vill kan du dekorera isbiten med färger eller naturmaterial, såsom blommor eller kottar – alla naturvänliga dekorationer är välkomna!<br> <br>Ta med dig isbiten till Nedre Malms torg på vändagen, då vi samlas för att bygga isslottet. Bygget handleds och samordnas av en separat handledare som ser till att bygget utförs på ett säkert sätt och i en trevlig atmosfär.</p><p>Fritt inträde</p>", "en": "<p>Heart of Malmi is a community event open to all, inviting city residents to participate in the creation of a collective work of art that brings joy to all at the Ala-Malmi Square.</p><p>Participation is easy. You can make your own ice cube by freezing a litre of water in a milk carton, for example. If you wish, you can decorate the ice cube with colours or natural materials, such as flowers or cones - all nature-friendly decorations are welcome!<br> <br>Bring your ice cube to Ala-Malmi Square on Valentine’s Day, when we gather to build an ice castle. Building will be guided and coordinated by a separate leader, who ensures that the work runs safely and in a nice spirit.<br> <br>An atmospheric and participatory event is suitable for everyone. Welcome to create a common symbol of love for Malmi!</p><p>Free entry</p>" }, "name": { "fi": "Malmin Sydän", "sv": "Malms hjärta", "en": "Malmin sydän – Heart of Malmi" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67700/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67480", "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/olavi-virta-musiikkinaeytelmae-malmitalo-20914963/", "sv": "https://www.lippu.fi/event/olavi-virta-musiikkinaeytelmae-malmitalo-20914963/", "en": "https://www.lippu.fi/event/olavi-virta-musiikkinaeytelmae-malmitalo-20914963/" }, "description": null, "price": { "fi": "40,90€/38,90€", "sv": "40,90€/38,90€", "en": "40,90€/38,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494049, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T10:12:41.077465Z", "last_modified_time": "2025-12-04T10:12:41.077481Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781482.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494049/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T10:12:41.011176Z", "last_modified_time": "2026-03-20T01:13:04.077262Z", "date_published": null, "start_time": "2026-02-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": "Mies ja ääni – Olavi Virta on musiikkinäytelmä laulajalegendasta, jonka vaikutus ja perintö näkyvät edelleen suomalaisessa iskelmäkulttuurissa.", "sv": "Mies ja ääni – Olavi Virta är en musikal om sånglegenden vars inverkan och arv fortfarande syns i den finländska shlagerkulturen", "en": "Mies ja ääni – Olavi Virta is a musical play about the legendary singer whose influence and legacy are still visible in Finnish popular song culture." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A3992B1839E598EC0AB528777D1DD997/Mies_ja_aani_Olavi_Virta_-musiikkinaytelma", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A3992B1839E598EC0AB528777D1DD997/Musikalen_Mies_ja_aani_Olavi_Virta", "en": "http://www.malmitalo.fi/en/events/event/A3992B1839E598EC0AB528777D1DD997/Mies_ja_aani_Olavi_Virta_musical_play" }, "description": { "fi": "<p>Mies ja ääni – Olavi Virta on musiikkinäytelmä laulajalegendasta, jonka vaikutus ja perintö näkyvät edelleen suomalaisessa iskelmäkulttuurissa.</p><p>Olavi Virran värikäs elämä iloineen ja suruineen sekä upeine lauluineen on kuin luotu teatterin lavalle, ja Olan elämän eri vaiheita tulkitsevat tangokuninkaat Matti Korkiala ja Teijo Lindström. Valovoimaisen kaksikon lisäksi rooleissa nähdään J. Eskelinen, Katri Rehnström ja Aki Mäki.</p><p>Musiikista vastaa Legenda-orkesteri Seppo Rehnströmin johdolla. Kipparikvartetti nähdään myös lavalla!</p><p>Käsikirjoittaja: Nina Linnovaara<br>Ohjaus: Tuomo Salmela<br>Tuottaja: Viihdeohjelmat Oy</p><p>Kesto: 2 t, sis. 30 min väliajan</p>", "sv": "<p>Mies ja ääni – Olavi Virta är en musikal om sånglegenden vars inverkan och arv fortfarande syns i den finländska shlagerkulturen</p><p>Olavi Virtas färgstarka liv, dess glädjeämnen, sorger och imponerande sånger är som skapat för teaterscenen, och de olika skedena i Olas liv tolkas av tangokungarna Matti Korkiala och Teijo Lindström. Utöver den lysande duon uppträder även J. Eskelinen, Katri Rehnström och Aki Mäki.</p><p>Orkestern Legenda under ledning av Seppo Rehnström ansvarar för musiken. Skepparkvartetten ses också på scenen!</p><p>Manusförfattare: Nina Linnovaara<br>Regi: Tuomo Salmela<br>Producent: Viihdeohjelmat Oy</p><p>Längd: 2 h, inklusive en paus på 30 min.</p>", "en": "<p>Mies ja ääni – Olavi Virta is a musical play about the legendary singer whose influence and legacy are still visible in Finnish popular song culture.</p><p>Olavi Virta's colourful life with its many joys and sorrows and wonderful songs seems to be made for the theatre stage, and the different stages of Ola's life are interpreted by the Tango Kings Matti Korkiala and Teijo Lindström. In addition to this star duo, the show will also feature J. Eskelinen, Katri Rehnström and Aki Mäki.</p><p>The music will be provided by the Legenda orchestra under the direction of Seppo Rehnström. Kipparikvartetti will also visit the stage!</p><p>Screenwriter: Nina Linnovaara<br>Directed by: Tuomo Salmela<br>Producer: Viihdeohjelmat Oy</p><p>Duration: 2 h, incl. a 30-min intermission</p>" }, "name": { "fi": "Mies ja ääni – Olavi Virta -musiikkinäytelmä", "sv": "Musikalen Mies ja ääni – Olavi Virta", "en": "Mies ja ääni – Olavi Virta musical play" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67480/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67352", "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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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/kino-helios/kino-helios-kalevala-kullervon-tarina-4056859/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kalevala-kullervon-tarina-4056859/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kalevala-kullervon-tarina-4056859/" }, "description": null, "price": { "fi": "9€", "sv": "9€", "en": "9€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494550, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-19T14:12:58.951826Z", "last_modified_time": "2026-01-19T14:12:58.951842Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781020.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494550/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-19T14:12:58.847654Z", "last_modified_time": "2026-03-20T01:13:03.945936Z", "date_published": null, "start_time": "2026-02-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": "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/5D073A0D7AC8BFA5B7F5A78F57226F5D/Kalevala_Kullervon_tarina_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5D073A0D7AC8BFA5B7F5A78F57226F5D/Kalevala_Kullervon_tarina_16_", "en": "http://www.malmitalo.fi/en/events/event/5D073A0D7AC8BFA5B7F5A78F57226F5D/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:67352/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67351", "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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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-hamnet-malmitalo-21223709/", "sv": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223709/", "en": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223709/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494566, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T12:12:55.679496Z", "last_modified_time": "2026-01-20T12:12:55.679509Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781019.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494566/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T12:12:55.576322Z", "last_modified_time": "2026-03-20T01:13:03.798356Z", "date_published": null, "start_time": "2026-02-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": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFDB9F943D7A3875182022A67AC0B20A/Hamnet_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EFDB9F943D7A3875182022A67AC0B20A/Hamnet_12_", "en": "http://www.malmitalo.fi/en/events/event/EFDB9F943D7A3875182022A67AC0B20A/Hamnet_12_" }, "description": { "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Hamnet (12) – Kino Helios", "sv": "Hamnet (12) – Kino Helios", "en": "Hamnet (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67351/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67479", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmijazz-rinneradio-malmitalo-20929903/", "sv": "https://www.lippu.fi/event/malmijazz-rinneradio-malmitalo-20929903/", "en": "https://www.lippu.fi/event/malmijazz-rinneradio-malmitalo-20929903/" }, "description": null, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493879, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T13:12:36.366891Z", "last_modified_time": "2025-11-24T13:12:36.366905Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781480.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493879/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T13:12:36.279385Z", "last_modified_time": "2026-03-20T01:13:03.058513Z", "date_published": null, "start_time": "2026-02-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": "MalmiJazzin lavalla nähdään tällä kertaa legendaarinen RinneRadio, joka on julkaissut uutta materiaalia.", "sv": "På MalmiJazz-scenen får vi denna gång se legendariska RinneRadio, som har gett ut nytt material.", "en": "This time, the MalmiJazz stage will feature the legendary RinneRadio, which has released new material." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8F9310A48AC6D726242885E97FB54F3E/RinneRadio", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8F9310A48AC6D726242885E97FB54F3E/RinneRadio", "en": "http://www.malmitalo.fi/en/events/event/8F9310A48AC6D726242885E97FB54F3E/RinneRadio" }, "description": { "fi": "<p>MalmiJazzin lavalla nähdään tällä kertaa legendaarinen RinneRadio, joka on julkaissut uutta materiaalia.</p><p>Uudesta RinneRadio-albumista 4/4 saatiin esimakua jo hyvän vastaanoton saaneella singlellä Enchantment, joka julkaistiin 22.8. 4/4 tuo edellisen, ambient-tunnelmaisen Balladiumin jälkeen esille pitkästä aikaa bändin sen puolen, jota klubikansa rakastaa. Mukana on perusbändin lisäksi useita tuttuja yhteistyökumppaneita ja muusikoita.</p><p>– Nimensä mukaisesti kyseessä on levy, jonka keskiössä on rytmi – koskettavia puhallinmelodioita ja ambient- tunnelmia unohtamatta, kertoo Tapani Rinne.</p><p>– Levyn tematiikkaan ja tekemiseen on vaikuttanut vahvasti se, mitä ympärillämme ja maailmassa tapahtuu. Musiikki kommentoi aikaansa, ja instrumentaalimusiikkikin on tavallaan kantaaottavaa, Tapani jatkaa.</p><p>Kaksi levyn biiseistä – sinkku Enchantment sekä Raakadataa – on syntynyt bändin ex-jäsenen, drum & bass- tuottaja Mufflerin kanssa. House-poljentoa löytyy kappaleista Haze sekä Common Times, joista jälkimmäinen kallistuu ambientin tunnelmansa puolesta jo dub housen puolelle. Säännön vahvistavana poikkeuksena levyltä löytyy yksi kappale, joka ei kulje tahtilajissa 4/4. Kappale onkin nimetty ytimekkäästi 6/4. Aurinkoinen Whale on syntynyt kysytyn tuottajan Alpo Nummelinin kanssa. Yleisenä laaduntarkkailijana ja ylimääräisenä korvaparina projektissa on ollut vahvasti mukana Pauli Saastamoinen, bändin monivuotinen “studiojäsen”.</p><p>Ylipäätään RinneRadio on koko olemassaolonsa aikana vältellyt leimautumista johonkin tiettyyn kapeaan elektronimusiikin tyylisuuntaan. Yhteisenä nimittäjänä on bändin oma soundi, jota voinee paremman nimen puutteessa kutsua teknojazziksi tai ambientjazziksi. Se sykkii yhtä aikaa syvällisesti ja vangitsevasti – se on kokonaisvaltaista, herättävää ja liekehtivää. Yhtyeen sointi hehkuu edelleen sähkönsinistä ja auringonoranssia – kutsuen elämään hetkessä, yhdessä.</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>På MalmiJazz-scenen får vi denna gång se legendariska RinneRadio, som har gett ut nytt material.</p><p>Vi fick en försmak av det nya RinneRadio-albumet 4/4 genom singeln Enchantment, som kom ut den 22 augusti och fick ett positivt mottagande. Efter det föregående albumet Balladium, som bjöd på ambient-stämning, lyfter 4/4 nu för första gången på länge fram den sida av bandet som klubbfolket gillar. Förutom bandet självt medverkar flera kända samarbetspartner och musiker.<br>- Som namnet antyder är det här ett album där rytmen står i centrum – utan att glömma de berörande blåsinstrumentmelodierna och ambient-stämningen, berättar Tapani Rinne.</p><p>– Skapandet av albumet och dess tematik har i hög grad påverkats av det som sker omkring oss och ute i världen. Musiken kommenterar sin tid, och även instrumentalmusik tar på sätt och vis ställning, fortsätter Tapani.</p><p>Två av låtarna på albumet – singeln Enchantment och Raakadataa – har skapats tillsammans med en tidigare bandmedlem, drum & bass-producenten Muffler. House-rytm finns i låtarna Haze och Common Times, varav den senare genom sin ambient-stämning lutar lite mot dub house. Som ett undantag som bekräftar regeln finns en låt på albumet som inte går i 4/4-takt. Låten heter kort och gott 6/4. Soliga Whale skapades i samarbete med den efterfrågade producenten Alpo Nummelin. Bandets mångåriga ”studiomedlem” Pauli Saastamoinen har varit med i projektet som allmän kvalitetskontrollant och ett extra par öron.</p><p>Allmänt taget har RinneRadio under hela sin existens undvikit att stämplas som ett band inom någon viss stilnisch inom elektronisk musik. Den gemensamma nämnaren är bandets eget sound, som i brist på bättre namn skulle kunna kallas techno-jazz eller ambient jazz. Det pulserar både djupt och fängslande – det är holistiskt, suggestivt och flammande. Bandets sound glöder fortfarande i elektriskt blått och solskensorange – och kallar oss att leva i stunden, tillsammans.</p><p>Längd: 1 h 15 min.</p>", "en": "<p>This time, the MalmiJazz stage will feature the legendary RinneRadio, which has released new material.</p><p>The public received a taste of the new RinneRadio album 4/4 through the well-received single Enchantment, released on 22 August. Following the band’s previous ambient album, Balladium, 4/4 once again, after a long time, brings out the side of the band that clubgoers love. In addition to the core band, the concert will feature a number of well-known collaborators and musicians.</p><p>“As the name suggests, this is an album with rhythm at its core, without forgetting the touching wind instrument melodies and ambience,” says Tapani Rinne.</p><p>“The themes and the making of the album were strongly influenced by what is happening around us and in the world. The music is a commentary on its time, and the instrumental music is also, in a way, a statement,” Tapani continues.</p><p>Two of the songs on the album – the single Enchantment and Raakadataa – were written with the band’s ex-member, drum & bass producer Muffler. There are house rhythms in the songs Haze and Common Times, the latter of which has an ambient feel that makes it lean towards dub house. As the exception that proves the rule, there is one song on the album that is not in 4/4 time. Consequently, the song is succinctly titled 6/4. The sunny Whale was created together with the popular producer Alpo Nummelin. Pauli Saastamoinen, a ‘studio member’ of the band for many years, has been heavily involved in the project as a general quality monitor and an extra pair of ears.</p><p>In general, throughout its existence, RinneRadio has refused to identify with any particular narrow genre of electronic music. The common denominator is the band’s own sound, which, for lack of a better name, could be called techno-jazz or ambient jazz. It pulsates deeply and captivatingly at the same time – it is holistic, stirring and flaming. The band’s sound continues to glow electric blue and sunshine orange – inviting you to live in the moment, together.</p><p>Duration: 1 hour 15 min</p>" }, "name": { "fi": "RinneRadio – MalmiJazz", "sv": "RinneRadio – MalmiJazz", "en": "RinneRadio – MalmiJazz" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67433", "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": 1494008, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:06.668311Z", "last_modified_time": "2025-12-03T08:13:06.668333Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781260.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494008/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:06.573650Z", "last_modified_time": "2026-03-20T01:13:02.913981Z", "date_published": null, "start_time": "2026-02-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.", "sv": "Aldrig ensam berättar om tiden strax före utbrottet av andra världskriget, då man lever i en mörk tid i Europa och Finland tar emot flyktingar från Tyskland och Österrike.", "en": "Never Alone tells the story of the eve of World War II, when Europe is in a dark time and Finland accepts refugees from Germany and Austria." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/10DC9920BBAFE5BF5DB1C80BA4DDB108/Yleison_suosikit_Ei_koskaan_yksin_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/10DC9920BBAFE5BF5DB1C80BA4DDB108/Publikens_favoriter_Aldrig_ensam_12_", "en": "http://www.malmitalo.fi/en/events/event/10DC9920BBAFE5BF5DB1C80BA4DDB108/Audience_Favourites_Never_Alone_12_" }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Ei koskaan yksin on tarina rohkeudesta, empatiasta ja yksilön voimasta vaikuttaa historian kulkuun. Se on koskettava kertomus toisen maailmansodan synkistä vuosista, jolloin Eurooppa horjui kaaoksen partaalla ja Suomi sai osakseen pakolaisvirran Saksasta ja Itävallasta.</p><p>Tarinan keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller, joka omistaa elämänsä inhimilliselle auttamiselle. Hän taistelee epätoivoisesti pelastaakseen Suomeen paenneet ihmiset varmalta kuolemalta keskitysleireillä, mutta joutuu samalla kohtaamaan aikansa raadolliset poliittiset realiteetit.</p><p>Kesto: 85 min<br>Ikäraja: K-12<br>Vapaa pääsy!</p>", "sv": "<p>Aldrig ensam berättar om tiden strax före utbrottet av andra världskriget, då man lever i en mörk tid i Europa och Finland tar emot flyktingar från Tyskland och Österrike.</p><p>I filmens centrum står den finländske affärsmannen och välgöraren Abraham Stiller som hjälper flyktingar. Han gör allt han kan för att hjälpa de judiska flyktingar som kommer till Finland och som skickas till koncentrationslägret i Auschwitz. Filmen berättar deras historia.<br>Regi: Klaus Härö<br>I rollerna: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Längd: 85 min.<br>Språk: finska, textning: svenska</p>", "en": "<p>Never Alone tells the story of the eve of World War II, when Europe is in a dark time and Finland accepts refugees from Germany and Austria.</p><p>At the heart of helping refugees is Finnish businessman and philanthropist Abraham Stiller. He will do everything he can to help Jewish refugees who have come to Finland and are being handed over from Finland to a concentration camp in Auschwitz. The film tells their story.<br>Director: Klaus Härö<br>Cast: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Duration: 85 min<br>Language: Finnish, subtitles: Swedish</p>" }, "name": { "fi": "Yleisön suosikit: Ei koskaan yksin (12)", "sv": "Publikens favoriter: Aldrig ensam (12)", "en": "Audience Favourites: Never Alone (12)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67476", "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-4044931", "sv": "https://www.lippu.fi/eventseries/name-4044931", "en": "https://www.lippu.fi/eventseries/name-4044931" }, "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": 1494048, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T10:12:40.692143Z", "last_modified_time": "2025-12-04T10:12:40.692160Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781452.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494048/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T10:12:40.574581Z", "last_modified_time": "2026-03-20T01:13:02.159876Z", "date_published": null, "start_time": "2026-02-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": "Knucklebone Oscar on lahja rokkenroll -hulluudelle ja bluestaituruudelle. Kitaramiehen tavaramerkkejä on energiset keikat ja ultraviihdyttävä lavashow.", "sv": "Knucklebone Oscar är en gåva till rock’n’roll-galenskap och bluesvirtuositet. Energiska spelningar och en ultraunderhållande scenshow hör till gitarrmannens varumärke", "en": "Knucklebone Oscar is a gift to the rock’n’roll craze and the blues industry. The guitarist's trademarks are his energetic gigs and ultra-entertaining stage shows." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F529202E119D90F48CBDE4F78D6EAB5B/Roots-musiikin_evoluutio_Knucklebone_Oscar", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F529202E119D90F48CBDE4F78D6EAB5B/Roots-musikens_evolution_Knucklebone_Oscar", "en": "http://www.malmitalo.fi/en/events/event/F529202E119D90F48CBDE4F78D6EAB5B/The_evolution_of_roots_music_Knucklebone_Oscar" }, "description": { "fi": "<p>Knucklebone Oscar on lahja rokkenroll -hulluudelle ja bluestaituruudelle. Kitaramiehen tavaramerkkejä on energiset keikat ja ultraviihdyttävä lavashow.</p><p>Yli 30 vuotisen uransa aikana Oscar on edustanut Suomea bluesin MM -kisoissa Memphisissä, rundannut Kiinassa, kolunnut Europan klubit laidasta laitaan, sekoillut UMK:ssa kuuman burleskishown parissa, esittänyt raakaa gospelia Tuomari Nurmion kanssa ja tähdittänyt ‘Knucklebonehead’ -teatterielokuvaa ja monia tv-ohjelmia. Oscar has done and seen it all!</p><p>Miehen viimeisin julkaisu on \"puuskutan hikoilen\" saunasinkku & video 20 000 hz -yhtyeen kanssa. 2024 julkaistiin juhla -albumi \"Uncle Knuckle\". Tämä erikoislaatuinen albumi täyttää tiukimmatkin Knucklebone -vaatimukset!</p><p>Knucklebone Oscar on omimmillaan oman bändinsä kanssa, laulajana ja armoitettuna kitaranriivaajana. Livenä repertuaarissa on voimakasta rytmibluesia, rokkenrollia ja riemastuttavaa lava-actionia monihenkisen bändin kanssa. Oscar on elämänsä vedossa!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>", "sv": "<p>Knucklebone Oscar är en gåva till rock’n’roll-galenskap och bluesvirtuositet. Energiska spelningar och en ultraunderhållande scenshow hör till gitarrmannens varumärke</p><p>Under sin över 30 år långa karriär har Oscar representerat Finland i VM-tävlingen i blues i Memphis, haft spelningar runt om i Kina, finkammat de europeiska klubbarna, deltagit i UMK (Uuden musiikin kilpailu) med en het burleskshow, framfört rå gospelmusik med Tuomari Nurmio och spelat huvudrollen i teaterfilmen ”Knucklebonehead” och i flera tv-program. Oscar has done and seen it all!</p><p>Mannens senaste ”Puuskutan hikoilen” bastusingel & video med bandet 20 000 hz. Jubileumsalbumet ”Uncle Knuckle” publicerades 2024. Detta speciella album uppfyller även de strängaste Knucklebone-kraven!</p><p>Knucklebone Oscar är som bäst med sitt eget band, som sångare och benådad gitarrist. Live består repertoaren av kraftfull rytmblues, rock’n’roll och jubelväckande scenaction med ett flermannaband. Oscar är i sitt livs bästa skick!</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>", "en": "<p>Knucklebone Oscar is a gift to the rock’n’roll craze and the blues industry. The guitarist's trademarks are his energetic gigs and ultra-entertaining stage shows.</p><p>In a career spanning more than thirty years, Oscar has represented Finland at the World Blues Championships in Memphis, toured China, performed in club after club in Europe, gotten groovy in UMK with a hot burlesque show, performed raw gospel with Tuomari Nurmio and starred in the theatre film ‘Knucklebonehead’ as well as in many TV shows. Oscar has done and seen it all!</p><p>His latest release is the sauna single ‘puuskutan hikoilen’ and its video with the band 20 000 hz. His celebratory album ‘Uncle Knuckle’ was released in 2024. This special album meets even the highest Knucklebone standards!</p><p>Knucklebone Oscar is at his best with his own band, as a singer and a celebrated guitar virtuoso. His live repertoire includes powerful rhythm blues, rock’n’roll and exhilarating stage action with his multi-member band. Oscar has never been better!</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>" }, "name": { "fi": "Roots-musiikin evoluutio: Knucklebone Oscar", "sv": "Roots-musikens evolution: Knucklebone Oscar", "en": "The evolution of roots music: Knucklebone Oscar" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67476/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67350", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223708/", "sv": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223708/", "en": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223708/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T12:12:54.895208Z", "last_modified_time": "2026-01-20T12:12:54.895221Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781016.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T12:12:54.800222Z", "last_modified_time": "2026-03-20T01:13:02.022324Z", "date_published": null, "start_time": "2026-02-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": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/73C7EEA8896E8BE56A0E92F9CF4AB123/Hamnet_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/73C7EEA8896E8BE56A0E92F9CF4AB123/Hamnet_12_", "en": "http://www.malmitalo.fi/en/events/event/73C7EEA8896E8BE56A0E92F9CF4AB123/Hamnet_12_" }, "description": { "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Hamnet (12) – Kino Helios", "sv": "Hamnet (12) – Kino Helios", "en": "Hamnet (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67350/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67349", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223197/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223197/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223197/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T10:12:52.872003Z", "last_modified_time": "2026-01-20T10:12:52.872021Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781015.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T10:12:52.769673Z", "last_modified_time": "2026-03-20T01:13:01.716493Z", "date_published": null, "start_time": "2026-02-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": "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/5CE1A8AA305739AFA847A28812A2ED9D/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5CE1A8AA305739AFA847A28812A2ED9D/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/5CE1A8AA305739AFA847A28812A2ED9D/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:67349/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67475", "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/kyosti-makimattila-ja-ajaton-sointu-malmitalo-20915401/", "sv": "https://www.lippu.fi/event/kyosti-makimattila-ja-ajaton-sointu-malmitalo-20915401/", "en": "https://www.lippu.fi/event/kyosti-makimattila-ja-ajaton-sointu-malmitalo-20915401/" }, "description": null, "price": { "fi": "30 € / 24,80 €", "sv": "30 € / 24,80 €", "en": "30 € / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493883, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T14:13:20.475529Z", "last_modified_time": "2025-11-24T14:13:20.475545Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781448.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493883/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T14:13:20.404009Z", "last_modified_time": "2026-03-20T01:13:01.593722Z", "date_published": null, "start_time": "2026-02-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": { "fi": "Tule viettämään Malmitalolle sydäntalven ajaton ja lämminhenkinen tuokio ikivihreiden sävelmien ja yhtyeen oman tuotannon parissa.", "sv": "Kom till Malms kulturhus och fira en tidlös och varm stund mitt i kärnvintern med evergreens och bandets egen produktion", "en": "Come to Cultural Centre Malmitalo for a timeless and warm-hearted session in the heart of winter, featuring both evergreen tunes and the band's own works." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F038E4D2FF32DE0199C868E46C5EFA07/Kyosti_Makimattila_ja_Ajaton_sointu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F038E4D2FF32DE0199C868E46C5EFA07/Kyosti_Makimattila_ja_Ajaton_sointu", "en": "http://www.malmitalo.fi/en/events/event/F038E4D2FF32DE0199C868E46C5EFA07/Kyosti_Makimattila_and_Ajaton_sointu_orchestra" }, "description": { "fi": "<p>Tule viettämään Malmitalolle sydäntalven ajaton ja lämminhenkinen tuokio ikivihreiden sävelmien ja yhtyeen oman tuotannon parissa.</p><p>Konsertti tarjoaa sävyjä tanssilavojen kiihkeistä tunnelmista kaupunkien salonkien ja klubien intiimiin hämyyn.</p><p>Kesto 2 t, sis. väliajan 20 min</p>", "sv": "<p>Kom till Malms kulturhus och fira en tidlös och varm stund mitt i kärnvintern med evergreens och bandets egen produktion</p><p>Konserten bjuder på toner från dansbanornas passionerade stämningar till det intima dunklet <br>i städernas salonger och klubbar.</p><p>Längd: 2 h, inklusive en paus på 20 min.</p>", "en": "<p>Come to Cultural Centre Malmitalo for a timeless and warm-hearted session in the heart of winter, featuring both evergreen tunes and the band's own works.</p><p>The concert offers a range of different tunes, from the frenetic fun of dance pavilions to the <br>intimate vibes of urban venues and clubs.</p><p>Duration: 2 h, incl. a 20-min intermission</p>" }, "name": { "fi": "Kyösti Mäkimattila ja Ajaton sointu", "sv": "Kyösti Mäkimattila ja Ajaton sointu", "en": "Kyösti Mäkimattila and Ajaton sointu orchestra" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67348", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223196/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223196/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223196/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T09:13:49.690952Z", "last_modified_time": "2026-01-20T09:13:49.690967Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781012.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T09:13:49.602172Z", "last_modified_time": "2026-03-20T01:12:59.725631Z", "date_published": null, "start_time": "2026-02-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": "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/BCEC35137F2A281219BE86B6014263E0/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BCEC35137F2A281219BE86B6014263E0/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/BCEC35137F2A281219BE86B6014263E0/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:67348/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67347", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/", "sv": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/", "en": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494557, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T08:12:47.861393Z", "last_modified_time": "2026-01-20T08:12:47.861407Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781010.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494557/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T08:12:47.766565Z", "last_modified_time": "2026-03-20T01:12:59.373095Z", "date_published": null, "start_time": "2026-02-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": "Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_", "en": "http://www.malmitalo.fi/en/events/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_" }, "description": { "fi": "<p>Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika.</p><p>Kanakani ja hänen ystävänsä, Meri ja Hugo, ovat keränneet mainetta kuuluisina seikkailijoina. Uusi seikkailu odottaa heitä, kun Rollo palaa kuvioihin mukanaan mystinen esine. Kanakanin ottoisä, kuningas Kaarle, huomaa esineeseen kaiverretun symbolin, joka liittyy tarunomaiseen murmeliin. Kuningas kertoo tarinan murmelista, jolla on taaksepäin katsovat kasvot ja kannustaa ryhmää etsintäretkelle – murmeli on löydettävä ennen kuin joku ehtii käyttää sen maagista voimaa. Seikkailu saa yllättävän käänteen, kun Kanakani ystävineen huomaa, etteivät he ole ainoita, jotka etsivät tätä muinaista voimaesinettä.</p><p>Matkansa varrella he kohtaavat toinen toistaan erikoisempia esteitä ja uusia, värikkäitä hahmoja. Kuka löytää murmelin ensimmäisenä ja saa käyttöönsä sen valtavan voiman – ja mitä siitä seuraa?</p><p>Ikäraja: 7<br>Kesto: 89 min<br>Ensi-ilta: 23.01.2026<br>Elokuva on puhuttu suomeksi</p>" }, "name": { "fi": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "sv": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "en": "Kanakani ja murmelin salaisuus (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67432", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02", "sv": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02", "en": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493961, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T10:12:37.597333Z", "last_modified_time": "2025-12-01T10:12:37.597349Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781245.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493961/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-01T10:12:37.447188Z", "last_modified_time": "2026-03-20T01:12:58.984870Z", "date_published": null, "start_time": "2026-02-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": "Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi.", "sv": "Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.", "en": "A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Kulinaarikaaos_-_koko_perheen_sirkusesitys", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Kulinaarikaaos_-_en_cirkusforestallning_for_hela_familjen", "en": "http://www.malmitalo.fi/en/events/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Culinary_Chaos_A_Circus_Show_for_the_Whole_Family" }, "description": { "fi": "<p>Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi.</p><p>Kokkien keittiössä taidokas akrobatia, jongleeraus ja hersyvä komiikka yhdistyvät esitykseksi, jossa mikään ei suju suunnitelmien mukaan – mutta kaikki on herkullista alusta loppuun.</p><p>Humoristinen ja elämäniloa pulppuava esitys tempaa yleisön mukaansa maailmaan, jossa jauhot pöllyävät ja tavarat lentävät.</p><p>Katerina Repposen ja Pasi Nousiaisen muodostama Kate & Pasi on esiintynyt 15 vuoden aikana yli 25 maassa ympäri maailmaa, aina Kanadasta Japaniin, ja heidän teoksiaan on nähty lähes sadan eri festivaalin ohjelmistossa. Suomessa he ovat tuoneet sirkusta kaikkien ulottuville esiintymällä päiväkodeissa, kouluissa ja leikkipuistoissa, Tanssiteatteri Hurjaruuthin Talvisirkuksessa ja Sirkus Finlandian ohjelmistossa.</p><p>Kate ja Pasi yhdistävät esityksissään poikkeuksellisella tavalla akrobaattisen taituruuden, vahvuuden, kauneuden ja huumorin. Heidän esityksensä ovat saaneet kansainvälistä tunnustusta ja voittaneet palkintoja arvostetuilla sirkusfestivaaleilla muun muassa Saksassa, Latviassa ja Ranskassa.</p><p>Kesto: 45 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p><b>Työryhmä</b><br>Ohjaus: Katerina Repponen ja Pasi Nousiainen<br>Esiintyjät: Katerina Repponen ja Pasi Nousiainen<br>Ohjauksellinen apu: Marc Gassot<br>Ohjauksellinen ja dramaturginen apu: Jarkko Lehmus<br>Valosuunnittelu: Jaakko Sirainen<br>Pukusuunnittelu: Riikka Manni<br>Tukijat: Cirko, Tanssiteatteri Hurjaruuth, Kallo Collective, Taiteen edistämiskeskus</p>", "sv": "<p>Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>Kate & Pasi, som består av Katerina Repponen och Pasi Nousiainen, har under 15 års tid uppträtt i över 25 länder runt om i världen, allt från Kanada till Japan, och deras verk har setts på nästan hundra olika festivalers program. I Finland har de gjort cirkusen tillgänglig för alla genom att uppträda på daghem, i skolor och lekparker, på Dansteater Hurjaruuths vintercirkus och i Sirkus Finlandias program. Kate och Pasi förenar i sina föreställningar på ett exceptionellt sätt den akrobatiska skickligheten, styrkan, skönheten och humorn. Deras föreställningar har fått internationellt erkännande och vunnit pris på ansedda cirkusfestivaler bland annat i Tyskland, Lettland och Frankrike.</p><p>Längd: 45 min.<br>Åldersrekommendation: 4+<br>Språk: ordlöst</p><p><b>Arbetsgrupp</b><br>Regi: Katerina Repponen och Pasi Nousiainen<br>På scenen: Katerina Repponen och Pasi Nousiainen<br>Hjälp med regin: Marc Gassot<br>Hjälp med regin och dramaturgin: Jarkko Lehmus<br>Ljusdesign: Jaakko Sirainen<br>Kostym: Riikka Manni<br>Stödjare: Cirko, DansteaternHurjaruuth, Kallo Collective, Centret för konstfrämjande</p>", "en": "<p>A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way.</p><p>In their kitchen, skilful acrobatics, juggling and gleeful comedy blend into a performance where nothing goes according to plan, yet everything is delicious from start to finish. This humorous and joy-filled show whisks the audience off into a world where flour and objects fly around.</p><p>Katerina Repponen and Pasi Nousiainen, the duo behind Kate & Pasi, have performed for 15 years in over 25 countries across the globe, from Canada to Japan, and their works have been seen at nearly a hundred festivals. In Finland, they have brought the circus to everyone's doorstep, performing at daycares, schools and playgrounds, as well as in Dance Theatre Hurjaruuth's Winter Circus and as part of the Sirkus Finlandia programme. Kate and Pasi combine acrobatic mastery, strength, beauty and humour in a truly unique way. Their performances have earned international acclaim and have won awards at prestigious circus festivals in countries such as Germany, Latvia and France.</p><p>Duration: 45 min<br>Recommended age: 4+<br>Language: non-verbal</p><p>Creative team<br>Directed by: Katerina Repponen and Pasi Nousiainen<br>Performers: Katerina Repponen and Pasi Nousiainen<br>Directorial assistance: Marc Gassot<br>Directorial and dramaturgical assistance: Jarkko Lehmus<br>Light design: Jaakko Sirainen<br>Costume design: Riikka Manni<br>Supported by: Cirko, Dance Theatre Hurjaruuth, Kallo Collective and Arts Promotion Centre Finland</p>" }, "name": { "fi": "Kate & Pasi: Kulinaarikaaos - koko perheen sirkusesitys", "sv": "Kate & Pasi: Kulinaarikaaos - en cirkusföreställning för hela familjen", "en": "Kate & Pasi: Culinary Chaos – A Circus Show for the Whole Family" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67432/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }