Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=42&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11864, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=43&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=41&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kultus:agn7tyguzi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": { "fi": "", "sv": "", "en": "" }, "price": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:56/?format=api" } ], "created_time": "2026-01-26T10:36:59.993069Z", "last_modified_time": "2026-01-26T11:11:14.584336Z", "date_published": null, "start_time": "2026-03-04T10:00:00Z", "end_time": "2026-03-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": "2026-01-26T13:15:00+02:00", "enrolment_end_time": "2026-03-10T12:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Kokeilu", "sv": "", "en": "" }, "info_url": { "fi": "https://helsinginkaupunki.sharepoint.com/sites/intra-kuva", "sv": "", "en": "" }, "description": { "fi": "<p>Kokeilu</p>\n", "sv": "", "en": "" }, "name": { "fi": "Kokeilu", "sv": "", "en": "" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agn7tyguzi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67869", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T13:13:39.580153Z", "last_modified_time": "2026-01-23T13:13:31.376110Z", "date_published": null, "start_time": "2026-01-12", "end_time": "2026-05-09", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Taidepaja Kipinän Vauvojen värikylpy -työpajoissa ihmetellään, tutkitaan ja nautitaan taiteen tekemisen riemusta.", "sv": "Taidepaja Kipinäs Baby Color Bath -verkstäderna undrar du, utforskar och njuter av glädjen att göra konst.", "en": "Taidepaja Kipinä's Baby Color Bath workshops let you wonder, explore and enjoy the joy of making art." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4F930B5013C236773AD0920A2FE20214/Taidepaja_Kipina_Vauvojen_varikylpy", "sv": "http://www.annantalo.fi/sv/evenemang/event/4F930B5013C236773AD0920A2FE20214/Baby_colour_bath_-_kunst_verkstader", "en": "http://www.annantalo.fi/en/events/event/4F930B5013C236773AD0920A2FE20214/Baby_Color_Bath_Art_workshops" }, "description": { "fi": "<p>Taidepaja Kipinän Vauvojen värikylpy -työpajoissa ihmetellään, tutkitaan ja nautitaan taiteen tekemisen riemusta.</p><p>Vauvojen värikylpy -työpajat ovat vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä oman aikuisen kanssa. Työskentelyn alussa virittäydytään päivän teemaan erilaisia materiaaleja, taidetta, valoa ja värejä tutkien, mistä edetään itse tuotettuun jälkeen. Työpajoissa maaliaineina käytetään turvallisia elintarvikepohjaisia aineita.</p><p>Työskentely on usein sotkuisaa ilottelua ja 45min työpaja päättyykin pesuihin, johon kannattaa varautua pyyhkeellä. Työpajoja järjestetään vauva- (4-11kk) ryhminä sekä taapero- (1-2v.) ryhminä. Työpajoja toteutetaan yhden kerran työpajoina sekä 4 kerran kursseina.</p><p>Yhteen työpajaan mahtuu 9 lapsi-aikuinen paria. Työpajaa ohjaa koulutettu ohjaaja Ruusu-Maria Lappalainen</p><p>Opetuskieli on suomi.</p><p>Värikylpyjen kellonajat:</p><p>10-10.45: 4-11 kk<br>11.30-12.15: 1-2vuotiaat</p><p>Yksittäiset työpajakerrat maanantaisin<br>12.1.-13.4.2026</p><p>Neljän kerran kurssi maanantaisin:<br>20.-11.5.2026</p><p>Hinta: 25€/ yksittäinen työpaja, aikuinen ja lapsi -pari; 75€/ 4 kerran kurssi, aikuinen ja lapsi -pari</p><p>Työpajoihin ilmoittaudutaan erillisellä lomakkeella Taidepaja Kipinän nettisivun kautta: www.taidepajakipina.fi/kauppa</p><p>Ilmoittautuminen työpajoihin sulkeutuu 2 päivää ennen yksittäistä työpajakertaa ja 5 päivää ennen kurssin alkua.</p>", "sv": "<p>Taidepaja Kipinäs Baby Color Bath -verkstäderna undrar du, utforskar och njuter av glädjen att göra konst.</p><p>Baby color bath workshops är en multisensorisk konstverkstad riktad till familjer med bebisar, där man utforskar och undrar tillsammans med sin egen vuxen. I början av arbetet stämmer vi in på dagens tema genom att utforska olika material, konst, ljus och färger, där vi går vidare efter det egenproducerade verket.</p><p>Säkra livsmedelsbaserade ämnen används som färg i verkstäderna. Att jobba är ofta stökigt roligt och den 45 minuter långa workshopen avslutas med tvätt, vilket man bör vara förberedd på med en handduk. Workshops anordnas i barngrupper (4-11 månader) och småbarnsgrupper (1-2 år). Workshoparna genomförs en gång som engångsworkshops och fyra gånger som en serie.</p><p>En workshop rymmer 9 barn-vuxna par. Workshopen leds av utbildad instruktör Ruusu-Maria Lappalainen.</p><p>Undervisningspråk är finska.</p><p>Tider för färgbad:</p><p>10-10.45: 4-11 månader<br>11.30-12.15: 1-2 år</p><p>Individuella workshops på måndagar:<br>12.1.-13.4.2026</p><p>Fyra gånger kurser på måndagar:<br>20.4.-11.5.2026</p><p>Pris: 25€/ enkel workshop, vuxen och barn i par; 75€/ 4 gånger kurs, vuxen och barn i par</p><p>Anmälan till workshops görs via ett separat formulär på Taidepaja Kipinä webbplats: taidepajakipina.fi/kauppa.</p><p>Anmälan till en gång workshops stänger två dagar före workshopens början och fem dagar före kursen börjas.</p>", "en": "<p>Taidepaja Kipinä's Baby Color Bath workshops let you wonder, explore and enjoy the joy of making art.</p><p>Baby color bath workshops is a multisensory art workshop aimed at families with babies, where you can explore and wonder together with your own children. At the beginning of the work, we are going to explore today's theme, genom, to explore different materials, art, light and colors, where we will continue after the self-produced work.</p><p>Safe food-based substances are used as paint in the workshops. Working is often messy fun and the 45-minute workshop is packed with fun, as you should be prepared with a towel cloth. Workshops are organized in children's groups (4-11 months) and small children's groups (1-2 years). The workshop was carried out four times as an introductory workshop and four times as a series.</p><p>One workshop accommodates 9 child-adult pairs. Workshop led by trained instructor Ruusu-Maria Lappalainen.</p><p>The workshops are taught in Finnish.</p><p>Times for colour baths:</p><p>10-10.45: 4-11 months old<br>11.30-12.15: 1-2 years old</p><p>Individual workshops on Mondays:<br>12.1.-13.4.2026</p><p>Four times courses on Mondays:<br>20.4.-11.5.2026</p><p>Price: 25€/ single workshop, adult and child pair; 75€/ 4 times course, adult and child pair</p><p>Registration for workshops is done using a separate form on Taidepaja Kipinä website: www.taidepajakipina.fi/kauppa</p><p>Registration for workshops closes 2 days before the individual workshop session and 5 days before the start of the course.</p>" }, "name": { "fi": "Taidepaja Kipinä: Vauvojen värikylpy – 4-11 kk sekä 1-2-vuotiaat", "sv": "Baby colour bath - kunst verkstäder – 4-11 månader och 1-2-åringar", "en": "Baby Color Bath: Art workshops – 4-11 months and 1-2 year olds" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67869/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67325", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494255, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-18T14:13:39.874516Z", "last_modified_time": "2025-12-18T14:13:39.874540Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780964.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-17T12:13:43.447176Z", "last_modified_time": "2026-01-22T16:13:26.758322Z", "date_published": null, "start_time": "2026-01-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2D3C07928D9C8F1942313AC536E05860/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2D3C07928D9C8F1942313AC536E05860/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/2D3C07928D9C8F1942313AC536E05860/Terasleidit_7_kuin_viimeista_paivaa" }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67325/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67319", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494130, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T12:13:55.944431Z", "last_modified_time": "2025-12-08T12:13:55.944447Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780955.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T12:13:55.840093Z", "last_modified_time": "2026-01-22T16:13:25.802340Z", "date_published": null, "start_time": "2026-01-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/64AD5853D84DB7CA1BE8D74D7FACC406/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/64AD5853D84DB7CA1BE8D74D7FACC406/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/64AD5853D84DB7CA1BE8D74D7FACC406/Terasleidit_7_kuin_viimeista_paivaa" }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67319/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67318", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494129, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T12:13:55.544609Z", "last_modified_time": "2025-12-08T12:13:55.544624Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780953.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494129/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T12:13:55.383931Z", "last_modified_time": "2026-01-22T16:13:25.445341Z", "date_published": null, "start_time": "2026-01-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EEBCF783C60671D40D095F7B3D7038F2/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EEBCF783C60671D40D095F7B3D7038F2/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/EEBCF783C60671D40D095F7B3D7038F2/Terasleidit_7_kuin_viimeista_paivaa" }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67318/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67309", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-teraesleidit-kuin-viimeistae-paeivaeae-4048011/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494126, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T11:13:53.418547Z", "last_modified_time": "2025-12-08T11:13:53.418569Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780920.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494126/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T11:13:53.259385Z", "last_modified_time": "2026-01-22T16:13:24.978458Z", "date_published": null, "start_time": "2026-01-02T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.", "sv": "I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.", "en": "In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C4A4B6705E0510EDF5738E0A49637BCC/Terasleidit_7_kuin_viimeista_paivaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C4A4B6705E0510EDF5738E0A49637BCC/Terasleidit_7_kuin_viimeista_paivaa", "en": "http://www.malmitalo.fi/en/events/event/C4A4B6705E0510EDF5738E0A49637BCC/Terasleidit_7_kuin_viimeista_paivaa" }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.</p><p>Kesto: 108 min<br>Ikäraja: 7<br>Kieli: suomi<br>Tekstitys: suomi</p>", "sv": "<p>I Pamela Tolas film är stålsystrarna Inkeri (Leena Uotila), Raili (Seela Sella) och Kerttu (Sanna-Kaisa Palo) ute på ett sista äventyr.</p><p>När Inkeri är på kliniken hör hon läkaren säga till sjuksköterskan runt hörnet att både livstiden och hoppet är ute. Inkeris dotter Maija (Pirjo Lonka) tar sig an uppgiften att ge sin mor vård i livets slut, även om det innebär att tvinga henne till det, men Inkeri har andra planer. Hennes sista handling blir att rädda Maija från att upprepa de misstag hon gjort och att sedan kasta sig i Norra ishavet för evigt.</p><p>Inkeri flyr från servicehemmet för sin sista resa med sina stålsystrar och Matti (Eero Saarinen) som hänger med. Innan Norra ishavet låter Inkeri ännu livet ta över: i smärtsamma minnen, stora känslor och rejv i skogen.</p><p>Pamela Tolas Teräsleidit – Kuin viimeistä päivää är den oberoende uppföljaren till den älskade komedin Stålsystrar som år 2020 var den inhemska film som lockade mest publik.</p><p>Längd: 108 min<br>Språk: finska, textning: finska</p>", "en": "<p>In Pamela Tola’s new film, Teräsleidit (ladies of steel) Inkeri (Leena Uotila), Raili (Seela Sella) and Kerttu (Sanna-Kaisa Palo) are adventuring like there is no tomorrow.</p><p>During her doctor’s appointment, Inkeri hears the doctor tell a nurse around the corner that she has no time left to live and no hope. Inkeri’s daughter Maija (Pirjo Lonka) takes on the task of providing her mother with hospice care whether she wants it or not, but Inkeri has other plans. As her last deed, she is planning to save Maija from repeating the mistakes that she herself has made and then throw herself into the Arctic Ocean forever.</p><p>Inkeri escapes from her service home for her last journey with the ladies of steel and Matti (Eero Saarinen), who ends up joining the ladies. Before the Arctic Ocean, Inkeri throws herself into life one more time: into painful memories, grand emotions and forest raves.</p><p>Pamela Tola's Teräsleidit – kuin viimeistä päivää (‘Like There’s No Tomorrow’) is an independent sequel to the best-selling domestic film of 2020, the beloved comedy Teräsleidit.</p><p>Duration: 108 min<br>Language: Finnish, subtitles: Finnish</p>" }, "name": { "fi": "Teräsleidit (7) – kuin viimeistä päivää – Kino Helios", "sv": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios", "en": "Teräsleidit (7)– kuin viimeistä päivää – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agn6bsefmi", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8663/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25338/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/177/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [ { "id": 815, "price_group": { "id": 1, "description": { "fi": "Aikuinen", "sv": "Vuxen", "en": "Adult" } }, "price": "12.00", "vat_percentage": "0.00", "price_without_vat": "12.00", "vat": "0.00" } ], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/177/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/177/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/177/signup-group/create" }, "description": { "fi": "" }, "price": { "fi": "12€" } } ], "data_source": "helsinki", "publisher": "ahjo:u4804001020", "sub_events": [], "images": [ { "id": 1494594, "has_user_editable_resources": true, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-21T13:32:05.412880Z", "last_modified_time": "2026-01-21T13:35:05.931767Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/firefox_kV4JIg4dVW.png", "name": "firefox_kV4JIg4dVW.png", "cropping": "128,0,637,509", "photographer_name": "firefox_kV4JIg4dVW", "alt_text": "altteksti", "data_source": "helsinki", "publisher": "ahjo:u4804001020", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2026-01-21T13:39:56.432345Z", "last_modified_time": "2026-01-22T07:56:13.756885Z", "date_published": null, "start_time": "2026-02-27T18:00:00Z", "end_time": "2026-02-27T19:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 25, "minimum_attendee_capacity": 9, "enrolment_start_time": "2026-01-21T10:30:00+02:00", "enrolment_end_time": "2026-02-11T23:30:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Helsinki on koko historiansa ajan elänyt itäisten ja läntisten vaikutusten ristiaallokossa." }, "info_url": { "fi": "https://www.helsinginkaupunginmuseo.fi" }, "description": { "fi": "<p><strong>Tervetuloa Makumatkalla Helsingissä ‑kävelykierrokselle.</strong></p><p>Helsinki on koko historiansa ajan elänyt itäisten ja läntisten vaikutusten ristiaallokossa. Värikäs menneisyys näkyy herkullisesti myös ruokakulttuurissamme. Kävelykierroksella tutustumme Helsingin kahvila- ja ravintolakulttuuriin sekä kuulemme kertomuksia asiakkaista. Katsastamme myös, millaista tori- ja hallikauppa on pääkaupungissamme. Opastetulla makumatkalla kuulemme millä tavoin suomalainen ruokakulttuuri on kehittynyt ja millaisena se näkyy meille tulevaisuudessa.</p><p>Osta liput ennakkoon</p><p>Kävelymme ovat suosittuja, ja monet niistä täyttyvät nopeasti. Suosittelemme lipun ostamista ennakkoon. Lisätietoja alla olevasta linkistä.</p><p><strong>lähtöpaikka: </strong>Kaupunginmuseon sisäänkäynti (Aleksanterinkatu 16). Huom. Ilmoittautuminen museon infoon ennen kävelyn alkua.<br><strong>kesto: </strong>max. 1,5 h</p><p><strong>Ilmoittautuminen aukeaa: </strong>21.1.2026 klo 16.00</p><p><strong>Ilmoittautuminen päättyy: </strong>10.2.2026 klo 23.30</p><p><i>Kuva: Arvo Kajantie, 1950-luku / Helsingin kaupunginmuseo</i></p>" }, "name": { "fi": "TESTI 2 Makumatkalla Helsingissä ‑kävelykierros" }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agn6bsefmi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agn6b6yj7a", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/176/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/176/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/176/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/176/signup-group/create" }, "description": null, "price": null } ], "data_source": "helsinki", "publisher": "ahjo:u02100", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" } ], "created_time": "2026-01-21T14:35:07.217183Z", "last_modified_time": "2026-01-21T14:41:11.923858Z", "date_published": null, "start_time": "2026-01-28T06:00:00Z", "end_time": "2026-01-28T08:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 10, "minimum_attendee_capacity": null, "enrolment_start_time": "2026-01-22T08:00:00+02:00", "enrolment_end_time": "2026-01-27T09:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "testi", "sv": "testi" }, "info_url": { "fi": "", "sv": "" }, "description": { "fi": "<p>testi</p>", "sv": "<p>testi</p>" }, "name": { "fi": "otsikko", "sv": "otsikko" }, "provider_contact_info": null, "location_extra_info": { "fi": "", "sv": "" }, "provider": { "fi": "", "sv": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agn6b6yj7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agn6brnari", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8663/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25338/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/173/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [ { "id": 814, "price_group": { "id": 1, "description": { "fi": "Aikuinen", "sv": "Vuxen", "en": "Adult" } }, "price": "12.00", "vat_percentage": "14.00", "price_without_vat": "10.53", "vat": "1.47" } ], "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/173/signup-group/create" }, "description": { "fi": "" }, "price": { "fi": "12€" } } ], "data_source": "helsinki", "publisher": "ahjo:u4804001020", "sub_events": [], "images": [ { "id": 1494594, "has_user_editable_resources": true, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-21T13:32:05.412880Z", "last_modified_time": "2026-01-21T13:35:05.931767Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/firefox_kV4JIg4dVW.png", "name": "firefox_kV4JIg4dVW.png", "cropping": "128,0,637,509", "photographer_name": "firefox_kV4JIg4dVW", "alt_text": "altteksti", "data_source": "helsinki", "publisher": "ahjo:u4804001020", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494594/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [], "created_time": "2026-01-21T13:36:46.792322Z", "last_modified_time": "2026-01-21T13:55:24.995661Z", "date_published": null, "start_time": "2026-02-13T15:00:00Z", "end_time": "2026-02-13T16:00:00Z", "custom_data": null, "environmental_certificate": "", "environment": "in", "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 25, "minimum_attendee_capacity": 9, "enrolment_start_time": "2026-01-21T10:30:00+02:00", "enrolment_end_time": "2026-02-11T23:30:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Helsinki on koko historiansa ajan elänyt itäisten ja läntisten vaikutusten ristiaallokossa." }, "info_url": { "fi": "https://www.helsinginkaupunginmuseo.fi" }, "description": { "fi": "<p><strong>Tervetuloa Makumatkalla Helsingissä ‑kävelykierrokselle.</strong></p><p>Helsinki on koko historiansa ajan elänyt itäisten ja läntisten vaikutusten ristiaallokossa. Värikäs menneisyys näkyy herkullisesti myös ruokakulttuurissamme. Kävelykierroksella tutustumme Helsingin kahvila- ja ravintolakulttuuriin sekä kuulemme kertomuksia asiakkaista. Katsastamme myös, millaista tori- ja hallikauppa on pääkaupungissamme. Opastetulla makumatkalla kuulemme millä tavoin suomalainen ruokakulttuuri on kehittynyt ja millaisena se näkyy meille tulevaisuudessa.</p><p>Osta liput ennakkoon</p><p>Kävelymme ovat suosittuja, ja monet niistä täyttyvät nopeasti. Suosittelemme lipun ostamista ennakkoon. Lisätietoja alla olevasta linkistä.</p><p><strong>lähtöpaikka: </strong>Kaupunginmuseon sisäänkäynti (Aleksanterinkatu 16). Huom. Ilmoittautuminen museon infoon ennen kävelyn alkua.<br><strong>kesto: </strong>max. 1,5 h</p><p><strong>Ilmoittautuminen aukeaa: </strong>21.1.2026 klo 16.00</p><p><strong>Ilmoittautuminen päättyy: </strong>10.2.2026 klo 23.30</p><p><i>Kuva: Arvo Kajantie, 1950-luku / Helsingin kaupunginmuseo</i></p>" }, "name": { "fi": "TESTI 1 Makumatkalla Helsingissä ‑kävelykierros" }, "provider_contact_info": null, "location_extra_info": { "fi": "" }, "provider": { "fi": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agn6brnari/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67328", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119934/", "sv": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119934/", "en": "https://www.lippu.fi/event/kino-helios-kotiapulainen-malmitalo-21119934/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:57.954872Z", "last_modified_time": "2025-12-19T10:13:57.954889Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780968.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494266/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:57.817528Z", "last_modified_time": "2026-01-15T12:13:32.578636Z", "date_published": null, "start_time": "2026-01-16T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/506045A797E8140CB1EC524B13258E5B/Kotiapulainen_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/506045A797E8140CB1EC524B13258E5B/Kotiapulainen_16_", "en": "http://www.malmitalo.fi/en/events/event/506045A797E8140CB1EC524B13258E5B/Kotiapulainen_16_" }, "description": { "fi": "<p>Millie saa mahdollisuuden aloittaa puhtaalta pöydältä kotiapulaisena varakkaan ja arvostetun pariskunnan palveluksessa.</p><p>Uusi työ ylellisessä kartanossa tuntuu unelmalta, mutta täydellisen kuoren alla piilee synkkiä salaisuuksia. Perheen äiti Nina alkaa käyttäytyä oudosti Millietä kohtaan. Helpointa olisi lähteä talosta, mutta perheen isä Andrew tukee Millietä kestämään äidin käytöstä. Talon ilmapiiri alkaa kuitenkin käydä painostavaksi… vai kuvitteleeko Millie vain kaiken?</p><p>Paul Feigin ohjaaman, maailmanlaajuiseen menestyskirjaan perustuvan elokuvan pääosissa Sydney Sweeney, Amanda Seyfried, Brandon Sklenar ja Michele Morrone.</p><p>Ikäraja: 16<br>Kesto: 131 min<br>Ensi-ilta: 02.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Kotiapulainen (16) – Kino Helios", "sv": "Kotiapulainen (16) – Kino Helios", "en": "Kotiapulainen (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67328/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-3857", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.helsinginkaupunginorkesteri.fi/fi/buyingflow/tickets/14940/13555" }, "description": { "fi": "Hinta", "sv": "Priset", "en": "Price" }, "price": { "fi": "8.00 - 49.50 €", "sv": "8.00 - 49.50 €", "en": "8.00 - 49.50 €" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1494487, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T08:52:34.565038Z", "last_modified_time": "2026-01-15T08:52:34.565056Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/image_test.png", "name": "Testikuva", "cropping": "96,0,672,576", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494487/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-25T07:04:43.020356Z", "last_modified_time": "2026-01-15T08:52:34.997488Z", "date_published": null, "start_time": "2026-01-21T18:00:00Z", "end_time": "2026-01-22T19:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jukka-Pekka Saraste kuulee Beethovenin Kohtalonsinfoniassa säveltäjän, jonka elämä on myllerryksessä.", "sv": "I Beethovens Ödessymfoni hör Jukka-Pekka Saraste en tonsättare vars liv är i omvälvning.", "en": "In Beethoven's Fate Symphony, Saraste hears a composer whose life is in turmoil." }, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3857", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/3857", "en": "https://helsinginkaupunginorkesteri.fi/en/node/3857" }, "description": { "fi": "<p>Jukka-Pekka Saraste kuulee Beethovenin Kohtalonsinfoniassa säveltäjän, jonka elämä on myllerryksessä.</p>", "sv": "<p>I Beethovens Ödessymfoni hör Jukka-Pekka Saraste en tonsättare vars liv är i omvälvning.</p>", "en": "<p>In Beethoven's Fate Symphony, Saraste hears a composer whose life is in turmoil.</p>" }, "name": { "fi": "HKO - Kohtalon ääni ", "sv": "HSO - Ödets röst ", "en": "HPO - The Sound of Fate" }, "provider_contact_info": null, "location_extra_info": { "fi": "Musiikkitalo Konserttisali", "en": "Musiikkitalo Concert Hall" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3857/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:ac6fa589-8bef-f011-8406-7ced8d2e6603", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79234/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=TLDG__2023__Linked_Events_kattotapahtuma_vs_tapahtuman_alitapahtumat__1212026_kopioi12354662120" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494474, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-14T13:16:12.121976Z", "last_modified_time": "2026-01-14T13:16:12.121992Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494474/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-12T08:07:50.141083Z", "last_modified_time": "2026-01-14T13:16:12.907245Z", "date_published": "2026-01-12T07:51:46Z", "start_time": "2026-01-31T06:30:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-01-13T08:00:00+02:00", "enrolment_end_time": "2026-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026" }, "info_url": null, "description": { "fi": "<div><p>Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026</p></div>" }, "name": { "fi": "TLDG - 2023 - Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026 kopioi kopioi - Alitapahtuma 1" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:ac6fa589-8bef-f011-8406-7ced8d2e6603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:1b22258a-8bef-f011-8406-7c1e5277afa9", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79234/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=TLDG__2023__Linked_Events_kattotapahtuma_vs_tapahtuman_alitapahtumat__1212026_kopioi12354662121" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494473, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-14T13:16:00.141959Z", "last_modified_time": "2026-01-14T13:16:00.141977Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494473/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-12T08:07:13.897598Z", "last_modified_time": "2026-01-14T13:16:00.940115Z", "date_published": "2026-01-12T07:51:49Z", "start_time": "2026-01-31T06:30:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-01-13T08:00:00+02:00", "enrolment_end_time": "2026-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026" }, "info_url": null, "description": { "fi": "<div><p>Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026</p></div>" }, "name": { "fi": "TLDG - 2023 - Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026 kopioi kopioi - Alitapahtuma 2" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1b22258a-8bef-f011-8406-7c1e5277afa9/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79234/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/7ebd1065-f24f-f011-877b-000d3ab0762c?readableEventId=TLDG_-_2023_-_Linked_Events_kattotapahtuma_vs_tapahtuman_alitapahtumat_-_1212026_kopioi1235466212" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1b22258a-8bef-f011-8406-7c1e5277afa9/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:ac6fa589-8bef-f011-8406-7ced8d2e6603/?format=api" } ], "images": [ { "id": 1494472, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-14T13:15:55.667223Z", "last_modified_time": "2026-01-14T13:15:55.667242Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-12T07:53:21.997409Z", "last_modified_time": "2026-01-14T13:15:58.003576Z", "date_published": "2026-01-12T07:51:37Z", "start_time": "2026-01-31T06:30:00Z", "end_time": "2026-01-31T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 55, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": "2026-01-13T08:00:00+02:00", "enrolment_end_time": "2026-01-30T08:00:00+02:00", "local": false, "replaced_by": null, "short_description": { "fi": "Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026" }, "info_url": null, "description": { "fi": "<div><p>Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026</p></div>" }, "name": { "fi": "TLDG - 2023 - Linked Events kattotapahtuma vs. tapahtuman alitapahtumat - 12.1.2026 kopioi kopioi" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a60cfb64-0747-49c7-9a9b-8b5c4136e91f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67580", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": [], "info_url": { "fi": "https://www.lippu.fi/artist/mimoart-company-body-notes/#calendar-start=2026-01", "sv": "https://www.lippu.fi/artist/mimoart-company-body-notes/#calendar-start=2026-01", "en": "https://www.lippu.fi/artist/mimoart-company-body-notes/#calendar-start=2026-01" }, "description": null, "price": { "fi": "32 € / 20 € / 18 €", "sv": "32 € / 20 € / 18 €", "en": "32 € / 20 € / 18 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493877, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T13:12:35.143577Z", "last_modified_time": "2025-11-24T13:12:35.143589Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778037.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493877/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T13:12:35.042473Z", "last_modified_time": "2026-01-13T08:13:21.700537Z", "date_published": null, "start_time": "2026-01-17T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "MimoArt Companyn kansainvälisesti palkittu ja ylistetty menestysteos Body Notes palaa Stoaan!", "sv": "MimoArt Companys internationellt prisbelönta och hyllade succé Body Notes återvänder till Stoa!", "en": "International award-winning work praised by audiences and art critics - coming back to Stoa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6FE62E72D0DF4D20857FB826910BCB48/MimoArt_Company_BODY_NOTES", "sv": "http://www.stoa.fi/sv/evenemang/event/6FE62E72D0DF4D20857FB826910BCB48/MimoArt_Company_BODY_NOTES", "en": "http://www.stoa.fi/en/events/event/6FE62E72D0DF4D20857FB826910BCB48/MimoArt_Company_BODY_NOTES" }, "description": { "fi": "<p>MimoArt Companyn kansainvälisesti palkittu ja ylistetty menestysteos Body Notes palaa Stoaan!</p><p>Body Notes on uskomattoman hieno kombinaatio tanssia, fyysistä teatteria, butoa, slapstick -komediaa, uutta klovneriaa, livemusiikkia sekä visuaalista sielunruokaa. Taiteellisesti kunnianhimoisen teoksen omaleimainen liikekieli yhdessä häikäisevän valo-, lavastus- ja äänimaailman kanssa rakentavat katsojille kauniin, oivaltavan ja monitasoisen elämyksen, joka haastaa tuoreella tavalla taidetanssin perinteistä vakavuutta.</p><p>\"Body Notes on improvisaatioita hyödyntävä matka kaikkiin mahdollisiin näyttämöilmaisumuotoihin. Se tuntuu syvällä kehossa ja sielussa, ravistelee, venyttelee, huvittaa ja liikuttaa.” Helsingin Sanomat</p><p>“Miten pukea sanoiksi teatterillinen elämys joka ravistelee syvästi sisintäsi? Onko se edes mahdollista? MimoArt Companyn Body Notes on yksi tällaisista kokemuksista.” Nur Magazine</p><p>Katsojakokemuksia:</p><p>“Tämä on järkyttävän hieno teos. Niin monella tasolla. Itkin ja nauroin, jäädyin ja sulin, yllätyin kerta toisensa jälkeen ja haltioiduin itseni pakahduksiin.\"</p><p>“Vaikuttava teos. Visuaalisesti, kuin olisi ollut nykytaidegalleriassa.”</p><p>“Aivan huikea, juuri sitä mitä esittelyssä luvattiin ja enemmän! Tämä tulee hymäjämään sielunmaisemissa tovin. Suosittelen lämpimästi!”</p><p>Vuonna 2019 kansainvälisen fyysisen teatterin festivaalin parhaana teoksena palkittu Body Notes on kiertänyt kotimaisilla ja kansainvälisillä areenoilla mm. edustaen Suomea 2023 Theatre Olympics -festivaalilla. Tammikuussa 2026 teos nähdään myös 11 näytöksen verran osana kansallista 8-luokkalaisille suunnattua Taidetestaajat ohjelmistoa.</p><p>KESTO: 75 min<br>IKÄSUOSITUS: 7+ (Mahdolliset sisältöä koskevat kysymykset: contact@mimoartcompany.com)<br>Esitys on gluteeniton.</p><p>OHJAUS / KONSEPTI: Mimosa Lindahl</p><p>LAVASTUS: Arto-Oskar Reunanen<br>VALOSUUNNITTELU: Ilmari Karhu (Stoassa valojen ajo Karel Šimek)<br>ÄÄNISUUNNITTELU: Jaakko Autio (Stoassa äänen ajo Sebastian Kurtén)<br>ESIINTYJÄT: <br>Mates Petrák (CZ), Oskari Turpeinen, Antti-Pekka Pudas, Mikael Kuosmanen (17.1) / Mika Seppälä (24.1),<br>Juho Kanervo (Sello)</p><p>(Teoksessa 2017-2024 esiintyneet: Saska Pulkkinen, Miro Lopperi, Sergio Castrillón (cello), Mikael Kuosmanen, Marko Pakarinen, Oskari Turpeinen, Mikko Lampinen, Mates Petrák (CZ), Milan Sládek (SK), Milán Maurer (HUN), Eoin Mac Donncha (IRL/HUN), Antti-Pekka Pudas, Lauri Lohi)</p><p>VALOKUVAT: Kai Kuusisto<br>TUOTANTO: MimoArt Company yhteistyössä Stoan kanssa<br>LAITESPONSORI: Hako Ground & Garden</p>", "sv": "<p>MimoArt Companys internationellt prisbelönta och hyllade succé Body Notes återvänder till Stoa!</p><p>Body Notes är en otrolig kombination av dans, fysisk teater, buto, slapstick-komedi, nya clownerier, livemusik och visuell mat för själen. Det konstnärligt ambitiösa verkets särpräglade rörelsespråk, i kombination med den bländande ljussättningen, scenografin och ljudbilden, skapar en vacker, insiktsfull och mångbottnad upplevelse som utmanar den traditionella seriösa konstdansen på ett nytt sätt.</p><p>\"Body Notes är en improvisatorisk resa in i alla möjliga former av scenuttryck. Det känns djupt i kropp och själ, skakar, sträcker, roar och berör.\" Helsingin Sanomat</p><p>\"Hur sätter man ord på en teaterupplevelse som skakar om en i grunden? Är det ens möjligt? MimoArt Companys Body Notes är en sådan upplevelse.\" Nur Magazine</p><p>Publikens omdömen:</p><p>\"Det här är ett chockerande vackert verk. På så många plan. Jag grät och skrattade, frös och smälte, överraskades om och om igen och blev fullständigt hänförd.\"</p><p>\"Ett imponerande verk. Visuellt, som att vara i ett galleri för modern konst.\"</p><p>\"Helt fantastiskt, precis vad som utlovades i presentationen och mer därtill! Det här kommer att få själen att le ett tag framöver. Jag rekommenderar det varmt!\"</p><p>Body Notes, som utsågs till det bästa verket vid den internationella festivalen för fysisk teater 2019, har turnerat på inhemska och internationella arenor och bland annat representerat Finland på Theatre Olympics-festivalen 2023. I januari 2026 kommer verket också att visas 11 gånger som en del av det nationella Konsttestarna-programmet för åttondeklassister.</p><p>LÄNGD: 75 min.<br>ÅLDERSREKOMMENDATION: 7+ (Eventuella frågor om innehållet: contact@mimoartcompany.com)<br>Föreställningen är glutenfri.</p><p>REGI/KONCEPT: Mimosa Lindahl<br>ISCENSÄTTNING: Arto-Oskar Reunanen<br>LJUSDESIGN: Ilmari Karhu (på Stoa Karel Šimek)<br>LJUDDESIGN: Jaakko Autio (på Stoa Sebastian Kurtén)<br>FOTOGRAFIER: Kai Kuusisto<br>PRODUKTION: MimoArt Company i samarbete med Stoa</p><p>PÅ SCENEN:<br>Mates Petrák (CZ), Mikko Lampinen, Oskari Turpeinen, Antti-Pekka Pudas, Mikael Kuosmanen, Juho Kanervo (Cello)</p><p>(Medverkande i verket 2017–2024: Saska Pulkkinen, Miro Lopperi, Sergio Castrillón (cello), Mikael Kuosmanen, Marko Pakarinen, Oskari Turpeinen, Mates Petrák (CZ), Milan Sládek (SK), Milán Maurer (HUN), Eoin Mac Donncha (IRL/HUN), Antti-Pekka Pudas, Lauri Lohi)</p>", "en": "<p>International award-winning work praised by audiences and art critics - coming back to Stoa!</p><p>Body Notes is an incredibly fine combination of dance, physical theatre, butoh, slapstick comedy, new clownery, live music and visual soul food. Together with the magnificent light-, set- and sound design it builds a beautiful and artistically ambitious multi-level experience, which challenges the seriousness of art dance in a fresh, novel way.</p><p>“Body Notes is an extremely visual, improvisational journey to all possible stage expression forms. It feels deep in the body and soul, shakes, stretches, amuses and moves you.” Helsingin Sanomat</p><p>“How to put to words a theatrical experience that shakes you to the core? Is it even possible? MimoArt Company’s Body Notes is one of those experiences.” Nur Magazine</p><p>Viewer experiences:</p><p>“This is a shockingly beautiful piece of work. On so many levels. I cried and laughed, froze and melted, was surprised time and time again and was enchanted to the point of overwhelmed myself.\"</p><p>“Impressive show. Visually it was like being in a contemporary art gallery.”</p><p>“Absolutely amazing, exactly what was promised in the introduction and more! This will be smiling in my soul landscape for a long time. I highly recommend!”</p><p>DURATION: 75 min<br>AGE RECOMMENDATION: 7+ <br>The performance is gluten free.</p><p>DIRECTION / CONCEPT: Mimosa Lindahl</p><p>SET DESIGN: Arto-Oskar Reunanen<br>LIGHTING DESIGN: Ilmari Karhu (in the Stoa Light Op Karel Šimek)<br>SOUND DESIGN: Jaakko Autio (in the Stoa Sound Op Sebastian Kurtén)<br>PERFORMERS: <br>Mates Petrák (CZ), Oskari Turpeinen, Antti-Pekka Pudas, Mikael Kuosmanen (17.1) / Mika Seppälä (24.1),<br>Juho Kanervo (Sello)</p><p>(Previous performers 2017-2024: Saska Pulkkinen, Miro Lopperi, Sergio Castrillón (cello), Mikael Kuosmanen, Marko Pakarinen, Oskari Turpeinen, Mikko Lampinen, Mates Petrák (CZ), Milan Sládek (SK), Milán Maurer (HUN), Eoin Mac Donncha (IRL/HUN), Antti-Pekka Pudas, Lauri Lohi)</p><p>PHOTOS: Kai Kuusisto<br>PRODUCTION: MimoArt Company together with Stoa<br>EQUIPMENT SPONSOR: Hako Ground & Garden</p>" }, "name": { "fi": "MimoArt Company: BODY NOTES", "sv": "MimoArt Company: BODY NOTES", "en": "MimoArt Company: BODY NOTES" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67580/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67330", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118944/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T10:13:58.549683Z", "last_modified_time": "2025-12-19T10:13:58.549726Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780971.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494267/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T10:13:58.440121Z", "last_modified_time": "2026-01-12T10:12:57.264754Z", "date_published": null, "start_time": "2026-01-17T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/E616CCBCA80920F3568B47126144B37A/Terapia_12_" }, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67330/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67329", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-supermarsu-ja-suuri-huijaus-4048012/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494136, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T13:13:56.025285Z", "last_modified_time": "2025-12-08T13:13:56.025298Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780970.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494136/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-08T13:13:55.919041Z", "last_modified_time": "2026-01-12T10:12:57.118147Z", "date_published": null, "start_time": "2026-01-17T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus", "en": "http://www.malmitalo.fi/en/events/event/1B47878C930BAD655CA0577ED7AD4169/Supermarsu_ja_suuri_huijaus" }, "description": { "fi": "<p>Elokuva kertoo Emiliasta, Simosta ja Rasva-Anterosta. Viidesluokkalainen Emilia on saanut lemmikkimarsunsa puremasta salaisen kyvyn muuttua Supermarsuksi, pörröiseksi sankariksi, jonka tehtävänä on auttaa eläimiä.</p><p>Hänen paras ystävänsä on luokan neropatti Simo ja vastustajansa puolestaan Rasva-Antero, koulun pahin kiusaaja, jonka isä on kaupungin rikkain mies. Mukana menossa on myös Rasva-Anteron paras kaveri Pietari. Elokuvassa ollaan ekologisten kysymysten äärellä, sillä kaikkia huolettaa lähimetsän ja siellä asuvan pörröhännän kohtalo.</p><p>Emiliasta tuli supersankari, kun hän sai lahjaksi taianomaisen lemmikkimarsun, joka puri häntä sormeen. Hänet vietiin Näsinneulan katolle Jättiläismarsun luokse ja hän saikin tietää olevansa Supermarsu. Mutta mitä tapahtuu, kun Emilian supervoimien lähde, juomapullo, päätyy vääriin käsiin? Pystyykö Supermarsu pelastamaan lähimetsän ja pörröhännän?</p><p>Ikäraja: S<br>Kesto: 92 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Supermarsu ja suuri huijaus – Kino Helios", "sv": "Supermarsu ja suuri huijaus – Kino Helios", "en": "Supermarsu ja suuri huijaus – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67329/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67327", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK", "sv": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK", "en": "https://www.lippu.fi/event/kino-helios-sydantalvi-malmitalo-21118650/?affiliate=HKK" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T09:13:33.834783Z", "last_modified_time": "2025-12-19T09:13:33.834801Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780967.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T09:13:33.722670Z", "last_modified_time": "2026-01-12T10:12:56.761312Z", "date_published": null, "start_time": "2026-01-16T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_", "en": "http://www.malmitalo.fi/en/events/event/7E5999F0DF08982C4BBF8CCF50457644/Sydantalvi_16_" }, "description": { "fi": "<p>Suomen Kolilla kuvattu Sydäntalvi on draamatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja Emma Thompson.</p><p>Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut Brian Kirk, joka tunnetaan muun muassa Game of Thrones -sarjan jaksoista sekä elokuvasta 21 Bridges. Muissa rooleissa Marc Menchaca, Judy Greer ja Gaia Wise, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Ikäraja: 16<br>Kesto: 98 min<br>Ensi-ilta: 12.12.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "name": { "fi": "Sydäntalvi (16) – Kino Helios", "sv": "Sydäntalvi (16) – Kino Helios", "en": "Sydäntalvi (16) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67327/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67326", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/", "sv": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/", "en": "https://www.lippu.fi/event/kino-helios-terapia-malmitalo-21118943/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T09:13:33.340656Z", "last_modified_time": "2025-12-19T09:13:33.340670Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780965.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T09:13:33.222212Z", "last_modified_time": "2026-01-12T10:12:56.514764Z", "date_published": null, "start_time": "2026-01-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_", "en": "http://www.malmitalo.fi/en/events/event/D0EA851283F0E4E87F21805A6748AC40/Terapia_12_" }, "description": { "fi": "<p>Terapia-elokuvassa kolme pariskuntaa suuntaa parisuhdeleirille, jossa mikään ei mene suunnitelmien mukaan.</p><p>Leirillä he päätyvät törmäyskurssille itsensä ja parisuhteidensa kanssa. Samaan aikaan terapeutit kamppailevat oman avioliittonsa ja murenevien unelmiensa keskellä. Draamakomedian on ohjannut ja käsikirjoittanut Paavo Westerberg.</p><p>Elokuvassa näyttelevät maamme kirkkaimpiin tähtiin lukeutuvat Pihla Viitala, Tommi Korpela, Alma Pöysti, Matleena Kuusniemi, Antti Luusuaniemi, Jarkko Niemi, Mikko Kauppila ja Jakob Öhrman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 25.12.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Terapia (12) – Kino Helios", "sv": "Terapia (12) – Kino Helios", "en": "Terapia (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67493", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-12T07:12:53.085149Z", "last_modified_time": "2026-01-12T07:12:53.085164Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781600.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494443/?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": "2026-01-12T07:12:52.997426Z", "last_modified_time": "2026-01-12T08:12:48.638977Z", "date_published": null, "start_time": "2026-01-17T09:00:00Z", "end_time": "2026-01-17T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1CB2B9E49625DF46CD883F85EB0E3283/Annantalon_taidelauantai_Meren_asukas", "sv": "http://www.annantalo.fi/sv/evenemang/event/1CB2B9E49625DF46CD883F85EB0E3283/Annegardens_konstlordag_Havets_invanare_", "en": "http://www.annantalo.fi/en/events/event/1CB2B9E49625DF46CD883F85EB0E3283/Annantalo_Art_Saturday_Sea_dweller" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Meren asukas</b> <br>Tule tekemään huovasta meren alainen asukas. Lelulla pääset leikkimään merenalaiseen mielikuvitusmaailmaan. <br>Työpajan ohjaa taidekasvattaja Noora Puranen</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Havets invånare</b><br>Kom och skapa en undervattensvarelse av tovad ull. Med leksaken kan du leka i en undervattens fantasivärld. Workshopen leds av konstpedagogen Noora Puranen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Sea dweller</b><br>Come and make an underwater creature out of felt. With the toy, you can play in an imaginary underwater world. The workshop is led by art educator Noora Puranen.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Meren asukas", "sv": "Annegårdens konstlördag: Havets invånare", "en": "Annantalo Art Saturday: Sea dweller" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67493/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }