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=25
{ "meta": { "count": 1655, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=26", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?division=malmi&format=api&page=24" }, "data": [ { "id": "kulke:66006", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497910, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:29.537280Z", "last_modified_time": "2025-04-09T10:13:29.537290Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759095.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497910/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:29.524176Z", "last_modified_time": "2025-04-22T13:13:24.318003Z", "date_published": null, "start_time": "2025-05-09T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7A3651D921F19A09591DE231282D03F0/Kaikki_alkoi_aidistani_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7A3651D921F19A09591DE231282D03F0/Kaikki_alkoi_aidistani_S_", "en": "http://www.malmitalo.fi/en/events/event/7A3651D921F19A09591DE231282D03F0/Kaikki_alkoi_aidistani_S_" }, "provider": null, "description": { "fi": "<p>Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen.</p><p>Roland syntyi kampurajalkaisena, mikä esti häntä seisomasta. Vastoin kaikkien neuvoja hän lupasi pojalleen, että tämä oppisi vielä kävelemään kuten kaikki muutkin ja eläisi onnellisen elämän. Siitä hetkestä lähtien Esther omistautui täysin tämän lupauksen toteuttamiselle.</p><p>Vuosikymmeniä kestäneiden vaikeuksien ja ihmeiden myötä tämä elokuva kertoo tarinan uskomattomasta kohtalosta ja kaikkein suurimmasta rakkaudesta: äidin rakkaudesta lastaan kohtaan.</p><p>Ikäraja: S<br>Kesto: 104 min<br>Ensi-ilta: 17.04.2025<br>Kieli: ranska<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen." }, "location_extra_info": null, "name": { "fi": "Kaikki alkoi äidistäni (S) – Kino Helios", "sv": "Kaikki alkoi äidistäni (S) – Kino Helios", "en": "Kaikki alkoi äidistäni (S) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66006/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66005", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497908, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:28.957935Z", "last_modified_time": "2025-04-09T10:13:28.957948Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759091.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497908/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:28.945148Z", "last_modified_time": "2025-04-22T13:13:23.739423Z", "date_published": null, "start_time": "2025-05-07T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B313237E8D32C6D807522DABB3374CB7/Kaikki_alkoi_aidistani_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B313237E8D32C6D807522DABB3374CB7/Kaikki_alkoi_aidistani_S_", "en": "http://www.malmitalo.fi/en/events/event/B313237E8D32C6D807522DABB3374CB7/Kaikki_alkoi_aidistani_S_" }, "provider": null, "description": { "fi": "<p>Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen.</p><p>Roland syntyi kampurajalkaisena, mikä esti häntä seisomasta. Vastoin kaikkien neuvoja hän lupasi pojalleen, että tämä oppisi vielä kävelemään kuten kaikki muutkin ja eläisi onnellisen elämän. Siitä hetkestä lähtien Esther omistautui täysin tämän lupauksen toteuttamiselle.</p><p>Vuosikymmeniä kestäneiden vaikeuksien ja ihmeiden myötä tämä elokuva kertoo tarinan uskomattomasta kohtalosta ja kaikkein suurimmasta rakkaudesta: äidin rakkaudesta lastaan kohtaan.</p><p>Ikäraja: S<br>Kesto: 104 min<br>Ensi-ilta: 17.04.2025<br>Kieli: ranska<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen." }, "location_extra_info": null, "name": { "fi": "Kaikki alkoi äidistäni (S) – Kino Helios", "sv": "Kaikki alkoi äidistäni (S) – Kino Helios", "en": "Kaikki alkoi äidistäni (S) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66005/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66004", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497905, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:27.862338Z", "last_modified_time": "2025-04-09T10:13:27.862353Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759082.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497905/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:27.849820Z", "last_modified_time": "2025-04-22T13:13:22.649232Z", "date_published": null, "start_time": "2025-04-30T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E665D244A0FF96BDDBCF4AFAB1358216/Kaikki_alkoi_aidistani_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E665D244A0FF96BDDBCF4AFAB1358216/Kaikki_alkoi_aidistani_S_", "en": "http://www.malmitalo.fi/en/events/event/E665D244A0FF96BDDBCF4AFAB1358216/Kaikki_alkoi_aidistani_S_" }, "provider": null, "description": { "fi": "<p>Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen.</p><p>Roland syntyi kampurajalkaisena, mikä esti häntä seisomasta. Vastoin kaikkien neuvoja hän lupasi pojalleen, että tämä oppisi vielä kävelemään kuten kaikki muutkin ja eläisi onnellisen elämän. Siitä hetkestä lähtien Esther omistautui täysin tämän lupauksen toteuttamiselle.</p><p>Vuosikymmeniä kestäneiden vaikeuksien ja ihmeiden myötä tämä elokuva kertoo tarinan uskomattomasta kohtalosta ja kaikkein suurimmasta rakkaudesta: äidin rakkaudesta lastaan kohtaan.</p><p>Ikäraja: S<br>Kesto: 104 min<br>Ensi-ilta: 17.04.2025<br>Kieli: ranska<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen." }, "location_extra_info": null, "name": { "fi": "Kaikki alkoi äidistäni (S) – Kino Helios", "sv": "Kaikki alkoi äidistäni (S) – Kino Helios", "en": "Kaikki alkoi äidistäni (S) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66004/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66003", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kaikki-alkoi-aeidistaeni-3872778/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497902, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:26.966456Z", "last_modified_time": "2025-04-09T10:13:26.966471Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759076.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497902/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:26.930391Z", "last_modified_time": "2025-04-22T13:13:21.591626Z", "date_published": null, "start_time": "2025-04-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F48070B8B5374BCE00026D722EF3293A/Kaikki_alkoi_aidistani_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F48070B8B5374BCE00026D722EF3293A/Kaikki_alkoi_aidistani_S_", "en": "http://www.malmitalo.fi/en/events/event/F48070B8B5374BCE00026D722EF3293A/Kaikki_alkoi_aidistani_S_" }, "provider": null, "description": { "fi": "<p>Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen.</p><p>Roland syntyi kampurajalkaisena, mikä esti häntä seisomasta. Vastoin kaikkien neuvoja hän lupasi pojalleen, että tämä oppisi vielä kävelemään kuten kaikki muutkin ja eläisi onnellisen elämän. Siitä hetkestä lähtien Esther omistautui täysin tämän lupauksen toteuttamiselle.</p><p>Vuosikymmeniä kestäneiden vaikeuksien ja ihmeiden myötä tämä elokuva kertoo tarinan uskomattomasta kohtalosta ja kaikkein suurimmasta rakkaudesta: äidin rakkaudesta lastaan kohtaan.</p><p>Ikäraja: S<br>Kesto: 104 min<br>Ensi-ilta: 17.04.2025<br>Kieli: ranska<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Vuonna 1963 Esther synnytti Rolandin, suurperheen nuorimman sisaruksen." }, "location_extra_info": null, "name": { "fi": "Kaikki alkoi äidistäni (S) – Kino Helios", "sv": "Kaikki alkoi äidistäni (S) – Kino Helios", "en": "Kaikki alkoi äidistäni (S) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66003/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65485", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 161842, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-21T13:14:58.633234Z", "last_modified_time": "2025-01-21T13:14:58.633249Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759231.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161842/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-21T13:14:58.606651Z", "last_modified_time": "2025-04-22T13:13:21.258104Z", "date_published": null, "start_time": "2025-04-24T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5346723331557A73F06B4444E350CA89/Yleison_suosikit_Myrskyluodon_Maija_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5346723331557A73F06B4444E350CA89/Yleison_suosikit_Myrskyluodon_Maija_12_", "en": "http://www.malmitalo.fi/en/events/event/5346723331557A73F06B4444E350CA89/Yleison_suosikit_Myrskyluodon_Maija_12_" }, "provider": null, "description": { "fi": "<p>Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Elokuva on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella. Elokuva perustuu Anni Blomqvistin Myrskyluoto-kirjasarjaan ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin.</p><p>Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p><p>Kesto 163 min<br>Ikäraja 12<br>Kieli: ruotsi, englanti<br>Tekstitys: suomi <br>Vapaa pääsy!</p>", "sv": "<p>Stormskärs Maja är en berättelse om vilja, kraft och kärlek.</p><p>Stormskärs Maja är en rörande historia om en stark kvinna och de utmaningar hon möter på en stormig ö. Filmen är baserad på</p><p>Anni Blomqvists Stormskäret-bokserie och utspelar sig i kusttrakterna i 1800-talets Finland. Maja som är cirka 17 år gammal gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fullt av utmaningar och motgångar: som fiskarhustru är hon tvungen att klara av sin mans långa frånvaron på havet och ta hand om sin familj ensam.</p><p>Maja har dock vuxit till en självständig kvinna med stark vilja, som inte är rädd att ta itu med saker och ting i den karga skärgården. Maja och Janne har en stark kontakt och med tiden en djupare kärlek till varandra. Janne stöder sin hustrus strävanden och förstår att familjens styrka uppstår ur gemensamt bemödande.</p><p>Premiär: 19.01.2024</p><p>Manus och regi: Tiina Lymi</p><p>Åldersgräns: F 12<br>Längd: 2 h 45 min.<br>Språk: svenska<br>Textning: finska</p>", "en": "<p>Stormskerry Maja is a story of will, strength and love.</p><p>Stormskerry Maja is the touching story of a strong woman and the challenges she faces on a stormy island. The film is based on Anni Blomqvist’s Stormskerry book series and is set in coastal Finland in the 19th century. Against her will, the young 17-year-old Maja marries Janne, a fisherman. Her life on Stormskerry is full of challenges and adversity: as a fisherman’s wife, she has to cope with her husband’s long absences away at sea and look after her family on her own.</p><p>But Maja has grown into a strong-willed, independent woman who is not afraid to face the challenges of the rugged archipelago. Maja and Janne have a strong connection and a love that has deepened over time. Janne supports his wife’s efforts and understands that the strength of a family comes from joint efforts.</p><p>Premiere: 19 January 2024</p><p>Screenplay and direction: Tiina Lymi<br>Age limit: 12+<br>Duration: 2 hours 45 min<br>Language: Swedish<br>Subtitles: Finnish</p>" }, "short_description": { "fi": "Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.", "sv": "Stormskärs Maja är en berättelse om vilja, kraft och kärlek.", "en": "Stormskerry Maja is a story of will, strength and love." }, "location_extra_info": null, "name": { "fi": "Yleisön suosikit: Myrskyluodon Maija (12)", "sv": "Yleisön suosikit: Myrskyluodon Maija (12)", "en": "Yleisön suosikit: Myrskyluodon Maija (12)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65485/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66049", "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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 589169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-22T07:13:16.372623Z", "last_modified_time": "2025-04-22T07:13:16.372641Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_770622.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/589169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-22T07:13:16.263919Z", "last_modified_time": "2025-04-22T07:13:16.468725Z", "date_published": null, "start_time": "2025-04-24", "end_time": "2025-05-17", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/82DC7ED6F7F5AAD33E50ABB1B9FBECFB/Becky_Doris_Absurdistan_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/82DC7ED6F7F5AAD33E50ABB1B9FBECFB/Becky_Doris_Absurdistan_", "en": "http://www.malmitalo.fi/en/events/event/82DC7ED6F7F5AAD33E50ABB1B9FBECFB/Becky_Doris_Absurdistan_" }, "provider": null, "description": { "fi": "<p>Kuvataiteilijoiden Merja Hujon ja Suvi Laine-Karstenin installaatiokokonaisuus, joka rakentuu maalauksista, piirustuksista ja esinekoosteista.</p><p>Näyttelyn avajaiset keskiviikkona 23.4. klo 17–19. Tervetuloa!</p><p>Installaatiokokonaisuus on kahden taiteilijan yhdessä rakentama absurdi maailma, jossa paikoilleen jähmettyneet hahmot Becky ja Doris havainnoivat ympäröivää todellisuutta. Kokijoina Becky ja Doris ovat luoneet järjettömiltä tuntuvien maailmantapahtumien vastapainoksi kuvitteellisen todellisuuden, jossa vaikeatkin kokemukset on siiretty näennäisen kepeästi hullunkurisiin ja absurdeihinkin muotoihin.</p><p>Kukat, oudot hahmot, piirustusten omaperäiset kuviot ilmentävät todellisuutta helpommin lähestyttävässä, mutta silti ydinkokemuksen merkityksen säilyttävässsä olomuodossa. Teoskokonaisuudessa taiteilijat käsittelevät ihmisyksilön avuttomuutta inhimillistä kärsimystä tuottavien (maailman)tapahtumien edessä.</p><p><b>Merja Hujo</b> on taidemaalari, joka on aina utelias ja innokas löytämään uusia tekotapoja. Hän on erityisesti viime vuosina työstänyt kokonaisuuksia myös muilla tekniikoilla, kuten esim. piirtämällä. Hujon taiteessa on ominaista intensiteetti ja kokonaistunnelma. Aiheet teoksiin syntyvät usein havannoimalla ympäristöä, maailmaa ja ihmisen osaa siinä. Havainnot muotoutuvat usein teoksiksi, joihin sisäinen silmä luo uusia merkityksiä. Hän kutsuu taiteentekemistään seikkailuksi, joka ei pääty koskaan ja heittäytyy rohkeasti toteuttamaan ideoita, joista innostuu. Hujo on pitkän linjan puurtaja, joka on kymmenien yksityisnäyttelyiden lisäksi osallistunut yhteisnäyttelyihin myös ulkomailla. Hän on myös toiminut maalauksen ja kuvataiteen opettajana osa-aikaisesti sekä keikkalaisena vuosina 2001-2020.</p><p><b>Suvi Laine-Karsten</b> on helsinkiläinen kuvataiteilija, jonka taiteellinen ilmaisu on ensisijaisesti kuvataiteissa. Maalauksissaan Suvi suosii öljy-tai akryylivärejä, mutta työskentelee mielellään myös sekatekniikkaa käyttäen. Työskentelytapa on ekspressiivinen, prosessille antautuva tekeminen. Maalatessaan Suvi seuraa väriä, viivaa, muotoa, häivähtävää mielikuvaa, aavistusta ja antaa niiden johdatella sinne. Lopullinen tulos on useimmiten yllätys taiteilijallekin, joka kuitenkin työskentelee teostensa parissa myös erittäin määrätietoisesti. Maalauksissa korostuvat ihmisyyden ja tasa-arvon teemat. Suville taide on yhteyden luomista sisäisten mielikuvien ja ulkoisen todellisuuden välille: teokset ja intuition ohjaaman työskentelyprosessin tuotokset ovat peilipintoja, joihin hän heijastaa mielensä tulkintoja ulkoisen todellisuuden ilmiöistä.</p><p>Vapaa pääsy!</p>", "en": "<p>Visual artists Merja Hujo ja Suvi Laine-Karsten have set up an installation ensemble for Malmitalo Gallery that consists of paintings, drawings, assemblage art and a collection of objects.</p><p>Exhibition opening on Wednesday, April 23rd, from 5 to 7 PM. Welcome!</p><p>They have created an installation that presents an absurd world where imaginary beings Becky and Doris, standing frozen still, observe and experience the surrounding reality. They make their own world reality as a counterbalance to seemingly absurd world events. Even the most difficult experiences have been transformed into a bizarre and absurd form. Flowers, weird figures, the original patterns of drawing embody the state that easily evokes but preserves the meaning of the experience of a human being facing the helplessness and suffering (in front of today's world events).</p><p><b>Merja Hujo</b> is a painter who is always curious and eager to discover new methods of creation. In recent years, she has also been using a variety of techniques, such as drawing. Her art is characterised by intensity and an overall emotional atmosphere. The themes for her work often arise from observing the environment, the world, and humanity’s role within it. These observations are transformed into artworks in which the inner eye creates new meanings. She describes her artistic process as an adventure that never ends, and she throws herself into ideas that excite her with bold enthusiasm. Hujo is a long-standing, dedicated artist who, in addition to holding dozens of solo exhibitions, has also taken part in group exhibitions abroad. From 2001 to 2020, she also worked part-time and on a freelance basis as a teacher of painting and visual arts.</p><p><b>Suvi Laine-Karsten</b> is a visual artist based in Helsinki, whose artistic expression is primarily focused on the visual arts. In her paintings, Suvi favours oil or acrylic paints, though she also enjoys working with mixed media. Her approach is expressive and intuitive, fully immersed in the creative process. While painting, Suvi follows colour, line, form, fleeting images, and subtle impressions, allowing them to guide her. The result is often a surprise even to the artist herself – though she also works with a clear sense of direction. Her work highlights themes of humanity and equality. For Suvi, art is about creating a connection between inner imagery and external reality. Her artworks, shaped by an intuitive process, act as reflective surfaces onto which she projects interpretations of the phenomena of the external world.</p><p>Free admission!</p>" }, "short_description": { "fi": "Kuvataiteilijoiden Merja Hujon ja Suvi Laine-Karstenin installaatiokokonaisuus, joka rakentuu maalauksista, piirustuksista ja esinekoosteista.", "en": "Visual artists Merja Hujo ja Suvi Laine-Karsten have set up an installation ensemble for Malmitalo Gallery that consists of paintings, drawings, assemblage art and a collection of objects." }, "location_extra_info": null, "name": { "fi": "Becky & Doris, \"Absurdistan\" – Merja Hujo ja Suvi Laine-Karsten", "sv": "Becky & Doris, \"Absurdistan\" – Merja Hujo och Suvi Laine-Karsten", "en": "Becky & Doris, \"Absurdistan\" – Merja Hujo and Suvi Laine-Karsten" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64977", "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: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" }, { "@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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153654, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T09:15:57.779997Z", "last_modified_time": "2025-01-03T09:15:57.780014Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755423.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153654/?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-01-03T09:15:57.743646Z", "last_modified_time": "2025-04-14T08:13:13.239925Z", "date_published": null, "start_time": "2025-03-26", "end_time": "2025-04-17", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ADBB74511801EA137452AE6DC46D3A6E/Tuntupolku_nayttely_ja_elamystila_vauvoille_ja_taaperoille", "sv": "http://www.malmitalo.fi/sv/evenemang/event/ADBB74511801EA137452AE6DC46D3A6E/Tuntupolku_Kanslostigen_utstallning_och_upplevelserum_for_bebisar_och_smabarn", "en": "http://www.malmitalo.fi/en/events/event/ADBB74511801EA137452AE6DC46D3A6E/Tuntupolku_Feeling_path_an_exhibition_and_immersive_space_for_babies_and_toddlers" }, "provider": null, "description": { "fi": "<p>Tuntupolku on Malmitalon galleriassa oleva elämystila, joka luo mahdollisuuden lapsen ja aikuisen leikille ja vuorovaikutukselle.</p><p>Tuntupolku jakautuu neljään väritilaan, jotka ovat saaneet alkuideansa vuodenajoista. Tuntupolun varrella on mm. värikylpytyöpajoista tuttuja materiaaleja.</p><p>Tuntupolku tarjoaa vauva- ja taaperoikäisille kokemuksia erilaisten pintojen, tuntujen, materiaalien ja värien parissa. Pienelle ihmiselle moni sellainen, mikä on meille aikuisille perin tuttua, on ihmeellistä ja kiinnostavaa.</p><p>Tuntupolku on visuaalisesti kaunis tila, jonka taiteellisesta suunnittelusta ja toteutuksesta vastaa <b>Heli Arvilommi.</b></p><p>Vapaa pääsy!</p>", "sv": "<p>Känslostigen är ett upplevelserum i galleriet i Malms kulturhus, som skapar en möjlighet för barnet och den vuxna att leka och interagera.</p><p>Känslostigen delas in i fyra färgutrymmen, som inspirerats av årstiderna. Längs känslostigen finns bland annat material som är bekanta från färgbadsworkshoppar.</p><p>Känslostigen erbjuder bebisar och småbarn upplevelser av olika ytor, känslor, material och färger. För små människor är mycket av det vi vuxna är väldigt vana vid både förunderligt och intressant. Känslostigen är ett visuellt vackert utrymme.</p><p><b>Heli Arvilommi</b> står för den konstnärliga planeringen och genomförandet.</p>", "en": "<p>Tuntupolku is an immersive space in the Malmitalo gallery that provides an opportunity for children and adults to play and interact.</p><p>The Tuntupolku is divided into four spaces according to colour, which are inspired by the seasons. Along the Tuntupolku path, you will find familiar materials from the colour bath workshops, among other things.</p><p>Tuntupolku offers babies and toddlers experiences with different surfaces, textures, materials and colours. Much of what is totally familiar to us adults is amazing and fascinating to little ones.</p><p>Tuntupolku is a visually beautiful space, artistically designed and implemented by <b>Heli Arvilommi.</b></p>" }, "short_description": { "fi": "Tuntupolku on Malmitalon galleriassa oleva elämystila, joka luo mahdollisuuden lapsen ja aikuisen leikille ja vuorovaikutukselle.", "sv": "Känslostigen är ett upplevelserum i galleriet i Malms kulturhus, som skapar en möjlighet för barnet och den vuxna att leka och interagera.", "en": "Tuntupolku is an immersive space in the Malmitalo gallery that provides an opportunity for children and adults to play and interact." }, "location_extra_info": null, "name": { "fi": "Tuntupolku – näyttely ja elämystila vauvoille ja taaperoille", "sv": "Tuntupolku (Känslostigen) – utställning och upplevelserum för bebisar och småbarn", "en": "Tuntupolku (Feeling path) – an exhibition and immersive space for babies and toddlers" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64977/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64891", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/en/event/sibelius-lukion-big-band-slbb-here-comes-the-sun-music-of-the-beatles-malmitalo-20085039/", "sv": "https://www.lippu.fi/en/event/sibelius-lukion-big-band-slbb-here-comes-the-sun-music-of-the-beatles-malmitalo-20085039/", "en": "https://www.lippu.fi/en/event/sibelius-lukion-big-band-slbb-here-comes-the-sun-music-of-the-beatles-malmitalo-20085039/" }, "price": { "fi": "17,80 € / 11,10 €", "sv": "17,80 € / 11,10 €", "en": "17,80 € / 11,10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 464161, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-04T07:13:42.916934Z", "last_modified_time": "2025-04-04T07:13:42.916951Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761194.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/464161/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-04T07:13:42.889480Z", "last_modified_time": "2025-04-11T15:13:42.277112Z", "date_published": null, "start_time": "2025-05-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/25004F88694A4B3B820FDA42712242A0/Here_Comes_the_Sun_Music_of_The_Beatles_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/25004F88694A4B3B820FDA42712242A0/Here_Comes_the_Sun_Music_of_The_Beatles_", "en": "http://www.malmitalo.fi/en/events/event/25004F88694A4B3B820FDA42712242A0/Here_Comes_the_Sun_Music_of_The_Beatles_" }, "provider": null, "description": { "fi": "<p>SLBB esittää läpileikkauksen legendaarisen brittibändin tuotannosta. Tule todistamaan nuoren ison yhtyeen energiaa, säihkyvää solismia ja improvisaation iloa!</p><p>Sibelius-lukion big band (SLBB) on kahdenkymmenenkahden soittajan muodostama täysimittainen big band, joka on ollut toiminnassa pian kahden vuoden ajan. Pääkaupunkiseudun nuorista lahjakkuuksista koostuva yhtye tekee musiikkia kunnianhimoisesti ja tavoitteellisesti unohtamatta kuitenkaan soiton riemua.</p><p>Tässä konsertissa SLBB sukeltaa The Beatles -yhtyeen loputtoman mielenkiintoiseen maailmaan ja esittää läpileikkauksen uraauurtavan brittibändin inspiroivasta tuotannosta sovitettuna big bandille. Konsertissa kuultavilla sovituksilla yhtyeen musiikkia viedään odottamattomiinkin suuntiin, ja tarjolla on monipuolinen musiikillinen matka jazzin, funkin, rockin ja soulin parissa.</p><p>Tule todistamaan nuoren ison yhtyeen energiaa, säihkyvää solismia ja improvisaation iloa.</p><p>Kesto noin 1 tunti</p>" }, "short_description": { "fi": "SLBB esittää läpileikkauksen legendaarisen brittibändin tuotannosta. Tule todistamaan nuoren ison yhtyeen energiaa, säihkyvää solismia ja improvisaation iloa!" }, "location_extra_info": null, "name": { "fi": "Here Comes the Sun: Music of The Beatles – Sibelius-lukion Big Band", "sv": "Here Comes the Sun: Music of The Beatles", "en": "Here Comes the Sun: Music of The Beatles" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64891/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65336", "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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/", "sv": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/", "en": "https://www.lippu.fi/event/tuomo-rannankari-malmitalo-19384925/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153614, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-31T13:14:18.336711Z", "last_modified_time": "2024-12-31T13:14:18.336724Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760547.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153614/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-31T13:14:18.310465Z", "last_modified_time": "2025-04-11T08:13:30.553949Z", "date_published": null, "start_time": "2025-05-03T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5C0E5398AD75310DE1CE200D92665E6/LOPPUUNMYYTY_Tuomo_Rannankari", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A5C0E5398AD75310DE1CE200D92665E6/SLUTSALD_Tuomo_Rannankari", "en": "http://www.malmitalo.fi/en/events/event/A5C0E5398AD75310DE1CE200D92665E6/SOLD_OUT_Tuomo_Rannankari" }, "provider": null, "description": { "fi": "<p>Tuomo Rannankari esittää Malmitalossa tunnetuimpia lastenlaulujaan yhdessä muusikko Anssi Salmisen kanssa.</p><p>Tuomo Rannankari on TV:stä tuttu muusikko, lauluntekijä ja juontaja. Tuomon lastenlaulut ovat monille suomalaislapsille tuttuja esi- ja alkuopetuksen oppimateriaaleista, TV:n lastenohjelmista sekä muista lasten konserteista. Hänet palkittiin työstään Vuoden lastenmusiikintekijä -palkinnolla vuonna 2019. Tuomo on levyttänyt kolme lastenlevyä sekä Sininen pallo -levyn yhdessä Oulu Sinfonian kanssa. Lisäksi hän on vieraillut myös Muumi-levyn solistina.</p><p>Malmitalon konsertissa Tuomo esiintyy duona yhdessä muusikko Anssi Salmisen kanssa. Konsertissa kuullaan Tuomon tunnetuimpia kappaleita, kuten ”Hiekkakakkuorkesteri”, ”Pomppimaan”, ”Seikkailulaulu” ja ”Sininen pallo”.</p><p>Kesto: noin 45 min</p>", "sv": "<p>Tuomo Rannankari framför sina mest kända barnsånger på Malms kulturhus tillsammans med musikern Anssi Salminen.</p><p>Tuomo Rannankari är en musiker, låtskrivare och programledare som är välkänd från TV. Tuomos barnsånger är kända för många finländska barn från för- och elementarundervisningens läromaterial, barnprogram på TV samt konserter. År 2019 belönades han för sitt arbete med priset Vuoden lastenmusiikintekijä. Tuomo har spelat in tre barnalbum samt albumet Sininen pallo tillsammans med Oulu Sinfonia. Han har också gästat som solist på Mumin-albumet.</p><p>På konserten i Malms kulturhus framträder Tuomo som duo tillsammans med musikern Anssi Salminen. På konserten får vi höra Tuomos mest kända låtar, såsom “Hiekkakakkuorkesteri”, “Pomppimaan”, “Seikkailulaulu” och “Sininen pallo”.</p><p>Längd: ca 45 min.</p>", "en": "<p>Tuomo Rannankari will perform his best-known children’s songs in Malmitalo together with musician Anssi Salminen.</p><p>Tuomo Rannankari is a well-known musician, songwriter and TV host. Tuomo’s children’s songs are familiar to many Finnish children from pre-school and early childhood education materials, children’s TV programmes and concerts. He received the 2019 Children’s Music Writer of the Year award for his work. Tuomo has recorded three children’s albums and the Sininen pallo album with the Oulu Symphony Orchestra. He has also appeared as a guest vocalist on the Moomin album.</p><p>At the Malmitalo concert, Tuomo will perform in a duo with musician Anssi Salminen. The concert will feature some of Tuomo’s best-known songs, such as “Hiekkakakkuorkesteri”, “Pomppimaan”, “Seikkailulaulu” and “Sininen pallo”.</p><p>Duration: approx. 45 min</p>" }, "short_description": { "fi": "Tuomo Rannankari esittää Malmitalossa tunnetuimpia lastenlaulujaan yhdessä muusikko Anssi Salmisen kanssa.", "sv": "Tuomo Rannankari framför sina mest kända barnsånger på Malms kulturhus tillsammans med musikern Anssi Salminen.", "en": "Tuomo Rannankari will perform his best-known children’s songs in Malmitalo together with musician Anssi Salminen." }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Tuomo Rannankari", "sv": "SLUTSÅLD Tuomo Rannankari", "en": "SOLD OUT Tuomo Rannankari" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65336/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65544", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/", "sv": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/", "en": "https://www.lippu.fi/event/the-animals-uk-malmitalo-19810601/" }, "price": { "fi": "48,90 €", "sv": "48,90 €", "en": "48,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201801, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T14:15:21.366962Z", "last_modified_time": "2025-02-07T14:15:21.366980Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765121.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201801/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-07T14:15:21.314870Z", "last_modified_time": "2025-04-11T08:13:27.464666Z", "date_published": null, "start_time": "2025-04-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E30C1D189C161D42764F4F8F4CE1722/LOPPUUNMYYTY_The_Animals_UK_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E30C1D189C161D42764F4F8F4CE1722/SLUTSALD_The_Animals_UK_", "en": "http://www.malmitalo.fi/en/events/event/8E30C1D189C161D42764F4F8F4CE1722/SOLD_OUT_The_Animals_UK_" }, "provider": null, "description": { "fi": "<p>Suuren kysynnän vuoksi The Animalsin lisäkonsertti nyt myynnissä!</p><p>\"House of the Rising Sun\", \"We Gotta Get Out of This Place\", \"Dont Let Me Be Understood\", \"It´s My Life\", \"I Put A Spell On You\", \"Boom Boom\" och \"Bring It On Home To Me”… Tällä hittilistalla The Animalsista (UK) on kiistatta yksi maailman vaikutusvaltaisimmista yhtyeistä. Sen nimekkäiden fanien joukkoon lukeutuu muun muassa Bruce Springsteen.</p><p>Vuonna 1964 energisen rock and rollin aalto pyyhkäisi maailman nuorison yli ja sen harjalla ratsastivat The Beatles, The Rolling Stones - ja tietysti John Steelin ja Eric Burdonin perustama The Animals. Nimensä yhtye sai villistä lavaesiintymisestään.</p><p>Vaikka The Animalsin meno lavalla on sittemmin rauhoittunut, pian kuusikymppisiään juhlivan bändin musiikki on vähintäänkin voimissaan ja legenda vain kasvaa. Hiljattain Classic Rock magazine nosti yhtyeen debyyttialbumin ”50 Albums That Built Blues Rock” -listalleen.</p><p>Alkuperäisestä kokoonpanosta mukana on toinen perustajajäsen John Steel. Lisäksi yhtyeessä soittavat Danny Handley, Barney Williams ja Norman Helm.</p><p>Kesto: 1 h 15 min<br>Ikäsuositus: 7</p>", "sv": "<p>Legendariska The Animals återkommer till Malms kulturhus!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Dont Let Me Be Understood”, “It´s My Life”, “I Put A Spell On You”, “Boom Boom” och “Bring It On Home To Me”… Med denna hitlista är The Animals (UK) otvivelaktigt ett av världens med inflytelserika band. Bland annat Bruce Springsteen räknas bland dess berömda fans.</p><p>År 1964 svepte en våg av energisk rock and roll över världens ungdom och på dess krön red The Beatles, The Rolling Stones – och naturligtvis The Animals, som grundades av John Steel och Eric Burdon. Bandet fick sitt namn av det vilda framträdandet på scenen.</p><p>Även om The Animals fart på scenen har lugnat ner sig sedan dess, är det snart sextioåriga bandets musik i minst lika god form och legenden bara växer. Classic Rock Magazine tog nyligen upp bandets debutalbum på sin lista “50 Albums That Built Blues Rock”.</p><p>Av den ursprungliga ensemblen kvarstår en av de grundande medlemmarna, John Steel. Dessutom spelar Danny Handley, Barney Williams och Norman Helm i bandet.</p><p>Längd: 1 h 15 min.</p>", "en": "<p>The legendary The Animals are coming back to Malmitalo!</p><p>“House of the Rising Sun”, “We Gotta Get Out of This Place”, “Don’t Let Me Be Misunderstood”, “It’s My Life”, “I Put A Spell On You”, “Boom Boom” and “Bring It On Home To Me”... With this hit list, The Animals (UK) are arguably one of the most influential bands in the world. Bruce Springsteen is one of their most prominent fans.</p><p>In 1964, a wave of energetic rock and roll swept the world’s youth, led by The Beatles, The Rolling Stones – and of course The Animals, founded by John Steel and Eric Burdon. The band’s name comes from their wild stage presence.</p><p>Although The Animals have since slowed down on stage, the music of a band about to celebrate their sixtieth anniversary is at least as powerful as ever, and their legend is only growing. Recently, Classic Rock magazine included the band’s debut album in its “50 Albums That Built Blues Rock” list.</p><p>John Steel is one of the two founding members of the original band, who is joined in the current line-up by musicians Danny Handley, Barney Williams and Norman Helm.</p><p>Duration: 1 h 15 min</p>" }, "short_description": { "fi": "Suuren kysynnän vuoksi The Animalsin lisäkonsertti nyt myynnissä!", "sv": "Legendariska The Animals återkommer till Malms kulturhus!", "en": "The legendary The Animals are coming back to Malmitalo!" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY The Animals (UK) – Jäähyväiskiertue", "sv": "SLUTSÅLD The Animals (UK) – Avskedsturné", "en": "SOLD OUT The Animals (UK) – Farewell tour" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65544/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64845", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "sv": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "en": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/" }, "price": { "fi": "16,80 € / 10 €", "sv": "16,80 € / 10 €", "en": "16,80 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 330629, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-12T13:15:03.117634Z", "last_modified_time": "2025-03-12T13:15:03.117648Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760476.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330629/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-12T13:15:03.099891Z", "last_modified_time": "2025-04-10T11:14:25.383696Z", "date_published": null, "start_time": "2025-05-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A48862D591F412DCA0BA344EFBEF7B63/Lumikki_ja_seitseman_kaapiota", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A48862D591F412DCA0BA344EFBEF7B63/Snovit_och_de_sju_dvargarna", "en": "http://www.malmitalo.fi/en/events/event/A48862D591F412DCA0BA344EFBEF7B63/Snow_White_and_the_seven_dwarfs" }, "provider": null, "description": { "fi": "<p>Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.</p><p>Balettikoulu Anne Hirvonen on vuodesta 1997 toiminut balettikoulu. Balettikoulu antaa ammattitaitoista tanssitaiteen opetusta eri ikäisille ja tasoisille oppilaille. Opetusaineet ovat klassinen baletti ja lastentanssi.</p><p>Lue lisää toiminnasta:<br><u><a>https://www.balettikouluannehirvonen.com</a></u></p><p>Kesto: 1 t</p>", "sv": "<p>Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.</p><p>Balettikoulu Anne Hirvonen är en balettskola som varit verksam sedan 1997. Balettskolan erbjuder professionell undervisning i dans för elever i olika åldrar och på olika nivåer. Skolan undervisar i klassisk balett och barndans.</p><p>Längd: 1 h</p>", "en": "<p>The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year.</p><p>Ballet school Anne Hirvonen has been active since its establishment in 1997. The school offers professional-level dance instruction to dancers of different ages and skill levels. The school teaches classic ballet and children's dance.</p><p>Duration: 1 h</p>" }, "short_description": { "fi": "Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.", "sv": "Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.", "en": "The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year." }, "location_extra_info": null, "name": { "fi": "Lumikki ja seitsemän kääpiötä – Balettikoulu Anne Hirvosen kevätnäytös", "sv": "Snövit och de sju dvärgarna", "en": "Snow White and the seven dwarfs – Ballet school Anne Hirvonen’s spring performance" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64845/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64844", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "sv": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/", "en": "https://www.lippu.fi/artist/balettikoulu-anne-hirvonen/" }, "price": { "fi": "16,80 € / 10 €", "sv": "16,80 € / 10 €", "en": "16,80 € / 10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 330628, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-12T13:15:02.994675Z", "last_modified_time": "2025-03-12T13:15:02.994697Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760475.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330628/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-12T13:15:02.973101Z", "last_modified_time": "2025-04-10T11:14:25.314332Z", "date_published": null, "start_time": "2025-05-10T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F5178FF38221B7147B3054341866D779/Lumikki_ja_seitseman_kaapiota", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F5178FF38221B7147B3054341866D779/Snovit_och_de_sju_dvargarna", "en": "http://www.malmitalo.fi/en/events/event/F5178FF38221B7147B3054341866D779/Snow_White_and_the_seven_dwarfs" }, "provider": null, "description": { "fi": "<p>Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.</p><p>Balettikoulu Anne Hirvonen on vuodesta 1997 toiminut balettikoulu. Balettikoulu antaa ammattitaitoista tanssitaiteen opetusta eri ikäisille ja tasoisille oppilaille. Opetusaineet ovat klassinen baletti ja lastentanssi.</p><p>Lue lisää toiminnasta:<br><u><a>https://www.balettikouluannehirvonen.com</a></u></p><p>Kesto: 1 t</p>", "sv": "<p>Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.</p><p>Balettikoulu Anne Hirvonen är en balettskola som varit verksam sedan 1997. Balettskolan erbjuder professionell undervisning i dans för elever i olika åldrar och på olika nivåer. Skolan undervisar i klassisk balett och barndans.</p><p>Längd: 1 h</p>", "en": "<p>The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year.</p><p>Ballet school Anne Hirvonen has been active since its establishment in 1997. The school offers professional-level dance instruction to dancers of different ages and skill levels. The school teaches classic ballet and children's dance.</p><p>Duration: 1 h</p>" }, "short_description": { "fi": "Ihastuttava klassikko nyt balettikoulu Anne Hirvosen esittämänä! Kevätnäytöksessä oppilaat esittelevät vuoden aikana opittuja taitojaan.", "sv": "Denna charmiga klassiker framförs nu av balettskolan Balettikoulu Anne Hirvonen! I vårföreställningen visar eleverna vad de har lärt sig under året.", "en": "The lovable classic now performed by Ballet school Anne Hirvonen! In the spring performance, the dancers will showcase what they have learned in the past year." }, "location_extra_info": null, "name": { "fi": "Lumikki ja seitsemän kääpiötä – Balettikoulu Anne Hirvosen kevätnäytös", "sv": "Snövit och de sju dvärgarna", "en": "Snow White and the seven dwarfs – Ballet school Anne Hirvonen’s spring performance" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64844/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66009", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:29.825869Z", "last_modified_time": "2025-04-09T10:13:29.825882Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759097.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497911/?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-04-09T10:13:29.814058Z", "last_modified_time": "2025-04-09T10:13:29.867003Z", "date_published": null, "start_time": "2025-05-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_", "en": "http://www.malmitalo.fi/en/events/event/2778967AA8981C43D944BBDF1499662A/Minecraft_7_" }, "provider": null, "description": { "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>" }, "short_description": { "fi": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi." }, "location_extra_info": null, "name": { "fi": "Minecraft (7) – Kino Helios", "sv": "Minecraft (7) – Kino Helios", "en": "Minecraft (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66009/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66012", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:29.433288Z", "last_modified_time": "2025-04-09T10:13:29.433301Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759094.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:29.418704Z", "last_modified_time": "2025-04-09T10:13:29.467343Z", "date_published": null, "start_time": "2025-05-09T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_", "en": "http://www.malmitalo.fi/en/events/event/EE22CDC3FAF63264849593E1F3F08D25/Orenda_7_" }, "provider": null, "description": { "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta." }, "location_extra_info": null, "name": { "fi": "Orenda (7) – Kino Helios", "sv": "Orenda (7) – Kino Helios", "en": "Orenda (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66012/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66008", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497907, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:28.376110Z", "last_modified_time": "2025-04-09T10:13:28.376127Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759088.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497907/?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-04-09T10:13:28.363322Z", "last_modified_time": "2025-04-09T10:13:28.414860Z", "date_published": null, "start_time": "2025-05-03T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_", "en": "http://www.malmitalo.fi/en/events/event/3B2B623C7E0DAABC9167FA78D7CA2D7A/Minecraft_7_" }, "provider": null, "description": { "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>" }, "short_description": { "fi": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi." }, "location_extra_info": null, "name": { "fi": "Minecraft (7) – Kino Helios", "sv": "Minecraft (7) – Kino Helios", "en": "Minecraft (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66008/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66011", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497906, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:28.178320Z", "last_modified_time": "2025-04-09T10:13:28.178345Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759086.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497906/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:28.163998Z", "last_modified_time": "2025-04-09T10:13:28.214969Z", "date_published": null, "start_time": "2025-05-02T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_", "en": "http://www.malmitalo.fi/en/events/event/E6A5EA9534FFBA6408FF5322A51A214F/Orenda_7_" }, "provider": null, "description": { "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta." }, "location_extra_info": null, "name": { "fi": "Orenda (7) – Kino Helios", "sv": "Orenda (7) – Kino Helios", "en": "Orenda (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66011/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66007", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-minecraft-dub-3872784/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497904, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:27.458128Z", "last_modified_time": "2025-04-09T10:13:27.458141Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759079.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497904/?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-04-09T10:13:27.444063Z", "last_modified_time": "2025-04-09T10:13:27.504051Z", "date_published": null, "start_time": "2025-04-26T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_", "en": "http://www.malmitalo.fi/en/events/event/8DE576A27027CCD9EC4E62415ED4EC9F/Minecraft_7_" }, "provider": null, "description": { "fi": "<p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi.</p><p>Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen.</p><p>Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa.</p><p>Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Ikäraja: 7<br>Kesto: 101 min<br>Ensi-ilta: 04.04.2025<br>Kieli: puhuttu suomeksi</p>" }, "short_description": { "fi": "Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Dubattu suomeksi." }, "location_extra_info": null, "name": { "fi": "Minecraft (7) – Kino Helios", "sv": "Minecraft (7) – Kino Helios", "en": "Minecraft (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66007/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66010", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-orenda-3872783/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497903, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T10:13:27.080715Z", "last_modified_time": "2025-04-09T10:13:27.080729Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759077.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497903/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T10:13:27.065115Z", "last_modified_time": "2025-04-09T10:13:27.115258Z", "date_published": null, "start_time": "2025-04-25T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_", "en": "http://www.malmitalo.fi/en/events/event/D7C7954F1D4121A36771C87E1AA055D7/Orenda_7_" }, "provider": null, "description": { "fi": "<p>Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta.</p><p>Suomen kansainvälisesti juhlituimpiin ohjaajiin kuuluva Pirjo Honkasalo (mm. Betoniyö, Melancholian 3 huonetta) tekee henkeäsalpaavan paluun uutuudellaan Orenda. Kaksi voimakastahtoista naista (Alma Pöysti ja Pirkko Saisio) kohtaavat maagisissa saaristomaisemissa.</p><p>Kumpaakin kuristaa syyllisyys menetetystä miehestä, jonka muisto kietoo heidät yhteen. Mitä levoton oopperalaulaja ja äkkiväärä pappi toisistaan oikein hakevat?</p><p>Pirkko Saision käsikirjoituksen arvoituksellisessa vireessä soi elämän näkymätön voima, orenda.</p><p>Ikäraja: 7<br>Kesto: 118 min<br>Ensi-ilta: 17.04.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Arkitodellisuuden rajoja venyttävä Orenda on virtaava tarina armosta ja ankaruudesta." }, "location_extra_info": null, "name": { "fi": "Orenda (7) – Kino Helios", "sv": "Orenda (7) – Kino Helios", "en": "Orenda (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66010/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65999", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-flow-3872758/" }, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T09:13:26.598035Z", "last_modified_time": "2025-04-09T09:13:26.598047Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759098.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T09:13:26.584298Z", "last_modified_time": "2025-04-09T09:13:26.630929Z", "date_published": null, "start_time": "2025-05-10T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_", "en": "http://www.malmitalo.fi/en/events/event/F6BC51E1000A48597091B7F0696C1642/Flow_7_" }, "provider": null, "description": { "fi": "<p>Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.</p><p>Rohkea kissa kohtaa suuren hyökyaallon. Kissa pelastautuu veneeseen iloisen koiran, väsyneen kapybaran, ilkikurisen makin ja äkäisen linnun kanssa. Eläimet tekevät seikkailuntäyteisen matkan läpi upean luonnon ja salaperäisten kaupunkien – uuden vieraan maailman, jossa yhteistyö ja ystävyys ovat tärkeintä.</p><p>Dialogittomassa elokuvassa korostuu musiikki, joka on osittain työstetty Suomessa! Fantastinen elokuvakokemus sekä lapsille että aikuisille on hukutettu suurimpiin kansainvälisiin palkintoihin, kruununa parhaan animaation Oscar.</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 28.03.2025</p><p>Tekstitys: ei puhuttua dialogia</p>", "sv": "<p>Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.</p><p>En modig katt möter en stor tsunami. Katten räddar sig i en båt tillsammans med en glad hund, en trött kapybara, en busig maki och en arg fågel. Djuren gör en äventyrlig resa genom storslagen natur och mystiska städer – en ny och främmande värld där samarbete och vänskap är det viktigaste.</p><p>I den dialoglösa filmen står musiken i centrum – och delar av den är skapad i Finland! En fantastisk filmupplevelse för både barn och vuxna, överöst med de största internationella priserna, med en Oscar för bästa animerade film som kronan på verket.</p><p>Åldersgräns: 7 år<br>Längd: 85 min<br>Textning: ingen talad dialog</p>", "en": "<p>Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature.</p><p>A brave cat faces a massive tsunami. The cat escapes in a boat with a cheerful dog, a tired capybara, a mischievous lemur, and a grumpy bird. Together, the animals embark on an adventure through breathtaking nature and mysterious cities – a strange new world where cooperation and friendship matter most.</p><p>In this dialogue-free film, music takes the spotlight – and part of it was crafted in Finland! A fantastic cinematic experience for both children and adults, showered with top international awards, crowned by the Oscar for Best Animated Feature.</p><p>Age rating: 7<br>Duration: 85 min<br>Subtitles: no spoken dialogue</p>" }, "short_description": { "fi": "Flow on lumoavasti animoitu, tunteellinen seikkailuelokuva, jossa eläimet todella saavat käyttäytyä kuten luonnossa. Parhaan animaation Oscar-voittaja.", "sv": "Flow är en förtrollande animerad, känslosam äventyrsfilm där djuren verkligen får bete sig som i naturen. Vinnare av Oscar för bästa animerade film.", "en": "Flow is a beautifully animated, emotional adventure film where animals are truly allowed to behave as they do in nature." }, "location_extra_info": null, "name": { "fi": "Flow (7) – Kino Helios", "sv": "Flow (7) – Kino Helios", "en": "Flow (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65999/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-black-bag-3872765/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 497618, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-09T09:13:25.853228Z", "last_modified_time": "2025-04-09T09:13:25.853242Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759092.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/497618/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-09T09:13:25.841104Z", "last_modified_time": "2025-04-09T09:13:25.889964Z", "date_published": null, "start_time": "2025-05-07T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_", "en": "http://www.malmitalo.fi/en/events/event/D0F066BFACC3E4DFA9245DF21574F361/Black_Bag_12_" }, "provider": null, "description": { "fi": "<p>Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä.</p><p>Ohjaaja Steven Soderberghin uusi elokuva Black Bag on tiivistunnelmainen vakoiludraama. Elokuva kertoo kahdesta legendaarisesta tiedustelupalvelun agentista, George Woodhousesta ja hänen rakkaasta vaimostaan Kathrynistä.</p><p>Kun Kathrynia epäillään maanpetoksesta, George joutuu äärimmäiseen koetukseen – hänen on päätettävä, ollako lojaali vaimolleen vai kotimaalleen.</p><p>Pääosissa: Cate Blanchett ja Michael Fassbender</p><p>Ikäraja: 12<br>Kesto: 94 min<br>Ensi-ilta: 17.04.2025<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Vakoiludraama kahdesta legendaarisesta tiedustelupalvelun agentista: George Woodhousesta ja hänen vaimostaan Kathrynistä." }, "location_extra_info": null, "name": { "fi": "Black Bag (12) – Kino Helios", "sv": "Black Bag (12) – Kino Helios", "en": "Black Bag (12) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }