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=7
{ "meta": { "count": 1627, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=8", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=6" }, "data": [ { "id": "kulke:67365", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299671/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494734, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:18.369888Z", "last_modified_time": "2026-02-05T10:13:18.369906Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781040.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494734/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:18.258735Z", "last_modified_time": "2026-03-20T01:13:21.446897Z", "date_published": null, "start_time": "2026-02-28T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/71E2D03DBF9596222BE29CB02D6B086D/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67365/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67483", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/lena-the-slide-brothers/", "sv": "https://www.lippu.fi/artist/lena-the-slide-brothers/", "en": "https://www.lippu.fi/artist/lena-the-slide-brothers/" }, "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": 1494017, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:51.977304Z", "last_modified_time": "2025-12-03T09:12:51.977315Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781534.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494017/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:51.899383Z", "last_modified_time": "2026-03-20T01:13:19.861884Z", "date_published": null, "start_time": "2026-02-27T17: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": "Vuonna 2009 perustettu Lena & The Slide Brothers tarjoilee tinkimätöntä bluesia ja roots-musiikkia sydämellä ja taidolla.", "sv": "Lena & The Slide Brothers grundades 2009 och bjuder på kompromisslös blues- och rootsmusik från hjärtat och med talang.", "en": "Founded in 2009, Lena & The Slide Brothers serve up uncompromising blues and roots music with both a large heart and great talent." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F396FEFB1E4822D64C8CCBFEB308A6CC/Lena_The_Slide_Brothers_feat_Pepe_Ahlqvist", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F396FEFB1E4822D64C8CCBFEB308A6CC/Lena_The_Slide_Brothers_feat_Pepe_Ahlqvist", "en": "http://www.malmitalo.fi/en/events/event/F396FEFB1E4822D64C8CCBFEB308A6CC/Lena_The_Slide_Brothers_feat_Pepe_Ahlqvist" }, "description": { "fi": "<p>Vuonna 2009 perustettu Lena & The Slide Brothers tarjoilee tinkimätöntä bluesia ja roots-musiikkia sydämellä ja taidolla.</p><p>Neljä kiiteltyä albumia julkaissut yhtye on kerännyt huomiota niin alan lehdistössä kuin radioaalloilla ympäri maailmaa.</p><p>Lavalla luvassa on vahvaa omaa materiaalia, ja myös rakastettuja bluesja roots-klassikoita – tulkittuna bändin omalla, svengaavalla otteella. Lena & The Slide Brothers on tuttu näky festareilla, klubeilla ja konserttisaleissa ympäri Suomen – ja myös kansainvälisillä areenoilla mm. Italiassa, Ranskassa, Ruotsissa, Virossa, Belgiassa ja Sveitsissä.</p><p>Yhtye työstää parhaillaan viidettä albumiaan, josta ensimmäinen single on jo julkaistu.</p><p>Lena Lindroos – laulu, basso<br>Matti Kettunen – kitarat, laulu<br>Kristian Wahlström – kitarat, laulu<br>Raine Kokkinen – rummut<br>Pepe Ahlqvist – kitara</p><p>Kesto: 2 h, sis väliaika 20min.</p>", "sv": "<p>Lena & The Slide Brothers grundades 2009 och bjuder på kompromisslös blues- och rootsmusik från hjärtat och med talang.</p><p>Bandet har släppt fyra berömda album och fått uppmärksamhet både inom den branschspecifika pressen och i radion runt om i världen.</p><p>På scenen utlovas eget kraftigt material och även älskade blues- och roots-klassiker – tolkade med bandets egna, svängande grepp. Lena & The Slide Brothers är en bekant syn på festivaler, klubbar och i konsertsalar runt om i Finland – och även på internationella arenor bland annat i Italien, Frankrike, Sverige, Estland, Belgien och Schweiz.<br>Bandet arbetar för närvarande med sitt femte album, av vilket den första singelplattan redan har publicerats.</p><p>Lena Lindroos – sång, bas<br> Matti Kettunen – gitarr, sång<br> Kristian Wahlström – gitarr, sång<br> Raine Kokkinen – trummor</p><p>Längd: 2 h, inkl. paus 20 min</p>", "en": "<p>Founded in 2009, Lena & The Slide Brothers serve up uncompromising blues and roots music with both a large heart and great talent.</p><p>With four critically acclaimed albums to their name, the band has attracted attention in music media and on radio waves around the world.</p><p>The stage will feature the band’s strong original material, as well as beloved blues and roots classics, seasoned with the band's own swinging twist. Lena & The Slide Brothers are a familiar sight at festivals, clubs and concert halls all over Finland – and also on international stages in Italy, France, Sweden, Estonia, Belgium, Switzerland and elsewhere.<br>The band is currently working on its fifth album, with its first single already having been released.</p><p>Lena Lindroos – vocals, bass<br> Matti Kettunen – guitars, vocals<br> Kristian Wahlström – guitars, vocals<br> Raine Kokkinen – drums</p><p>Duration: 2 hours, including a 20-minute intermission.</p>" }, "name": { "fi": "Lena & The Slide Brothers feat Pepe Ahlqvist", "sv": "Lena & The Slide Brothers feat Pepe Ahlqvist", "en": "Lena & The Slide Brothers feat Pepe Ahlqvist" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67364", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299758/", "sv": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299758/", "en": "https://www.lippu.fi/event/kino-helios-epic-elvis-presley-in-concert-malmitalo-21299758/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494739, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:03.210754Z", "last_modified_time": "2026-02-05T13:14:03.210770Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781038.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494739/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:03.090717Z", "last_modified_time": "2026-03-20T01:13:19.600133Z", "date_published": null, "start_time": "2026-02-27T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E74AB7D2C0657C190CD4AD8E6AAFF569/_EPiC_Elvis_Presley_in_Concert", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E74AB7D2C0657C190CD4AD8E6AAFF569/_EPiC_Elvis_Presley_in_Concert", "en": "http://www.malmitalo.fi/en/events/event/E74AB7D2C0657C190CD4AD8E6AAFF569/_EPiC_Elvis_Presley_in_Concert" }, "description": { "fi": "<p>EPiC: Elvis Presley in Concert on enemmän kuin konserttitaltiointi.</p><p>Baz Luhrmannin ainutlaatuisessa elokuvaelämyksessä Elvis laulaa ja kertoo tarinansa tavalla, jollaista ei ole koettu aiemmin.</p><p>Elokuva pohjautuu arkistoista löytyneeseen 68 laatikolliseen ennennäkemätöntä kuvamateriaalia. Ohjaaja Baz Luhrmannin tiimi on restauroinut ja synkronoinut mykät arkistolöydöt vastaamaan aitoja äänitallenteita. Elokuva yhdistää ikonisia lavatulkintoja, kuten vuoden 1957 Havaijin ”kultatakki”-esiintymisen, sekä harvinaisen 45-minuuttisen tallenteen, jolla Elvis kertoo itse omasta elämästään.</p><p>Ikäraja: ei tiedossa<br>Kesto: 96 min<br>Ensi-ilta: 27.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "EPiC: Elvis Presley in Concert – Kino Helios", "sv": "EPiC: Elvis Presley in Concert – Kino Helios", "en": "EPiC: Elvis Presley in Concert – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67364/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67363", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299552/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299552/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299552/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494724, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T08:13:41.589857Z", "last_modified_time": "2026-02-05T08:13:41.589881Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781037.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494724/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T08:13:41.469222Z", "last_modified_time": "2026-03-20T01:13:19.278703Z", "date_published": null, "start_time": "2026-02-27T13: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/4FF7C091875EC7A22248FFE74CAB0FF9/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4FF7C091875EC7A22248FFE74CAB0FF9/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/4FF7C091875EC7A22248FFE74CAB0FF9/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:67363/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67482", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/carola-tribuutti-4022158/", "sv": "https://www.lippu.fi/artist/malmitalo/carola-tribuutti-4022158/", "en": "https://www.lippu.fi/artist/malmitalo/carola-tribuutti-4022158/" }, "description": null, "price": { "fi": "33€ / 30€", "sv": "33€ / 30€", "en": "33€ / 30€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494016, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:51.207263Z", "last_modified_time": "2025-12-03T09:12:51.207276Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781532.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494016/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:51.099353Z", "last_modified_time": "2026-03-20T01:13:17.462871Z", "date_published": null, "start_time": "2026-02-25T16: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": "CAROLA-tribuutti Carolan musiikille on keväällä 2013 perustettu helsinkiläisistä ammattimuusikoista koottu yhtye.", "sv": "Tributbandet CAROLA består av professionella musiker från Helsingfors, grundat våren 2013 som en hyllning till Carolas musik.", "en": "CAROLA tribute to Carola's music is a band of professional musicians from Helsinki, founded in spring 2013." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1D2C51367131BED3E38B90B03B1521E8/CAROLA_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1D2C51367131BED3E38B90B03B1521E8/CAROLA_", "en": "http://www.malmitalo.fi/en/events/event/1D2C51367131BED3E38B90B03B1521E8/CAROLA_" }, "description": { "fi": "<p>CAROLA-tribuutti Carolan musiikille on keväällä 2013 perustettu helsinkiläisistä ammattimuusikoista koottu yhtye.</p><p>Ohjelmisto koostuu Carola Standertskjöldin rakastetuimmista levytyksistä ja tuntemattomammista helmistä. Kokoonpanon jäseniä yhdistää rakkaus Carolan ja muiden aikalaistensa musiikkiin, mikä välittyy esityksestä.</p><p>Tervetuloa nostalgiselle matkalle laaja-alaisen tulkitsijan tuotantoon!</p><p>Carola Christina Standertskjöld-Liemola, (o.s. Standertskjöld, 23. maaliskuuta 1941 Helsinki – 12. marraskuuta 1997 Kirkkonummi) oli 1960-luvun suosituimpia suomalaisia laulajia. Hän esitti jazzahtavaa iskelmämusiikkia, jossa oli usein myös blues- ja soul-vaikutteita. Hänen suosituimpia kappaleitaan olivat mm. Rakkauden Jälkeen, Penkki, Puu ja Puistotie ja Kielletyt leikit.</p><p>JÄSENET: <br>Katri Silolahti, laulu <br>Tuukka Vainiola, Kitara <br>Jani Jalkanen, basso <br>Janne Levy, koskettimet <br>Juho Hurskainen, saksofoni <br>Jarkko Rantanen, rummut</p><p>Kesto: 1 t 40 min, sis. 15 min väliajan</p>", "sv": "<p>Tributbandet CAROLA består av professionella musiker från Helsingfors, grundat våren 2013 som en hyllning till Carolas musik.</p><p>Programmet består av Carola Standertskjölds mest älskade inspelningar och mindre kända pärlor. Medlemmarna i sammansättningen förenas av sin kärlek till Carolas musik och andra samtida artisters musik, vilket förmedlas i föreställningen.</p><p>Välkommen på en nostalgisk resa genom en mångsidig uttolkares produktion!</p><p>Carola Christina Standertskjöld-Liemola (född Standertskjöld, 23 mars 1941 i Helsingfors – 12 november 1997 i Kyrkslätt) var en av de mest populära finska sångarna på 1960-talet. Hon framförde jazzig schlagermusik, ofta även med blues- och soulintryck. Hennes populäraste låtar var bland annat Rakkauden Jälkeen, Penkki, Puu ja Puistotie och Kielletyt leikit.</p><p>MEDLEMMAR: <br>Katri Silolahti, sång <br>Tuukka Vainiola, gitarr <br>Jani Jalkanen, bas <br>Janne Levy, keyboard <br>Juho Hurskainen, saxofon <br>Jarkko Rantanen, trummor</p><p>Längd: 1 h 40 min., inklusive en paus på 15 min.</p>", "en": "<p>CAROLA tribute to Carola's music is a band of professional musicians from Helsinki, founded in spring 2013.</p><p>Their repertoire consists of Carola Standertskjöld's best-loved recordings and lesser-known gems. The members of the ensemble share a love of the music of Carola and her contemporaries, and this love shines through in their performance.</p><p>Welcome to a nostalgic journey through the works of this performer with an amazing range of works!</p><p>Carola Christina Standertskjöld-Liemola, (née Standertskjöld, born on 23 March 1941 in Helsinki, passed away on 12 November 1997 in Kirkkonummi) was one of the most popular Finnish singers of the 1960s. She played jazzy, soulful popular music, often containing blues and soul influences. Her most popular songs included hits such as Rakkauden Jälkeen, Penkki, Puu ja Puistotie and Kielletyt leikit.</p><p>MEMBERS: <br>Katri Silolahti, vocals <br>Tuukka Vainiola, guitar <br>Jani Jalkanen, bass <br>Janne Levy, keyboards <br>Juho Hurskainen, saxophone <br>Jarkko Rantanen, drums</p><p>Duration: 1 hour 40 min, incl. a 15-min intermission</p>" }, "name": { "fi": "CAROLA!", "sv": "CAROLA!", "en": "CAROLA!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67362", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299696/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299696/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299696/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494738, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:01.936214Z", "last_modified_time": "2026-02-05T13:14:01.936230Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781035.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494738/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:01.843897Z", "last_modified_time": "2026-03-20T01:13:17.128693Z", "date_published": null, "start_time": "2026-02-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AB9CCB9523E1F7B296DB4E715C97E899/_Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/AB9CCB9523E1F7B296DB4E715C97E899/_Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/AB9CCB9523E1F7B296DB4E715C97E899/_Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67362/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67361", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299649/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299649/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299649/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494731, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T09:14:10.504234Z", "last_modified_time": "2026-02-05T09:14:10.504249Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781034.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494731/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T09:14:10.423161Z", "last_modified_time": "2026-03-20T01:13:17.009007Z", "date_published": null, "start_time": "2026-02-25T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F5AC91A8E66B16558E8046779F76A1C1/Humiseva_harju_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F5AC91A8E66B16558E8046779F76A1C1/Humiseva_harju_16_", "en": "http://www.malmitalo.fi/en/events/event/F5AC91A8E66B16558E8046779F76A1C1/Humiseva_harju_16_" }, "description": { "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Humiseva harju (16) – Kino Helios", "sv": "Humiseva harju (16) – Kino Helios", "en": "Humiseva harju (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67902", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p2625/?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/event/stella-polaris-maaginen-matka-malmitalo-21128795/", "sv": "https://www.lippu.fi/event/stella-polaris-maaginen-matka-malmitalo-21128795/", "en": "https://www.lippu.fi/event/stella-polaris-maaginen-matka-malmitalo-21128795/" }, "description": null, "price": { "fi": "11,10€/17,80€", "sv": "11,10€/17,80€", "en": "11,10€/17,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-30T13:13:06.574432Z", "last_modified_time": "2025-12-30T13:13:06.574446Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783373.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-30T13:13:06.422840Z", "last_modified_time": "2026-03-20T01:13:15.921646Z", "date_published": null, "start_time": "2026-02-24T15:30: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": "Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun; millainen tarina tehdään ja ketkä siinä seikkailevat.", "sv": "I Stella Polaris improviserade pjäs för hela familjen får barnen påverka framförandet – hurdan berättelse som görs och vem som är ute på äventyr i den.", "en": "In Stella Polaris's improvised play for the whole family, children have a say in how the play unfolds; what story is told and who is in it." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/07570786CC9AAFB8DD2FAE8FB803EF9B/Maaginen_matka_koko_perheen_improvisoitu_seikkailu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/07570786CC9AAFB8DD2FAE8FB803EF9B/Maaginen_matka_ett_improviserat_aventyr_for_hela_familjen", "en": "http://www.malmitalo.fi/en/events/event/07570786CC9AAFB8DD2FAE8FB803EF9B/Maaginen_matka_a_magical_journey_an_improvised_adventure_for_the_whole_family" }, "description": { "fi": "<p>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset saavat vaikuttaa esityksen kulkuun; millainen tarina tehdään ja ketkä siinä seikkailevat.</p><p>Improvisoidussa näytelmässä ei ole käsikirjoitusta, vaan näyttelijät, muusikko ja valosuunnittelija improvisoivat kaiken lapsilta saatujen ehdotusten pohjalta.</p><p>Tulkaa koko perheen voimin viihtymään kanssamme ja ihmettelemään, kuinka lukuisat roolihahmot, laulut, tarinat ja lopulta kokonainen näytelmä syntyy yleisön silmien edessä. Taitavat improvisoijat venyvät mitä yllätyksellisimpiin tilanteisiin ja varmaa on, ettei naurun pyrskähdyksiltä ja pähkähulluilta käänteiltä vältytä.</p><p>Ikäsuositus: + 6v<br>Kesto: noin 45 min<br>Kieli: suomi<br>Esiintyjät: 3 näyttelijää, muusikko ja valot. Esiintyjäkokoonpanot vaihtelevat esityksissä!</p>", "sv": "<p>I Stella Polaris improviserade pjäs för hela familjen får barnen påverka framförandet – hurdan berättelse som görs och vem som är ute på äventyr i den.</p><p>En improviserad pjäs saknar manuskript. Skådespelarna, musikerna och ljusplanerarna improviserar allt utifrån förslag från barn.<br>Ta med hela familjen och kom och trivas med oss samt förundra er över hur många rollfigurer, sånger, berättelser och slutligen en hel pjäs kan uppstå framför publikens ögon. Skickliga improvisatörer anpassar sig till de mest överraskande situationer och en sak är säker: ni kommer att frusta till av skratt och uppleva helknäppa vändningar.</p><p>Åldersrekommendation: + 6 år<br>Längd: cirka 45 min.<br>Språk: finska<br>På scenen: tre skådespelare, en musiker och ljus. Uppträdarna varierar i föreställningarna!</p>", "en": "<p>In Stella Polaris's improvised play for the whole family, children have a say in how the play unfolds; what story is told and who is in it.</p><p>An improvised play has no script. Instead, the actors, musician and lighting designer improvise everything based on suggestions from the children.<br>The whole family is invited to join us in marvelling at how the many characters, songs, stories and finally the whole play are created before the audience's eyes. The skilled improvisers stretch their abilities with the most surprising situations, and there will be no shortage of laughter or strange twists and turns.</p><p>Age recommendation: 6+<br>Duration: approximately 45 minutes<br>Language: Finnish<br>Performers: three actors, a musician and lights. Performer line-ups vary between performances!</p>" }, "name": { "fi": "Maaginen matka – koko perheen improvisoitu seikkailu", "sv": "Maaginen matka – ett improviserat äventyr för hela familjen", "en": "Maaginen matka, a magical journey – an improvised adventure for the whole family" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67902/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68102", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494844, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-11T09:12:56.660143Z", "last_modified_time": "2026-02-11T09:12:56.660157Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785517.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494844/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-11T09:12:56.512298Z", "last_modified_time": "2026-03-20T01:13:15.367569Z", "date_published": null, "start_time": "2026-02-24", "end_time": "2026-03-16", "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": "Nyky-Suomessa yhä useamman juuret ulottuvat maan rajojen ulkopuolelle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/115E37041ABF377D6CD6E3C6E9D77AE2/_Ikaantymisen_monet_kasvot", "sv": "http://www.malmitalo.fi/sv/evenemang/event/115E37041ABF377D6CD6E3C6E9D77AE2/_Ikaantymisen_monet_kasvot", "en": "http://www.malmitalo.fi/en/events/event/115E37041ABF377D6CD6E3C6E9D77AE2/_Ikaantymisen_monet_kasvot" }, "description": { "fi": "<p>Nyky-Suomessa yhä useamman juuret ulottuvat maan rajojen ulkopuolelle.</p><p>Suomessa asuu noin 54 500 yli 55-vuotiasta vieraskielistä ihmistä ja määrä kasvaa merkittävästi lähivuosina. Mutta, kuinka he ovat löytäneet paikkansa, millainen on heidän arkensa, ja mistä he unelmoivat? Tämä näyttely esittää ikääntyvän Suomen monenlaiset kasvot.</p><p>Ihmisillä voi olla monenlaisia sisäkkäisiä ja rinnakkaisia kansallisia, kulttuurisia ja muita identiteettejä. Elämme entistä pirstoutuneemmassa maailmassa ja harvalla on yhtenäistä näkemystä tavoista, arvoista ja uskonnosta ympäröivän yhteisön kanssa. Identiteetit sisällämme muuttuvat ja elävät eri tilanteissa ja eri aikoina matkamme varrella. Vanhenemisen identiteettiin kuuluu monenlaiset kerrokset, eletty elämä, muistot, tämä hetki ja tuleva. Vanheneminen yhdistää meitä kaikkia.</p><p>Eri syistä ja eri ikäisinä Suomeen muuttaneet iäkkäämmät ihmiset eivät muodosta yhtenäistä ryhmää. He jäävät usein suomalaisessa yhteiskunnassa näkymättömiksi ja yhteisen tekemisen ulkopuolelle, vaikka jaettavana olisi rikasta elämänkokemusta, osaamista ja toimeliaisuutta yhteiskunnassa. Näyttelyn yhtenä tavoitteena on lisätä Suomeen muualta muuttaneiden ikääntyvien ihmisten näkyvyyttä.</p><p>Osalle ulkomaalaistaustaisista ikääntyvistä henkilöistä on haasteellista hakeutua palveluiden piiriin. Suomen vanhuspalvelukentällä ei ole vielä sisäistetty ikääntyvän väestön moninaistumista ja sen aiheuttamaa palveluiden kehittämistarvetta. Palveluissa tulisi nykyistä enemmän ottaa huomioon kieli- ja kulttuurivähemmistöjen lähtökohtia ja tarpeita sekä varmistaa palveluiden saavutettavuutta. Näyttelyn toisena tavoitteena on nostaa julkiseen keskusteluun epätasa-arvoa synnyttäviä rakenteita vähemmistöihin kuuluvien ikääntyvien ihmisten osalta.</p><p>Näyttely syntyi kuvataiteilija Satu Juvosen ja monikulttuurista vanhustyötä tekevien järjestöjen yhteistyönä. Mukana ovat Eläkeläiset ry, Suomen monikulttuurinen muistikeskus ry, Jade yhteisö ry, Pääkaupunkiseudun omaishoitajat ry, Monikko ry ja Palvelutaloyhdistys Koskenrinne ry.</p><p>Mukana olevat järjestöt edistävät Suomeen muuttaneiden ikääntyvien osallisuutta ja hyvinvointia sekä toteuttavat ikääntyville suunnattua vertaisryhmätoimintaa ja henkilökohtaista neuvontaa. Järjestöjen yhteisellä rintamalla teemme lisäksi vaikuttamistyötä niiden hyväksi, joiden oma ääni jää suomalaisessa yhteiskunnassa heikoksi. Yhteistyössä on syntynyt käsillä oleva valokuvien kokonaisuus, jossa kohtaatte järjestöjen toimintaan osallistuneita aktiivisia kävijöitä.</p><p>Näe ihminen ja kohtaa kanssakulkija, lähimmäinen. Toivomme, että nämä kuvat madaltavat ennakkoluuluoja ja pelkoja kohdata toisemme.</p>" }, "name": { "fi": "Ikääntymisen monet kasvot", "sv": "Ikääntymisen monet kasvot", "en": "Ikääntymisen monet kasvot" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68102/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67481", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/malmitalo/goldrust-plays-neil-young-crazy-horse-4030029/", "sv": "https://www.lippu.fi/artist/malmitalo/goldrust-plays-neil-young-crazy-horse-4030029/", "en": "https://www.lippu.fi/artist/malmitalo/goldrust-plays-neil-young-crazy-horse-4030029/" }, "description": null, "price": { "fi": "24,80 €", "sv": "24,80 €", "en": "24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494015, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:12:50.771645Z", "last_modified_time": "2025-12-03T09:12:50.771657Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781487.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494015/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T09:12:50.689908Z", "last_modified_time": "2026-03-20T01:13:14.282326Z", "date_published": null, "start_time": "2026-02-21T17: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": "Malmitalon lauantai on pyhitetty Neil Youngin ja Crazy Horse -yhtyeen musiikille.", "sv": "Lördagen på Malms kulturhus är tillägnad Neil Youngs och Crazy Horses musik.", "en": "Saturday at Malmitalo is dedicated to the music of Neil Young and the band Crazy Horse." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2529735B8B950CACF3084D1E95BEA234/Goldrust_plays_Neil_Young_Crazy_Horse", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2529735B8B950CACF3084D1E95BEA234/Goldrust_plays_Neil_Young_Crazy_Horse", "en": "http://www.malmitalo.fi/en/events/event/2529735B8B950CACF3084D1E95BEA234/Goldrust_plays_Neil_Young_Crazy_Horse" }, "description": { "fi": "<p>Malmitalon lauantai on pyhitetty Neil Youngin ja Crazy Horse -yhtyeen musiikille.</p><p>Lavalle nousee pitkän tauon jälkeen suomalaisista huippumuusikoista koostuva Goldrust, jonka repertuaariin kuuluu kaikki keskeiset Neil Youngin kappeleet. Luvassa on noin kahden tunnin keikka, jonka keskivaiheilla tulee muutama biisi akustisesti.</p><p>Yhtyeen jäsenistöhän on nimekäs kuin mikä: laulajana on Janne ”Janne Laurila” Laurila, bassossa Hannu ”Tehosekoitin” Kilkki, rummuissa Sepe ”Amuri, Rock Siltanen Group etc.” Krühn, sekä kitaroissa Rami ”Puny” Kinnunen ja Pasi ”Alivaltiosihteeri” Heikura.</p><p>Kesto 2 t, sis. 20 min väliajan</p>", "sv": "<p>Lördagen på Malms kulturhus är tillägnad Neil Youngs och Crazy Horses musik.</p><p>Efter ett långt uppehåll kommer Goldrust, ett band bestående av finska toppmusiker, att ställa sig på scenen med en repertoar som inkluderar alla Neil Youngs viktigaste låtar. Spelningen kommer att pågå i cirka två timmar, med några akustiska låtar i mitten.</p><p>Bandets medlemmar är hur kända som helst: Janne ”Janne Laurila” Laurila sång, Hannu ”Tehosekoitin” Kilkki bas, Sepe ”Amuri, Rock Siltanen Group etc.” Krühn trummor och Rami ”Puny” Kinnunen och Pasi ”Alivaltiosihteeri” Heikura gitarrer.</p><p>Längd: 2 h, inklusive en paus på 20 min</p>", "en": "<p>Saturday at Malmitalo is dedicated to the music of Neil Young and the band Crazy Horse.</p><p>After a long break, Goldrust, a band featuring top Finnish musicians, will take to the stage with a repertoire that includes all of Neil Young's key songs. The show will last about two hours, with a couple of acoustic songs thrown in towards the middle.</p><p>The band's line-up is filled with stars, each name as famous as the last: Janne ‘Janne Laurila’ Laurila on vocals, Hannu ‘Tehosekoitin’ Kilkki on bass, Sepe ‘Amuri, Rock Siltanen Group etc.’ Krühn on drums, and Rami ‘Puny’ Kinnunen and Pasi ‘Alivaltiosihteeri’ Heikura on guitars.</p><p>Duration: 2 hours, incl. a 20-min intermission</p>" }, "name": { "fi": "Goldrust plays Neil Young & Crazy Horse – Neil Young 80 years tribute evening", "sv": "Goldrust plays Neil Young & Crazy Horse – Neil Young 80 years tribute evening", "en": "Goldrust plays Neil Young & Crazy Horse – Neil Young 80 years tribute evening" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67481/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67360", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299648/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299648/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299648/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494728, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T09:13:54.977791Z", "last_modified_time": "2026-02-05T09:13:54.977810Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781032.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494728/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T09:13:54.862347Z", "last_modified_time": "2026-03-20T01:13:14.176154Z", "date_published": null, "start_time": "2026-02-21T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B38F9C8DE4F60C73CD9567F7DC36BA51/Humiseva_harju_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B38F9C8DE4F60C73CD9567F7DC36BA51/Humiseva_harju_16_", "en": "http://www.malmitalo.fi/en/events/event/B38F9C8DE4F60C73CD9567F7DC36BA51/Humiseva_harju_16_" }, "description": { "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Humiseva harju (16) – Kino Helios", "sv": "Humiseva harju (16) – Kino Helios", "en": "Humiseva harju (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67360/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67359", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299670/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299670/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299670/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494733, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:15.414026Z", "last_modified_time": "2026-02-05T10:13:15.414040Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494733/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:15.304399Z", "last_modified_time": "2026-03-20T01:13:13.596993Z", "date_published": null, "start_time": "2026-02-21T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4D37507B00E2DD6221F4EC9C0333D22E/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4D37507B00E2DD6221F4EC9C0333D22E/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/4D37507B00E2DD6221F4EC9C0333D22E/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67359/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67358", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299695/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299695/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299695/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494737, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:00.272005Z", "last_modified_time": "2026-02-05T13:14:00.272039Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494737/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:00.157626Z", "last_modified_time": "2026-03-20T01:13:12.655713Z", "date_published": null, "start_time": "2026-02-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B89A16647CAB075DDB1331F846DD23E/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B89A16647CAB075DDB1331F846DD23E/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/0B89A16647CAB075DDB1331F846DD23E/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67358/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67357", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494732, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:14.697897Z", "last_modified_time": "2026-02-05T10:13:14.697912Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781028.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494732/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:14.560452Z", "last_modified_time": "2026-03-20T01:13:12.093242Z", "date_published": null, "start_time": "2026-02-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67357/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67556", "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": 1494193, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-11T10:13:13.444306Z", "last_modified_time": "2025-12-11T10:13:13.444325Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494193/?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:47.154475Z", "last_modified_time": "2026-03-20T01:13:10.747082Z", "date_published": null, "start_time": "2026-02-19T13: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": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.", "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.", "en": "The modern mammal city, Zootopia, is a city like no other." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70FA768275E3B3C7B5A3CB7D08413D5E/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/70FA768275E3B3C7B5A3CB7D08413D5E/Sportlovsbio_Zootropolis_7_", "en": "http://www.malmitalo.fi/en/events/event/70FA768275E3B3C7B5A3CB7D08413D5E/Winter_holiday_movie_Zootopia_7_" }, "description": { "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)", "sv": "Sportlovsbio: Zootropolis (7)", "en": "Winter holiday movie: Zootopia (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67556/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67555", "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": 1494171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.940907Z", "last_modified_time": "2025-12-10T11:12:46.940922Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494171/?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.876465Z", "last_modified_time": "2026-03-20T01:13:10.623207Z", "date_published": null, "start_time": "2026-02-19T11: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": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.", "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.", "en": "The modern mammal city, Zootopia, is a city like no other." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Sportlovsbio_Zootropolis_7_", "en": "http://www.malmitalo.fi/en/events/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Winter_holiday_movie_Zootopia_7_" }, "description": { "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)", "sv": "Sportlovsbio: Zootropolis (7)", "en": "Winter holiday movie: Zootopia (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67560", "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": 1494299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:42.536084Z", "last_modified_time": "2025-12-23T09:13:42.536100Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781719.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494299/?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:42.445377Z", "last_modified_time": "2026-03-20T01:13:10.383592Z", "date_published": null, "start_time": "2026-02-19T08:00:00Z", "end_time": "2026-02-19T11: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/EF79F0A9BA99798DF532A1FD7B912F80/Elainpoliisit_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF79F0A9BA99798DF532A1FD7B912F80/Konstverkstaden_Elainpoliisit", "en": "http://www.malmitalo.fi/en/events/event/EF79F0A9BA99798DF532A1FD7B912F80/Art_workshop_animal_police" }, "description": { "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Tässä pajassa koulutetaan pieniä eläinpoliiseja Zootropolis-elokuvan hengessä. Tule askartelemaan oma poliisihattusi, tietysti eläimen korvilla koristeltuna!</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 denna verkstad utbildas små djurpoliser i samma anda som i filmen Zootropolis. Kom och tillverka en egen polishatt, naturligtvis dekorerad med djuröron!</p><p>Verkstadens språk: finska</p><p>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>This workshop will train little animal police officers in the spirit of the film Zootropolis. Come and craft your own police hat – decorated with animal ears, of course!</p><p>Workshop language: Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Eläinpoliisit -taidepaja", "sv": "Konstverkstaden Eläinpoliisit", "en": "Art workshop: animal police" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67356", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299647/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299647/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-humiseva-harju-malmitalo-21299647/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494727, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T09:13:53.600489Z", "last_modified_time": "2026-02-05T09:13:53.600506Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781026.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494727/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T09:13:53.491783Z", "last_modified_time": "2026-03-20T01:13:10.104492Z", "date_published": null, "start_time": "2026-02-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C5D36907B2851948006E365B1AB1C573/Humiseva_harju_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C5D36907B2851948006E365B1AB1C573/Humiseva_harju_16_", "en": "http://www.malmitalo.fi/en/events/event/C5D36907B2851948006E365B1AB1C573/Humiseva_harju_16_" }, "description": { "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Humiseva harju (16) – Kino Helios", "sv": "Humiseva harju (16) – Kino Helios", "en": "Humiseva harju (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67356/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67355", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299551/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299551/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21299551/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494723, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T07:13:43.059892Z", "last_modified_time": "2026-02-05T07:13:43.059910Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781025.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494723/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T07:13:42.871912Z", "last_modified_time": "2026-03-20T01:13:09.772040Z", "date_published": null, "start_time": "2026-02-18T13: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/3D31662A1B62BBBE41DCEE1831812455/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3D31662A1B62BBBE41DCEE1831812455/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/3D31662A1B62BBBE41DCEE1831812455/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:67355/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67554", "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": 1494170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.626194Z", "last_modified_time": "2025-12-10T11:12:46.626209Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494170/?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.545343Z", "last_modified_time": "2026-03-20T01:13:09.610669Z", "date_published": null, "start_time": "2026-02-18T13: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/241A391A95BDC4E641A3A203524FA155/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/241A391A95BDC4E641A3A203524FA155/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/241A391A95BDC4E641A3A203524FA155/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:67554/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }