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&hide_recurring_children=true&page=31
{ "meta": { "count": 21736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=32", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=30" }, "data": [ { "id": "kulke:67554", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.626194Z", "last_modified_time": "2025-12-10T11:12:46.626209Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494170/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:46.545343Z", "last_modified_time": "2026-03-20T01:13:09.610669Z", "date_published": null, "start_time": "2026-02-18T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/241A391A95BDC4E641A3A203524FA155/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/241A391A95BDC4E641A3A203524FA155/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/241A391A95BDC4E641A3A203524FA155/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67554/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67553", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.284883Z", "last_modified_time": "2025-12-10T11:12:46.284899Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:46.183470Z", "last_modified_time": "2026-03-20T01:13:09.457341Z", "date_published": null, "start_time": "2026-02-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67553/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67840", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-16T10:22:33.082498Z", "last_modified_time": "2025-12-16T10:22:33.082514Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778821.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-16T10:22:32.969636Z", "last_modified_time": "2026-03-20T01:13:09.346540Z", "date_published": null, "start_time": "2026-02-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule Vuotaloon katsomaan elokuvaa talvilomalla!", "sv": "Kom till Nordhuset och titta på film på sportlovet!", "en": "Join us at Vuotalo for a movie during the winter holiday!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/06E0FDB35B9BFD05EC3EB42FDBAE89C1/Talvilomaleffa_Ponyo_rantakalliolla_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/06E0FDB35B9BFD05EC3EB42FDBAE89C1/Sportlovsbio_Ponyo_pa_klippan_vid_havet_S_", "en": "http://www.vuotalo.fi/en/events/event/06E0FDB35B9BFD05EC3EB42FDBAE89C1/Winter_holiday_movie_Ponyo_S_" }, "description": { "fi": "<p>Tule Vuotaloon katsomaan elokuvaa talvilomalla!</p><p>PONYO RANTAKALLIOLLA on Hayao Miazakin kymmenes pitkä elokuvaohjaus ja yhdeksäs Studio Ghibli -tuotanto: “Tämä tarina kertoo Ponyosta, pienestä meren kalasta joka tekee kaikkensa toteuttaakseen unelmansa.</p><p>Hän haluaa elää maalla Sosuke -nimisen pojan kanssa. Ponyo rantakalliolla sijoittaa Hans Christian Andersenin Pienen merenneidon tarinan nyky-Japaniin. Se on taru lapsuudesta, rakkaudesta ja merestä”; tiivistää animaatiovelho.</p><p>Puhuttu suomeksi, ei tekstitystä<br>Ikäraja: Sallittu<br>Pituus: 101 min.<br>Ohjaus: Hayao Miyazaki<br>Käsikirjoitus: Hayao Miyazaki<br>Genret: Animaatio, Koko perheen elokuva</p><p>Vapaa pääsy!</p>", "sv": "<p>Kom till Nordhuset och titta på film på sportlovet!</p><p>PONYO PÅ KLIPPAN VID HAVET är Hayao Miyazakis tionde långfilm och nionde Studio Ghibli-produktion: ”Den här berättelsen handlar om Ponyo, en liten fisk i havet, som gör allt för att förverkliga sin dröm. Hon vill bo på land med pojken Sosuke.</p><p>Ponyo på klippan vid havet placerar Hans Christian Andersens saga om den lilla sjöjungfrun i dagens Japan. Den är en saga om barndomen, kärleken och havet”, sammanfattar animationsgeniet.</p><p>Åldersgräns: Tillåten<br>Längd: 101 min.<br>Regi: Hayao Miyazaki<br>Manus: Hayao Miyazaki</p>", "en": "<p>Join us at Vuotalo for a movie during the winter holiday!</p><p>Ponyo is Hayao Miyazaki’s tenth feature film and the ninth Studio Ghibli production: “This is the story of Ponyo, a small fish in the sea who will do anything to make her dreams come true. She wants to live on land with a boy named Sosuke.</p><p>Ponyo sets the story of Hans Christian Andersen’s The Little Mermaid in contemporary Japan. It is a story of childhood, love and the sea,” summarises the animation wizard.</p><p>Age rating: suitable for all ages<br>Duration: 101 min<br>Directed by: Hayao Miyazaki<br>Written by: Hayao Miyazaki</p>" }, "name": { "fi": "Talvilomaleffa: Ponyo rantakalliolla (S)", "sv": "Sportlovsbio: Ponyo på klippan vid havet (S)", "en": "Winter holiday movie: Ponyo (S)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67840/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68009", "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: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: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494708, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T16:13:43.361723Z", "last_modified_time": "2026-02-03T16:13:43.361740Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784330.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494708/?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-02-03T16:13:43.204041Z", "last_modified_time": "2026-03-20T01:13:09.201720Z", "date_published": null, "start_time": "2026-02-18T10:00:00Z", "end_time": "2026-02-18T14:30: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": "Hunajaa etsiskelevä Puh ystävineen lähtee seikkailuun löytääkseen Ihaan kadonneen hännän ja pelastaakseen Risto Reippaan salaperäiseltä hirviöltä. (S)", "sv": "Medan de letar efter honung ger sig Puh och hans vänner ut på ett äventyr för att hitta I-ors försvunna svans och rädda Kristoffer Robin från ett okänt monster.", "en": "While searching for honey, Pooh and his friends embark on an adventure to find Eeyore's missing tail and rescue Christopher Robin from an unknown monster." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8C2E1A7271196FE9AE5B7061176ABFC0/Lomakino_Nalle_Puhin_Elokuva_2011_", "sv": "http://www.annantalo.fi/sv/evenemang/event/8C2E1A7271196FE9AE5B7061176ABFC0/Lomakino_Nalle_Puhs_Film_2011_", "en": "http://www.annantalo.fi/en/events/event/8C2E1A7271196FE9AE5B7061176ABFC0/Lomakino_Winnie_The_Pooh_2011_" }, "description": { "fi": "<p>Hunajaa etsiskelevä Puh ystävineen lähtee seikkailuun löytääkseen Ihaan kadonneen hännän ja pelastaakseen Risto Reippaan salaperäiseltä hirviöltä. (S)</p><p><b>Lomakinon elokuva: Nalle Puhin Elokuva (2011)</b><br>Kieli: suomi, tekstitys englanniksi, sallittu kaikenikäisille</p><p>Esitykset:</p><p>Klo 12.00 <br>Klo 14.30</p><p>Ryhmien ilmoittautuminen ennakkoon: krista.holm@hel.fi</p><p>Elokuva näytetään Annansalissa, jonne mahtuu n. 80 henkeä. Jokainen osallistuja saa maksuttoman lipukkeen, jolla varmistaa paikan näytöksessä. Ryhmät ilmoittautuvat etukäteen. Paikkoja ei ole numeroitu.</p>", "sv": "<p>Medan de letar efter honung ger sig Puh och hans vänner ut på ett äventyr för att hitta I-ors försvunna svans och rädda Kristoffer Robin från ett okänt monster.</p><p><b>Sportlovsbio: Nalle Puhs film</b><br>Språk: finska, undertexter på engelska, tillåten för alla</p><p>Visningar:</p><p>Kl. 12.00<br>Kl. 14.30</p><p>Förbokningar för grupper: krista.holm@hel.fi</p><p>Visningarna hålls i Annesalen, som har en kapacitet på cirka 80 personer. Varje besökare får en gratisbiljett för att garantera en plats vid visningen. Grupper måste boka i förväg. Inga numrerade platser.</p>", "en": "<p>While searching for honey, Pooh and his friends embark on an adventure to find Eeyore's missing tail and rescue Christopher Robin from an unknown monster.</p><p><b>Holiday cinema: Winnie the Pooh</b><br>Language: Finnish, subtitled in English, suitable for all ages</p><p>Screenings:</p><p>12:00 PM<br>2:30 PM</p><p>Pre-bookings for groups: krista.holm@hel.fi</p><p>Screenings will be held at Annansali, which has a capacity of about 80 people. Every attendee will be given a free ticket to ensure them a seat in the screening. Groups must make a booking in advance. No seat numbers.</p>" }, "name": { "fi": "Lomakino: Nalle Puhin Elokuva (2011)", "sv": "Lomakino: Nalle Puhs Film (2011)", "en": "Lomakino: Winnie The Pooh (2011)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68009/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67558", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494298, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:41.857565Z", "last_modified_time": "2025-12-23T09:13:41.857581Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781716.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494298/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-23T09:13:41.734644Z", "last_modified_time": "2026-03-20T01:13:09.059460Z", "date_published": null, "start_time": "2026-02-18T08:00:00Z", "end_time": "2026-02-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/748629EB3C58C3CFE6B89B012B38C423/Satuolennon_ovi_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/748629EB3C58C3CFE6B89B012B38C423/Konstverkstaden_Satuolennon_ovi", "en": "http://www.malmitalo.fi/en/events/event/748629EB3C58C3CFE6B89B012B38C423/Art_workshop_door_for_a_fairytale_creature" }, "description": { "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Lumikin taikametsässä asuu monenlaisia satuolentoja! Tässä pajassa askarrellaan ovia, jotka vievät näiden olentojen kotiin. Mikä satuolento sinun ovesi takana asustaa?</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>I Snövits magiska skog bor mångahanda sagovarelser! I denna verkstad pysslar man dörrar som leder in till dessa varelsers hem. Vilken sagovarelse bor bakom din dörr?</p><p>Verkstadens språk: finska <br>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>Snow White's magical forest is home to a many creatures and critters from fairytales! In this workshop, you’ll get to create a door leading to the homes of these creatures. Which fairytale creature lives behind your door?</p><p>Workshop language: Finnish<br>Free entry!</p>" }, "name": { "fi": "Satuolennon ovi -taidepaja", "sv": "Konstverkstaden Satuolennon ovi", "en": "Art workshop: door for a fairytale creature" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67558/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67872", "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: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "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": 1494506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T12:13:27.617613Z", "last_modified_time": "2026-01-16T12:13:27.617636Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780529.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494506/?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-16T12:13:27.489414Z", "last_modified_time": "2026-03-20T01:13:08.866946Z", "date_published": null, "start_time": "2026-02-18T08:00:00Z", "end_time": "2026-02-18T10: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": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C25170B0783D6634CB06ACE922CFC324/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/C25170B0783D6634CB06ACE922CFC324/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/C25170B0783D6634CB06ACE922CFC324/Art_games_a_space_for_play" }, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor. <br>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>" }, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67872/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67771", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "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": 1494158, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T10:13:14.255702Z", "last_modified_time": "2025-12-09T10:13:14.255714Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780404.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494158/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-09T10:13:14.194074Z", "last_modified_time": "2026-03-20T01:13:08.751523Z", "date_published": null, "start_time": "2026-02-17T13:00:00Z", "end_time": "2026-02-17T16: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": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BE1F5BE8DCC7AD87260A18282B6D091A/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BE1F5BE8DCC7AD87260A18282B6D091A/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/BE1F5BE8DCC7AD87260A18282B6D091A/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67771/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67552", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494010, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:07.487439Z", "last_modified_time": "2025-12-03T08:13:07.487454Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781705.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494010/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-03T08:13:07.409478Z", "last_modified_time": "2026-03-20T01:13:08.633021Z", "date_published": null, "start_time": "2026-02-17T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!", "sv": "Filmen som baserar sig på världens mest sålda videospel!", "en": "A film based on the world's best-selling video game Minecraft, starring." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/798575C7282F4A11AEFE5FDD7A530429/Talvilomaleffa_Minecraft-elokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/798575C7282F4A11AEFE5FDD7A530429/Sportlovsbio_A_Minecraft_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/798575C7282F4A11AEFE5FDD7A530429/Winter_holiday_movie_A_Minecraft_Movie_7_" }, "description": { "fi": "<p>Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!</p><p>Päätähtinä nähdään Jason Momoa ja Jack Black. Pelin ensimmäisen näytellyn valkokangassovituksen ohjauksesta vastaa Jared Hess.</p><p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen. Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa. Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Kesto: 101 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på världens mest sålda videospel!</p><p>Jason Momoa och Jack Black ses i huvudrollerna. Den här första filmatiseringen av spelet med skådespelare är regisserad av Jared Hess.</p><p>Välkommen till Minecraft-världen, där kreativiteten inte bara hjälper till med byggandet, utan den är en viktig överlevnadsfärdighet! Fyra karaktärer som känner sig utanför – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) och Dawn (Brooks) – kämpar med vardagliga problem när de plötsligt förs genom en mystisk portal till Överjorden: ett märkligt kubland där fantasin flödar fritt. För att överleva och komma hem måste de lära sig att styra den här världen (och ytterligare skydda den från skurkar som piglins och zombies) när de ger sig ut på ett magiskt äventyr med den oväntade mästerbyggaren Steve (Black). Längs vägen måste alla fem hitta modet att arbeta tillsammans för att utnyttja sina egna unika kreativa talanger... just de färdigheter som de behöver för att lyckas även i den verkliga världen.</p><p>Längd: 101 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>A film based on the world's best-selling video game Minecraft, starring.</p><p>Jason Momoa and Jack Black! Jared Hess directed the first live action screen adaptation of the game.</p><p>Welcome to the world of Minecraft, where creativity is not just a building tool, it's an essential survival skill! Four characters who feel like outsiders – Garrett ‘The Garbage Man’ Garrison (Momoa), Henry (Hansen), Natalie (Myers) and Dawn (Brooks) – are struggling with their everyday problems when they are suddenly whisked through a mysterious portal to the Overworld: a strange cube land where imagination runs wild. To make it back home, they must learn to control this world (and protect it from bad guys like piglins and zombies) as they head off on a magical adventure with surprising master builder Steve (Black). Along the way, the five must find the courage to work together to harness their own unique creative talents... the very skills they need to succeed back in the real world too.</p><p>Duration: 101 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Minecraft-elokuva (7)", "sv": "Sportlovsbio: A Minecraft Movie (7)", "en": "Winter holiday movie: A Minecraft Movie (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67552/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67551", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494009, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:07.174606Z", "last_modified_time": "2025-12-03T08:13:07.174623Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781704.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494009/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-03T08:13:07.084116Z", "last_modified_time": "2026-03-20T01:13:08.503019Z", "date_published": null, "start_time": "2026-02-17T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!", "sv": "Filmen som baserar sig på världens mest sålda videospel!", "en": "A film based on the world's best-selling video game Minecraft, starring." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93E7CE0104775E277D522255EF394323/Talvilomaleffa_Minecraft-elokuva_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/93E7CE0104775E277D522255EF394323/Sportlovsbio_A_Minecraft_Movie_7_", "en": "http://www.malmitalo.fi/en/events/event/93E7CE0104775E277D522255EF394323/Winter_holiday_movie_A_Minecraft_Movie_7_" }, "description": { "fi": "<p>Maailman myydyimpään videopeliin perustuva Minecraft-elokuva!</p><p>Päätähtinä nähdään Jason Momoa ja Jack Black. Pelin ensimmäisen näytellyn valkokangassovituksen ohjauksesta vastaa Jared Hess.</p><p>Tervetuloa Minecraftin maailmaan, missä luovuus ei auta vain rakentamaan, vaan se on olennainen selviytymistaito! Neljä ulkopuoliseksi itsensä tuntevaa tyyppiä – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) ja Dawn (Brooks) – painiskelevat arkisten pulmien parissa, kun heidät yhtäkkiä tempaistaan mystisen portaalin kautta Ylämaailmaan: omituiseen kuutiomaahan, jossa mielikuvitus pääsee valloilleen. Selviytyäkseen takaisin kotiin heidän tulee oppia hallitsemaan tätä maailmaa (ja lisäksi suojeltava sitä sellaisilta pahiksilta kuin piglinit ja zombit) heidän suunnatessaan maagiselle seikkailulle yllättävän mestarirakentajan Steven (Black) kanssa. Matkan varrella viisikon on yhdessä löydettävä itsestään rohkeutta ja otettava käyttöön omat ainutlaatuiset luovat kykynsä... siis juuri ne taidot, joita he tarvitsevat menestyäkseen oikeassakin maailmassa.</p><p>Kesto: 101 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi<br>Vapaa pääsy!</p>", "sv": "<p>Filmen som baserar sig på världens mest sålda videospel!</p><p>Jason Momoa och Jack Black ses i huvudrollerna. Den här första filmatiseringen av spelet med skådespelare är regisserad av Jared Hess.</p><p>Välkommen till Minecraft-världen, där kreativiteten inte bara hjälper till med byggandet, utan den är en viktig överlevnadsfärdighet! Fyra karaktärer som känner sig utanför – Garrett \"The Garbage Man\" Garrison (Momoa), Henry (Hansen), Natalie (Myers) och Dawn (Brooks) – kämpar med vardagliga problem när de plötsligt förs genom en mystisk portal till Överjorden: ett märkligt kubland där fantasin flödar fritt. För att överleva och komma hem måste de lära sig att styra den här världen (och ytterligare skydda den från skurkar som piglins och zombies) när de ger sig ut på ett magiskt äventyr med den oväntade mästerbyggaren Steve (Black). Längs vägen måste alla fem hitta modet att arbeta tillsammans för att utnyttja sina egna unika kreativa talanger... just de färdigheter som de behöver för att lyckas även i den verkliga världen.</p><p>Längd: 101 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>A film based on the world's best-selling video game Minecraft, starring.</p><p>Jason Momoa and Jack Black! Jared Hess directed the first live action screen adaptation of the game.</p><p>Welcome to the world of Minecraft, where creativity is not just a building tool, it's an essential survival skill! Four characters who feel like outsiders – Garrett ‘The Garbage Man’ Garrison (Momoa), Henry (Hansen), Natalie (Myers) and Dawn (Brooks) – are struggling with their everyday problems when they are suddenly whisked through a mysterious portal to the Overworld: a strange cube land where imagination runs wild. To make it back home, they must learn to control this world (and protect it from bad guys like piglins and zombies) as they head off on a magical adventure with surprising master builder Steve (Black). Along the way, the five must find the courage to work together to harness their own unique creative talents... the very skills they need to succeed back in the real world too.</p><p>Duration: 101 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Minecraft-elokuva (7)", "sv": "Sportlovsbio: A Minecraft Movie (7)", "en": "Winter holiday movie: A Minecraft Movie (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67551/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68003", "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: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: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494703, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T08:13:45.436487Z", "last_modified_time": "2026-02-03T08:13:45.436504Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784325.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494703/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-03T08:13:45.296010Z", "last_modified_time": "2026-03-20T01:13:08.359437Z", "date_published": null, "start_time": "2026-02-17T10:00:00Z", "end_time": "2026-02-17T14:30: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": "Rileyn päämaja joutuu mullistuksen kouriin, kun siellä tehdään tilaa jollekin aivan odottamattomalle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet toimintaa kaikin puolin onnistuneesti, eivät oikein tiedä, mitä heidän pitäisi tuntea, kun paikalle ilmaantuu Ahdistus. Eikä hän näytä olevan yksin. Mukanaan hän tuo ystävänsä nimeltä Nolous, Kateus ja Ennui.", "sv": "Jennys huvudkontoret plötsligt börjar rivas för att göra plats för något helt oväntat: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky, som länge har drivit verksamheten med framgång, blir osäkra på hur de ska hantera nykomlingen Ängslan. Och hon är tydligen inte ensam, utan har sällskap av Pinsamhet, Avund och Ennui.", "en": "Riley’s headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone. She’s bringing along her friends called Embarrassment, Envy, and Ennui." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CF932F2EE31E54018AD9495170C31079/Lomakino_Mielen_sopukoissa_2_Inside_Out_2", "sv": "http://www.annantalo.fi/sv/evenemang/event/CF932F2EE31E54018AD9495170C31079/Lomakino_Insidan_ut_2_Inside_Out_2", "en": "http://www.annantalo.fi/en/events/event/CF932F2EE31E54018AD9495170C31079/Lomakino_Inside_Out_2" }, "description": { "fi": "<p>Rileyn päämaja joutuu mullistuksen kouriin, kun siellä tehdään tilaa jollekin aivan odottamattomalle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet toimintaa kaikin puolin onnistuneesti, eivät oikein tiedä, mitä heidän pitäisi tuntea, kun paikalle ilmaantuu Ahdistus. Eikä hän näytä olevan yksin. Mukanaan hän tuo ystävänsä nimeltä Nolous, Kateus ja Ennui.</p><p><b>Lomakinon elokuva: Inside out – Mielen sopukoissa 2</b><br>Kieli: suomi, tekstitys englanniksi, ikäsuositus 7+</p><p>Esitykset:</p><p>Klo 12.00<br>Klo 14.30</p><p>Ryhmien ilmoittautuminen ennakkoon: krista.holm@hel.fi</p><p>Elokuva näytetään Annansalissa, jonne mahtuu n. 80 henkeä. Jokainen osallistuja saa maksuttoman lipukkeen, jolla varmistaa paikan näytöksessä. Ryhmät ilmoittautuvat etukäteen. Paikkoja ei ole numeroitu.</p>", "sv": "<p>Jennys huvudkontoret plötsligt börjar rivas för att göra plats för något helt oväntat: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky, som länge har drivit verksamheten med framgång, blir osäkra på hur de ska hantera nykomlingen Ängslan. Och hon är tydligen inte ensam, utan har sällskap av Pinsamhet, Avund och Ennui.</p><p><b>Sportlovsbio: Insidan ut 2 </b><br>Språk: finska, undertexter på engelska, tillåten från 7 år</p><p>Visningar:<br> <br>Kl. 12.00<br>Kl. 14.30</p><p>Förbokningar för grupper: krista.holm@hel.fi</p><p>Visningarna hålls i Annesalen, som har en kapacitet på cirka 80 personer. Varje besökare får en gratisbiljett för att garantera en plats vid visningen. Grupper måste boka i förväg. Inga numrerade platser.</p>", "en": "<p>Riley’s headquarters is undergoing a sudden demolition to make room for something entirely unexpected: new Emotions! Joy, Sadness, Anger, Fear and Disgust, who’ve long been running a successful operation by all accounts, aren’t sure how to feel when Anxiety shows up. And it looks like she’s not alone. She’s bringing along her friends called Embarrassment, Envy, and Ennui.</p><p><b>Holiday cinema: Inside out 2 </b><br>Language: Finnish, subtitled in English, recommended for ages 7 and up</p><p>Screenings:<br> <br>12:00 PM: <br>2:30 PM:</p><p>Pre-bookings for groups: krista.holm@hel.fi</p><p>Screenings will be held at Annansali, which has a capacity of about 80 people. Every attendee will be given a free ticket to ensure them a seat in the screening. Groups must make a booking in advance. No seat numbers.</p>" }, "name": { "fi": "Lomakino: Mielen sopukoissa 2 / Inside Out 2", "sv": "Lomakino: Insidan ut 2 / Inside Out 2", "en": "Lomakino: Inside Out 2" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68003/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67557", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494297, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T08:13:50.518364Z", "last_modified_time": "2025-12-23T08:13:50.518380Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781713.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494297/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-23T08:13:50.420338Z", "last_modified_time": "2026-03-20T01:13:08.261236Z", "date_published": null, "start_time": "2026-02-17T08:00:00Z", "end_time": "2026-02-17T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7489592FBFDFCB3D19AC1ECF95800FEB/Pelihahmopaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7489592FBFDFCB3D19AC1ECF95800FEB/Spelfigursverkstad", "en": "http://www.malmitalo.fi/en/events/event/7489592FBFDFCB3D19AC1ECF95800FEB/Game_character_workshop_" }, "description": { "fi": "<p>Maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Minecraft-elokuvan inspiroimana pääset tässä pajassa muovailemaan oman pelihahmon. Millaisesta pelimaailmasta sinun hahmosi on saapunut?</p><p>Työpajan kieli: suomi</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>Inspirerad av Minecraft-filmen kan du i denna verkstad modellera en egen spelfigur. Vilken spelvärld kommer din figur från?</p><p>Verkstadens språk: finska<br>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>Inspired by the Minecraft movie, this workshop lets you sculpt your own character. What game world did your character come from?</p><p>Workshop language: Finnish<br>Free entry!</p>" }, "name": { "fi": "Pelihahmopaja", "sv": "Spelfigursverkstad", "en": "Game character workshop" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67557/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68053", "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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494702, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T08:13:44.842617Z", "last_modified_time": "2026-02-03T08:13:44.842641Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785294.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494702/?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-02-02T12:13:05.560690Z", "last_modified_time": "2026-03-20T01:13:08.156018Z", "date_published": null, "start_time": "2026-02-16T12:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/694E92EEB8FCEDCFCC36C61DCAC33D55/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "sv": "http://www.annantalo.fi/sv/evenemang/event/694E92EEB8FCEDCFCC36C61DCAC33D55/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "en": "http://www.annantalo.fi/en/events/event/694E92EEB8FCEDCFCC36C61DCAC33D55/Robottivahtimestari_B-O_ja_Piilopelin_pulma" }, "description": { "fi": "<p>Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin.</p><p>Peliä voi pelata kaverin kanssa tai porukalla. Opastuksissa pyrimme löytämään kaikille pelikaverin.</p><p>Robottivahtimestari B-Ö on paikalla kertomassa Piilopelistä halukkaille pelaajille klo 12 ja klo 14.30!</p><p>Piilopeliä voi pelata aina kun Annantalo on auki. Piilopelin ikäsuositus on alakouluikäisille.</p><p>Yhden pelin kesto noin 30 min.</p>" }, "name": { "fi": "Robottivahtimestari B-Ö ja Piilopelin pulma", "sv": "Robottivahtimestari B-Ö ja Piilopelin pulma", "en": "Robottivahtimestari B-Ö ja Piilopelin pulma" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68053/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68012", "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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494705, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T09:13:41.351888Z", "last_modified_time": "2026-02-03T09:13:41.351904Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784334.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494705/?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-02-03T09:13:41.265458Z", "last_modified_time": "2026-03-20T01:13:08.032244Z", "date_published": null, "start_time": "2026-02-16T10: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": "Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5AB8C21A08AB7D9D75C0E2CA5F3ACB1F/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "sv": "http://www.annantalo.fi/sv/evenemang/event/5AB8C21A08AB7D9D75C0E2CA5F3ACB1F/Robottivahtimestari_B-O_ja_Piilopelin_pulma", "en": "http://www.annantalo.fi/en/events/event/5AB8C21A08AB7D9D75C0E2CA5F3ACB1F/Robottivahtimestari_B-O_ja_Piilopelin_pulma" }, "description": { "fi": "<p>Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin.</p><p>Peliä voi pelata kaverin kanssa tai porukalla. Opastuksissa pyrimme löytämään kaikille pelikaverin.</p><p>Robottivahtimestari B-Ö on paikalla kertomassa Piilopelistä halukkaille pelaajille klo 12 ja klo 14.30!</p><p>Piilopeliä voi pelata aina kun Annantalo on auki. Piilopelin ikäsuositus on alakouluikäisille.</p><p>Yhden pelin kesto noin 30 min</p>" }, "name": { "fi": "Robottivahtimestari B-Ö ja Piilopelin pulma", "sv": "Robottivahtimestari B-Ö ja Piilopelin pulma", "en": "Robottivahtimestari B-Ö ja Piilopelin pulma" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68012/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67644", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?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:45/?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/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "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": 1494157, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T10:13:13.938539Z", "last_modified_time": "2025-12-09T10:13:13.938551Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780402.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494157/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-09T10:13:13.862913Z", "last_modified_time": "2026-03-20T01:13:07.926106Z", "date_published": null, "start_time": "2026-02-16T08:00:00Z", "end_time": "2026-02-16T11: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": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0F7BD9840751760066BAC9519B4827C1/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0F7BD9840751760066BAC9519B4827C1/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/0F7BD9840751760066BAC9519B4827C1/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67644/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67936", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?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:47/?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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://forms.office.com/e/LJiytVra0H", "sv": "https://forms.office.com/e/LJiytVra0H", "en": "https://forms.office.com/e/LJiytVra0H" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494411, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T13:12:49.231218Z", "last_modified_time": "2026-01-08T13:12:49.231231Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780431.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494411/?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-08T13:12:49.077844Z", "last_modified_time": "2026-03-20T01:13:07.783624Z", "date_published": null, "start_time": "2026-02-16T07:00:00Z", "end_time": "2026-02-20T11:30: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": "Rakennetaan talvilomalla oma kulkuneuvo!", "sv": "Vi bygger ett eget fordon under sportlovet!", "en": "Build your own vehicle!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/67D99452B76747E61AA5B15F1DDB26BF/Fun_Mechanics", "sv": "http://www.caisa.fi/sv/evenemang/event/67D99452B76747E61AA5B15F1DDB26BF/Fun_Mechanics", "en": "http://www.caisa.fi/en/events/event/67D99452B76747E61AA5B15F1DDB26BF/Fun_Mechanics" }, "description": { "fi": "<p>Rakennetaan talvilomalla oma kulkuneuvo!</p><p>Fun Mechanics on viisipäiväinen luova ja teknisesti painottunut työpajasarja 7–10-vuotiaille tytöille.<br> <br>Työpajassa tutustutaan kulkuneuvojen toimintaan, suunnitteluun ja rakentamiseen. Työpaja yhdistää mekaniikan, taiteen ja ympäristöystävällisen ajattelun hauskalla tavalla, jossa oppiminen tapahtuu tekemisen, kokeilun ja oivalluksen kautta.<br> <br>Viikon aikana viimeistellään yksityiskohdat, koristellaan ajoneuvot työkalupainannalla ja suunnitellaan omat liikennemerkit. Viimeisenä päivänä kulkuneuvot testataan ulkona pienellä radalla, ajot kuvataan ja viikon tuotoksista rakennetaan pieni näyttely. <br> <br>Työpajan ohjaajana toimii taidekasvattaja ja kuvataiteilija Anastasia Artemeva. <br> <br>Opetuskielet: Suomi (englanti ja venäjä tarvittaessa)<br> <br><b>Ilmoittautuminen</b><br>Työpajasarja on maksuton, mutta vaatii ilmoittautumisen. Vahvistamme ilmoittautumisen sähköpostitse. Työpajaan voi ilmoittautua oheisesta linkistä. Ilmoittautuminen aukeaa 7.1. klo 9.00. https://forms.office.com/e/LJiytVra0H<br> <br>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>", "sv": "<p>Vi bygger ett eget fordon under sportlovet!</p><p>Fun Mechanics är en fem dagar lång serie av verkstäder för flickor i åldern 7–10 år, med betoning på teknik.<br> <br>I verkstaden får man lära sig mer om fordons funktion och hur man designar och bygger dem. Verkstaden kombinerar mekanik, konst och miljövänligt tänkande på ett roligt sätt, där man lär sig genom att göra, testa och få nya insikter.<br> <br>Under veckan får man finslipa detaljerna, dekorera fordonen med verktygstryck och designa egna trafikmärken. Den sista dagen testas fordonen på en liten bana utomhus, åkturerna filmas och en liten utställning byggs upp av veckans arbeten. <br> <br>Verkstaden leds av konstpedagogen och bildkonstnären Anastasia Artemeva. <br> <br>Undervisningsspråk: Finska (engelska och ryska vid behov)<br> <br><b>Anmälan</b><br>Verkstaden är gratis, men kräver anmälan. Vi bekräftar anmälan per e-post. Du kan anmäla dig till verkstaden via länken. Anmälan öppnar 7.1 kl. 9.00. https://forms.office.com/e/LJiytVra0H<br> <br>Frågor och förfrågningar: teemu.savikurki@hel.fi</p>", "en": "<p>Build your own vehicle!</p><p>Fun Mechanics is a five-day creative and technically focused art workshop series for girls aged 7–10.</p><p>The workshop introduces the workings, design and construction of vehicles. The workshop combines mechanics, art and environmentally friendly thinking in a fun way, where learning takes place through making, experimenting and insight.</p><p>During the week, the details are finalized, the vehicles are decorated with tool printing and their own road signs are designed. On the last day, the vehicles are tested outdoors on a small track, the rides are filmed and a small exhibition is built from the week's products.</p><p>The workshop is led by art educator and visual artist Anastasia Artemeva.<br>Languages: Finnish (English and Russian if needed).</p><p><b>Registration</b><br>The workshop series is free of charge, but registration is required. We will confirm your registration by email. You can register for the workshop using the link below. Registration opens on January 7th at 9:00 AM. https://forms.office.com/e/LJiytVra0H</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>" }, "name": { "fi": "Fun Mechanics – taidetyöpaja 7–10-vuotiaille tytöille", "sv": "Fun Mechanics – serie av konstverkstäder för flickor i åldern 7–10-år", "en": "Fun Mechanics – art workshop series for girls aged 7–10" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67936/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66930", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3962502", "sv": "https://www.lippu.fi/eventseries/name-3962502", "en": "https://www.lippu.fi/eventseries/name-3962502" }, "description": null, "price": { "fi": "56,30-119 € / S&D 171 €", "sv": "56,30-119 € / S&D 171 €", "en": "56,30-119 € / S&D 171 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T07:14:23.219497Z", "last_modified_time": "2025-08-26T07:14:23.219514Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776891.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T07:14:23.107026Z", "last_modified_time": "2026-03-20T01:13:07.595724Z", "date_published": null, "start_time": "2026-02-15T12: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": "Paris! The Show – ranskalaista musiikkia ylistävä katsojamenestys huipputekijöiltä", "sv": "Paris! The Show – en publiksuccé som hyllar fransk musik skapad av toppförmågor", "en": "Paris! The Show – a crowd-pleasing tribute to French music by top artists" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/045FF0DAE8241BC6F7DA13C1E1880B4A/Paris_The_Show_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/045FF0DAE8241BC6F7DA13C1E1880B4A/Paris_The_Show_", "en": "http://www.savoyteatteri.fi/en/events/event/045FF0DAE8241BC6F7DA13C1E1880B4A/Paris_The_Show_" }, "description": { "fi": "<p>Paris! The Show – ranskalaista musiikkia ylistävä katsojamenestys huipputekijöiltä</p><p>Ohjaaja Gil Marsallan luoma kansainvälinen suursuosikki <b>Paris! The Show</b> on kunnianosoitus 1900-luvun ikonisille ranskalaisille kappaleille ja kabareekulttuurille. Suomessa ensimmäistä kertaa nähtävä esitys vie katsojat Pariisin taianomaisille Montmartren kujille ja legendaarisille kabareelavoille tarjoten samalla aimo annoksen sodanjälkeisen ajan rakastetuimpia ranskalaiskappaleita.</p><p>Maailmalla vuodesta 2014 alkaen kiertänyt Paris! The Show kertoo nuoresta amerikkalaisesta Emilystä, joka haaveilee boheemista taiteilijaelämästä Pariisissa. Montmartressa hän ystävystyy tarjoilijattarena työskentelevän <b>Édith Piafin</b> ja tämän ystävän <b>Charles Aznavourin</b> kanssa.</p><p>Esitys nostaa valokeilaan Ranskan kaikkien aikojen tunnetuimmat laulajat. Piafin ja Aznavourin lisäksi esityksessä kuullaan musiikkia myös muilta rakastetuilta ranskalaistähdiltä, kuten <b>Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer</b> sekä <b>Gilbert Bécaud</b>.</p><p>Karismaattinen esiintyjäkaarti, huikea livebändi ja tunnelmallinen lavastus luovat tunteita herättävän musiikkielämyksen, joka puhuttelee kaikenikäisiä.</p><p>Esityksen kesto väliaikoineen on noin 2 tuntia.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Show & Dinner ja Brunssi -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun<br>Savoy-teatterin yhteydessä toimivassa Minne Garden-ravintolassa.</p><p><b>Ranskalainen illallinen saatavilla pe 13.2 ja la 14.2. klo 19 alkavissa esityksissä. Illallinen tarjoillaan klo 17 alkaen.</p><p>Ranskalainen illallinen – menu classic</b> <br>Minnen maalaissalaatti, karamellisoitua sipulia, chevremoussea ja viikunaa L<br>Paahdettua siikaa, sahramilla maustettua bouillabaisekastiketta ja aligot-perunaa L,G<br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G</p><p>TAI</p><p><b>Ranskalainen illallinen – menu green</b> <br>Minnen maalaissalaatti, karamellisoitua sipulia, chevremoussea ja viikunaa L<br>Latva-artisokkacassoulet, aligot-perunaa ja grillattua kuningasosterisientä L,G<br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G<br> <br><i>Illallismenun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.<br> <br><b>Minnen ranskalainen ystävänpäiväbrunssi saatavilla la 14.2. klo 14 alkavassa esityksessä. Tarjoillaan klo 12 alkaen.</p><p>Alkuruokia ja pieniä suupaloja buffetpöydästä</b> <br>Sipuli-vuohenjuustotartaletteja VL<br>Mini- etanavannikkeita ja Comté-juustoa L<br>Minnen Charcuterie; herkkujuustoja, leikkeleitä, marinoituja vihanneksia ja hilloketta L,G<br>Raikkaita salaatinlehtiä, vihannescrudites ja sampanjavinaigrettea V,G<br>Kylmäsavustettua taimenta ja piparjuurikermaa L,G<br>Grillattua kananpoikaa, pikkukurkkuja ja dijon-majoneesia M,G<br>Vege-Nizzan salaattia V,G<br>Artesaanileipää, voisarvia ja vaahdotettua voita L</p><p><b>Pääruoka ja jälkiruoka pöytiintarjoiltuna:</b> (pääruoka valitaan paikan päällä)<br>Uppomuna L<br>-ilmakuivattua kinkkua, paistettua briossia ja bearnaisekastiketta<br>Tai<br>Uppomuna Florentine L<br>-paistettua pinaattia ja sipulia, briossia ja bearnaisekastiketta<br> <br><b>Jälkiruoka</b><br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G<br> <br>Reilunkaupan tummapaahtoinen luomukahvi tai haudutettu tee <br> <br><i>Brunssimenun hinta ei sisällä juomia. <br>Brunssi tarjoillaan Savoy-teatterin ravintola Minne Gardenissa kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p>", "sv": "<p>Paris! The Show – en publiksuccé som hyllar fransk musik skapad av toppförmågor</p><p>Den internationella storfavoriten Paris! The Show, skapad av regissören Gil Marsalla, är en hyllning till ikoniska franska sånger och kabarékulturen under 1900-talet. Föreställningen visas för första gången i Finland och tar publiken med till de magiska gränderna och legendariska kabaréscenerna i Montmartre i Paris, samtidigt som den bjuder på en rejäl dos av de mest älskade franska sångerna från efterkrigstiden.</p><p>Paris! The Show har turnerat världen över sedan 2014 och handlar om den unga amerikanskan Emily, som drömmer om ett bohemiskt liv som konstnär i Paris. I Montmartre blir hon vän med servitrisen Édith Piaf och hennes vän Charles Aznavour.</p><p>Föreställningen sätter fokus på de mest kända franska sångarna genom tiderna. Förutom Piaf och Aznavour innehåller showen också musik av andra älskade franska stjärnor såsom Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer och Gilbert Bécaud.</p><p>En karismatisk ensemble av artister, ett fantastiskt liveband och en stämningsfull scenografi skapar en känsloladdad musikupplevelse som tilltalar alla åldrar.</p><p>Föreställningens längd inklusive pauser är ca 2 timmar.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetten Show & Dinner och Brunch inkluderar en entrébiljett samt en meny med kött eller vegetarisk mat som serveras till borden<br>på restaurang Minne Garden intill Savoy-teatern.</p><p>Fransk middag serveras fredagen den 13 februari och lördagen den 14 februari före föreställningarna som börjar kl. 19. Middagen serveras från kl. 17.</p><p>Fransk middag – Menu Classic<br>Minnes lantsallad, karamelliserad lök, chèvremousse och fikon L<br>Halstrad sik, bouillabaissesås med saffran och pommes aligot L, G<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>ELLER</p><p>Fransk middag – Menu Green<br>Minnes lantsallad, karamelliserad lök, chèvremousse och fikon L<br>Cassoulet med kronärtskocka, pommes aligot och grillad kungsmussling L, G<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>Priset för middagsmenyn inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p><p>Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Minnes franska Alla hjärtans dag-brunch serveras lördagen den 14 februari inför föreställningen som börjar kl. 14. Serveras från kl. 12.</p><p>Förrätter och småplock från buffébordet<br>Tarteletter med lök och getost LL<br>Minisnigelkrustader och Comté-ost L<br>Minnes Charcuterie; gourmetostar, kallskuret, inlagda grönsaker och kompott L, G<br>Färska salladsblad, grönsakscrudité och champagnevinägrett V, G<br>Kallrökt öring och pepparrotskräm L, G<br>Grillad kyckling, minigurkor och dijonmajonnäs M, G<br>Vegetarisk sallad niçoise V, G<br>Hantverksbröd, croissant och vispat smör L</p><p>Huvudrätt och dessert serveras till bordet: (huvudrätten väljs på plats)<br>Pocherat ägg L<br>- lufttorkad skinka, rostad brioche och bearnaisesås<br>eller<br>Ägg Florentine L<br>- stekt spenat och lök, brioche och bearnaisesås</p><p>Dessert<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>Rättvisemärkt mörkrostat ekologiskt kaffe eller bryggt te</p><p>Priset för brunchmenyn inkluderar inte drycker.<br>Brunchen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p><p>Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p>", "en": "<p>Paris! The Show – a crowd-pleasing tribute to French music by top artists</p><p>Created by director Gil Marsalla, the international hit Paris! The Show is a tribute to iconic French songs and cabaret culture of the 20th century. The show, which will now be seen for the first time in Finland, will take the audience to the magical alleys of Montmartre and the legendary cabaret stages of Paris, while offering a wide selection of the most beloved French songs of the post-war era.</p><p>Touring the world since 2014, Paris! The Show is about a young American, Emily, who dreams of a bohemian life as an artist in Paris. In Montmartre, she befriends Édith Piaf, who is working as a waitress, and her friend Charles Aznavour.</p><p>The show will highlight the most famous French singers of all time. In addition to Piaf and Aznavour, the show will also feature music from other beloved French stars such as Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer and Gilbert Bécaud.</p><p>The charismatic cast of performers, a stunning live band and atmospheric staging create an evocative musical experience that appeals to all ages.</p><p>The duration of the performance, including intermissions, is approximately 2 hours.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>The Show & Dinner and Brunch ticket includes an entrance ticket and a meat or vegetarian menu served to tables<br>at the Minne Garden restaurant in the Savoy Theatre.</p><p>The French dinner will be available on Fri 13 February and Sat 14 February for performances starting at 19:00. Dinner will be served from 17:00 onwards.</p><p>French dinner – menu classic<br>Minne’s country salad, caramelised onions, chevre mousse and figs L<br>Roasted whitefish, bouillabaisse sauce seasoned with saffron and pommes aligot L,G<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>OR</p><p>French dinner – menu green<br>Minne’s country salad, caramelised onions, chevre mousse and figs L<br>Artichoke cassoulet with pommes aligot and grilled king trumpet mushrooms L,G<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>The price of the dinner menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p><p>Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>Minne's French Valentine's Day brunch is available on Sat 14 Feb for the performance starting at 14:00. Served from 12 noon onwards.</p><p>Starters and tasty small bites from a buffet table<br>Onion and goat cheese tartelettes LL<br>Miniature escargot tarts and Comté cheese L<br>Minne Charcuterie: gourmet cheeses, cold cuts, pickled vegetables and compote L,G<br>Fresh lettuce leaves, vegetable crudites and champagne vinaigrette V,G<br>Cold smoked trout and horseradish cream L,G<br>Grilled chicken, miniature pickles and Dijon mayonnaise M,G<br>Vegan Nizza salad V,G<br>Artisan bread, croissants and whipped butter L</p><p>Main course and dessert served at the table: (main course to be chosen on site)<br>Poached egg L<br>- air-dried ham, fried brioche and bearnaise sauce<br>Or<br>Poached egg Florentine L<br>- fried spinach and onion, brioche and bearnaise sauce</p><p>Dessert<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>Fair trade organic dark roast coffee or brewed tea</p><p>The price of the brunch menu does not include drinks.<br>The brunch will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p><p>Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p>" }, "name": { "fi": "Paris! The Show", "sv": "Paris! The Show", "en": "Paris! The Show" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66930/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66929", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3962502", "sv": "https://www.lippu.fi/eventseries/name-3962502", "en": "https://www.lippu.fi/eventseries/name-3962502" }, "description": null, "price": { "fi": "56,30-119 € / S&D 171 €", "sv": "56,30-119 € / S&D 171 €", "en": "56,30-119 € / S&D 171 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T07:14:22.814622Z", "last_modified_time": "2025-08-26T07:14:22.814663Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776890.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T07:14:22.697161Z", "last_modified_time": "2026-03-20T01:13:07.408975Z", "date_published": null, "start_time": "2026-02-14T17: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": "Paris! The Show – ranskalaista musiikkia ylistävä katsojamenestys huipputekijöiltä", "sv": "Paris! The Show – en publiksuccé som hyllar fransk musik skapad av toppförmågor", "en": "Paris! The Show – a crowd-pleasing tribute to French music by top artists" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C9C67C944440832259DDE49CB6E939AA/Paris_The_Show_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C9C67C944440832259DDE49CB6E939AA/Paris_The_Show_", "en": "http://www.savoyteatteri.fi/en/events/event/C9C67C944440832259DDE49CB6E939AA/Paris_The_Show_" }, "description": { "fi": "<p>Paris! The Show – ranskalaista musiikkia ylistävä katsojamenestys huipputekijöiltä</p><p>Ohjaaja Gil Marsallan luoma kansainvälinen suursuosikki <b>Paris! The Show</b> on kunnianosoitus 1900-luvun ikonisille ranskalaisille kappaleille ja kabareekulttuurille. Suomessa ensimmäistä kertaa nähtävä esitys vie katsojat Pariisin taianomaisille Montmartren kujille ja legendaarisille kabareelavoille tarjoten samalla aimo annoksen sodanjälkeisen ajan rakastetuimpia ranskalaiskappaleita.</p><p>Maailmalla vuodesta 2014 alkaen kiertänyt Paris! The Show kertoo nuoresta amerikkalaisesta Emilystä, joka haaveilee boheemista taiteilijaelämästä Pariisissa. Montmartressa hän ystävystyy tarjoilijattarena työskentelevän <b>Édith Piafin</b> ja tämän ystävän <b>Charles Aznavourin</b> kanssa.</p><p>Esitys nostaa valokeilaan Ranskan kaikkien aikojen tunnetuimmat laulajat. Piafin ja Aznavourin lisäksi esityksessä kuullaan musiikkia myös muilta rakastetuilta ranskalaistähdiltä, kuten <b>Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer</b> sekä <b>Gilbert Bécaud</b>.</p><p>Karismaattinen esiintyjäkaarti, huikea livebändi ja tunnelmallinen lavastus luovat tunteita herättävän musiikkielämyksen, joka puhuttelee kaikenikäisiä.</p><p>Esityksen kesto väliaikoineen on noin 2 tuntia.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Show & Dinner ja Brunssi -lippu</b> sisältää pääsylipun sekä pöytiin tarjoillun liha- tai kasvismenun<br>Savoy-teatterin yhteydessä toimivassa Minne Garden-ravintolassa.</p><p><b>Ranskalainen illallinen saatavilla pe 13.2 ja la 14.2. klo 19 alkavissa esityksissä. Illallinen tarjoillaan klo 17 alkaen.</p><p>Ranskalainen illallinen – menu classic</b> <br>Minnen maalaissalaatti, karamellisoitua sipulia, chevremoussea ja viikunaa L<br>Paahdettua siikaa, sahramilla maustettua bouillabaisekastiketta ja aligot-perunaa L,G<br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G</p><p>TAI</p><p><b>Ranskalainen illallinen – menu green</b> <br>Minnen maalaissalaatti, karamellisoitua sipulia, chevremoussea ja viikunaa L<br>Latva-artisokkacassoulet, aligot-perunaa ja grillattua kuningasosterisientä L,G<br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G<br> <br><i>Illallismenun hinta ei sisällä juomia. <br>Illallinen on katettu Savoy-teatterin ravintola Minne Gardeniin kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.<br> <br><b>Minnen ranskalainen ystävänpäiväbrunssi saatavilla la 14.2. klo 14 alkavassa esityksessä. Tarjoillaan klo 12 alkaen.</p><p>Alkuruokia ja pieniä suupaloja buffetpöydästä</b> <br>Sipuli-vuohenjuustotartaletteja VL<br>Mini- etanavannikkeita ja Comté-juustoa L<br>Minnen Charcuterie; herkkujuustoja, leikkeleitä, marinoituja vihanneksia ja hilloketta L,G<br>Raikkaita salaatinlehtiä, vihannescrudites ja sampanjavinaigrettea V,G<br>Kylmäsavustettua taimenta ja piparjuurikermaa L,G<br>Grillattua kananpoikaa, pikkukurkkuja ja dijon-majoneesia M,G<br>Vege-Nizzan salaattia V,G<br>Artesaanileipää, voisarvia ja vaahdotettua voita L</p><p><b>Pääruoka ja jälkiruoka pöytiintarjoiltuna:</b> (pääruoka valitaan paikan päällä)<br>Uppomuna L<br>-ilmakuivattua kinkkua, paistettua briossia ja bearnaisekastiketta<br>Tai<br>Uppomuna Florentine L<br>-paistettua pinaattia ja sipulia, briossia ja bearnaisekastiketta<br> <br><b>Jälkiruoka</b><br>Kolmen suklaan leivos ja samppanja-päärynähilloketta VL,G<br> <br>Reilunkaupan tummapaahtoinen luomukahvi tai haudutettu tee <br> <br><i>Brunssimenun hinta ei sisällä juomia. <br>Brunssi tarjoillaan Savoy-teatterin ravintola Minne Gardenissa kaksi tuntia ennen esityksen alkua. <br>Erikoisruokavaliot huomioidaan ennakkotilauksesta (viim. 3 vrk ennen esitystä).</i></p><p>Yli 12 hengen ryhmiä pyydetään olemaan yhteydessä: myynti@minnehelsinki.fi.</p>", "sv": "<p>Paris! The Show – en publiksuccé som hyllar fransk musik skapad av toppförmågor</p><p>Den internationella storfavoriten Paris! The Show, skapad av regissören Gil Marsalla, är en hyllning till ikoniska franska sånger och kabarékulturen under 1900-talet. Föreställningen visas för första gången i Finland och tar publiken med till de magiska gränderna och legendariska kabaréscenerna i Montmartre i Paris, samtidigt som den bjuder på en rejäl dos av de mest älskade franska sångerna från efterkrigstiden.</p><p>Paris! The Show har turnerat världen över sedan 2014 och handlar om den unga amerikanskan Emily, som drömmer om ett bohemiskt liv som konstnär i Paris. I Montmartre blir hon vän med servitrisen Édith Piaf och hennes vän Charles Aznavour.</p><p>Föreställningen sätter fokus på de mest kända franska sångarna genom tiderna. Förutom Piaf och Aznavour innehåller showen också musik av andra älskade franska stjärnor såsom Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer och Gilbert Bécaud.</p><p>En karismatisk ensemble av artister, ett fantastiskt liveband och en stämningsfull scenografi skapar en känsloladdad musikupplevelse som tilltalar alla åldrar.</p><p>Föreställningens längd inklusive pauser är ca 2 timmar.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetten Show & Dinner och Brunch inkluderar en entrébiljett samt en meny med kött eller vegetarisk mat som serveras till borden<br>på restaurang Minne Garden intill Savoy-teatern.</p><p>Fransk middag serveras fredagen den 13 februari och lördagen den 14 februari före föreställningarna som börjar kl. 19. Middagen serveras från kl. 17.</p><p>Fransk middag – Menu Classic<br>Minnes lantsallad, karamelliserad lök, chèvremousse och fikon L<br>Halstrad sik, bouillabaissesås med saffran och pommes aligot L, G<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>ELLER</p><p>Fransk middag – Menu Green<br>Minnes lantsallad, karamelliserad lök, chèvremousse och fikon L<br>Cassoulet med kronärtskocka, pommes aligot och grillad kungsmussling L, G<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>Priset för middagsmenyn inkluderar inte drycker.<br>Middagen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p><p>Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p><p>Minnes franska Alla hjärtans dag-brunch serveras lördagen den 14 februari inför föreställningen som börjar kl. 14. Serveras från kl. 12.</p><p>Förrätter och småplock från buffébordet<br>Tarteletter med lök och getost LL<br>Minisnigelkrustader och Comté-ost L<br>Minnes Charcuterie; gourmetostar, kallskuret, inlagda grönsaker och kompott L, G<br>Färska salladsblad, grönsakscrudité och champagnevinägrett V, G<br>Kallrökt öring och pepparrotskräm L, G<br>Grillad kyckling, minigurkor och dijonmajonnäs M, G<br>Vegetarisk sallad niçoise V, G<br>Hantverksbröd, croissant och vispat smör L</p><p>Huvudrätt och dessert serveras till bordet: (huvudrätten väljs på plats)<br>Pocherat ägg L<br>- lufttorkad skinka, rostad brioche och bearnaisesås<br>eller<br>Ägg Florentine L<br>- stekt spenat och lök, brioche och bearnaisesås</p><p>Dessert<br>Chokladbakelse i tre lager med champagne- och päronkompott LL, G</p><p>Rättvisemärkt mörkrostat ekologiskt kaffe eller bryggt te</p><p>Priset för brunchmenyn inkluderar inte drycker.<br>Brunchen serveras i Savoy-teaterns restaurang Minne Garden två timmar innan föreställningen börjar.<br>Specialdieter beaktas vid förhandsbokning (senast tre dagar före föreställningen).</p><p>Grupper med fler än tolv personer är välkomna att skicka e-post till myynti@minnehelsinki.fi för bokning.</p>", "en": "<p>Paris! The Show – a crowd-pleasing tribute to French music by top artists</p><p>Created by director Gil Marsalla, the international hit Paris! The Show is a tribute to iconic French songs and cabaret culture of the 20th century. The show, which will now be seen for the first time in Finland, will take the audience to the magical alleys of Montmartre and the legendary cabaret stages of Paris, while offering a wide selection of the most beloved French songs of the post-war era.</p><p>Touring the world since 2014, Paris! The Show is about a young American, Emily, who dreams of a bohemian life as an artist in Paris. In Montmartre, she befriends Édith Piaf, who is working as a waitress, and her friend Charles Aznavour.</p><p>The show will highlight the most famous French singers of all time. In addition to Piaf and Aznavour, the show will also feature music from other beloved French stars such as Jacques Brel, Yves Montand, Charles Trenet, Josephine Baker, Maurice Chevalier, Lucienne Boyer and Gilbert Bécaud.</p><p>The charismatic cast of performers, a stunning live band and atmospheric staging create an evocative musical experience that appeals to all ages.</p><p>The duration of the performance, including intermissions, is approximately 2 hours.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>The Show & Dinner and Brunch ticket includes an entrance ticket and a meat or vegetarian menu served to tables<br>at the Minne Garden restaurant in the Savoy Theatre.</p><p>The French dinner will be available on Fri 13 February and Sat 14 February for performances starting at 19:00. Dinner will be served from 17:00 onwards.</p><p>French dinner – menu classic<br>Minne’s country salad, caramelised onions, chevre mousse and figs L<br>Roasted whitefish, bouillabaisse sauce seasoned with saffron and pommes aligot L,G<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>OR</p><p>French dinner – menu green<br>Minne’s country salad, caramelised onions, chevre mousse and figs L<br>Artichoke cassoulet with pommes aligot and grilled king trumpet mushrooms L,G<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>The price of the dinner menu does not include drinks.<br>The dinner will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p><p>Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p><p>Minne's French Valentine's Day brunch is available on Sat 14 Feb for the performance starting at 14:00. Served from 12 noon onwards.</p><p>Starters and tasty small bites from a buffet table<br>Onion and goat cheese tartelettes LL<br>Miniature escargot tarts and Comté cheese L<br>Minne Charcuterie: gourmet cheeses, cold cuts, pickled vegetables and compote L,G<br>Fresh lettuce leaves, vegetable crudites and champagne vinaigrette V,G<br>Cold smoked trout and horseradish cream L,G<br>Grilled chicken, miniature pickles and Dijon mayonnaise M,G<br>Vegan Nizza salad V,G<br>Artisan bread, croissants and whipped butter L</p><p>Main course and dessert served at the table: (main course to be chosen on site)<br>Poached egg L<br>- air-dried ham, fried brioche and bearnaise sauce<br>Or<br>Poached egg Florentine L<br>- fried spinach and onion, brioche and bearnaise sauce</p><p>Dessert<br>Three-chocolate pastry with champagne and pear compote LL,G</p><p>Fair trade organic dark roast coffee or brewed tea</p><p>The price of the brunch menu does not include drinks.<br>The brunch will be served in the Savoy Theatre’s restaurant Minne Garden two hours before the start of the performance.<br>Special dietary requirements can be catered for on prior request (submitted at the latest 3 days before the performance).</p><p>Groups of more than 12 people should kindly contact the restaurant at: myynti@minnehelsinki.fi.</p>" }, "name": { "fi": "Paris! The Show", "sv": "Paris! The Show", "en": "Paris! The Show" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Sunborn Events Oy", "sv": "Sunborn Events Oy", "en": "Sunborn Events Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66929/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67354", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223605/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223605/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223605/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T10:12:54.476048Z", "last_modified_time": "2026-01-20T10:12:54.476063Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781023.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T10:12:54.371225Z", "last_modified_time": "2026-03-20T01:13:07.283295Z", "date_published": null, "start_time": "2026-02-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6612C03477D614101FEC774B6865C9FD/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6612C03477D614101FEC774B6865C9FD/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/6612C03477D614101FEC774B6865C9FD/Luottomies-elokuva_Lepoloma_7_" }, "description": { "fi": "<p>Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle.</p><p>Johanilla on yksi ehto: hän haluaa autonsa mukaan. Tommi lupautuu ajamaan Johanin auton Espanjaan – yhdessä Juhiksen kanssa. Asiat eivät kuitenkaan mene aivan suunnitellusti, ja kun Johanin auto varastetaan, Tommi ja Juhis päättävät selvittää tilanteen omin avuin ja pian sankarimme syöksyvät taas kiihtyvällä vauhdilla katastrofista toiseen.</p><p>Ikäraja: 7<br>Kesto: 88 min<br>Ensi-ilta: 4.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "sv": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "en": "Luottomies-elokuva: Lepoloma (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67354/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67866", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4055543", "sv": "https://www.lippu.fi/eventseries/name-4055543", "en": "https://www.lippu.fi/eventseries/name-4055543" }, "description": null, "price": { "fi": "20€/24,90€", "sv": "20€/24,90€", "en": "20€/24,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494271, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T12:15:30.147512Z", "last_modified_time": "2025-12-19T12:15:30.147528Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783084.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494271/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T12:15:30.030107Z", "last_modified_time": "2026-03-20T01:13:07.132664Z", "date_published": null, "start_time": "2026-02-14T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Juhlista ystävänpäivää Pepe Willbergin & Trio Play, Girlsin yhteisellä konsertilla!", "sv": "Fira alla hjärtans dag med gemensam konsert med Pepe Willberg & Trio Play, Girls!", "en": "Celebrate Valentine’s Day with a concert by Pepe Willberg & Trio Play, Girls!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1BEE5A15A697C4CEAF4B65337885F4BF/LOPPUUNMYYTY_Pepe_Willberg_Trio_Play_Girls", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1BEE5A15A697C4CEAF4B65337885F4BF/SLUTSALD_Pepe_Willberg_Trio_Play_Girls", "en": "http://www.vuotalo.fi/en/events/event/1BEE5A15A697C4CEAF4B65337885F4BF/SOLD_OUT_Pepe_Willberg_Trio_Play_Girls" }, "description": { "fi": "<p>Juhlista ystävänpäivää Pepe Willbergin & Trio Play, Girlsin yhteisellä konsertilla!</p><p>Ystävänpäivän konsertti tuo Vuotalolle yhden Suomen musiikkitaivaan kirkkaimmista tähdistä, Pepe Willbergin! Pepe esiintyy monipuolisuudestaan tunnetun Trio Play, Girlsin solistina.</p><p>Konsertissa kuullaan Willbergin ainutlaatuista ääntä ja tulkintoja hänen klassikkohiteistään pianotriolle sovitettuina, mm. Avaa ovi, Nocturne, Sinua Sinua rakastan, Myrskyluodon Maija, Raja ja Una Furtiva lagrima.<br>Pepe Willberg, laulu<br>Helena Plathan, sello<br>Reeta Aho, viulu<br>Joanna Broman, piano</p><p>Kesto: 2 t sis. väliajan</p>", "sv": "<p>Fira alla hjärtans dag med gemensam konsert med Pepe Willberg & Trio Play, Girls!</p><p>I alla hjärtans dag-konserten uppträder en av den finländska musikhimlens största stjärnor, Pepe Willberg, på Nordhusets scen! Pepe medverkar som solist i Trio Play, Girls, som är kända för sin mångsidighet.</p><p>I konserten får vi njuta av Willbergs unika röst och tolkningar av hans klassiska hits i arrangemang för pianotrio, bl.a. Avaa ovi, Nocturne, Sinua Sinua rakastan, Myrskyluodon Maija, Raja och Una Furtiva lagrima.</p><p>Pepe Willberg, sång<br>Helena Plathan, cello<br>Reeta Aho, violin<br>Joanna Broman, piano</p><p>Längd: 2 h inklusive paus</p>", "en": "<p>Celebrate Valentine’s Day with a concert by Pepe Willberg & Trio Play, Girls!</p><p>This Valentine’s Day concert will bring one of the brightest stars of the Finnish music scene, Pepe Willberg, to the stage of Vuotalo! Pepe will be the soloist of the group Trio Play, Girls, known for their versatility.</p><p>The concert will feature Willberg’s unique voice and interpretations of his classic hits arranged for a piano trio, including songs such as Avaa ovi, Nocturne, Sinua sinua rakastan, Myrskyluodon Maija, Raja and Una furtiva lagrima.</p><p>Pepe Willberg, vocals<br>Helena Plathan, cello<br>Reeta Aho, violin<br>Joanna Broman, piano</p><p>Duration: 2 h, incl. intermission</p>" }, "name": { "fi": "LOPPUUNMYYTY Pepe Willberg & Trio Play, Girls", "sv": "SLUTSÅLD Pepe Willberg & Trio Play, Girls", "en": "SOLD OUT Pepe Willberg & Trio Play, Girls" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67866/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68035", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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" } ], "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": 1494651, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T13:13:17.330185Z", "last_modified_time": "2026-01-27T13:13:17.330206Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784507.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494651/?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-27T12:12:45.065696Z", "last_modified_time": "2026-03-20T01:13:06.769518Z", "date_published": null, "start_time": "2026-02-14", "end_time": "2026-02-21", "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 talvilomaviikolla juhlistetaan ystävyyttä ja kannustetaan olemaan kaveri jollekulle, jolla sellaista ei ole.", "sv": "Under sportlovsveckan på Annegården firar vi vänskapen och uppmuntrar till att vara en vän till den som inte har någon.", "en": "During the winter break week, Annantalo celebrates friendship and encourages you to be a friend to someone who does not have one." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/191F2F6DD0353C15417363E5F03826F2/Talviloma_Annantalossa_Emme_ole_yksin", "sv": "http://www.annantalo.fi/sv/evenemang/event/191F2F6DD0353C15417363E5F03826F2/Sportlovet_pa_Annegarden_Vi_ar_inte_ensamma_", "en": "http://www.annantalo.fi/en/events/event/191F2F6DD0353C15417363E5F03826F2/Winter_break_at_Annantalo_We_are_not_alone_" }, "description": { "fi": "<p>Annantalon talvilomaviikolla juhlistetaan ystävyyttä ja kannustetaan olemaan kaveri jollekulle, jolla sellaista ei ole.</p><p>Loman avaa lauantaina 14.2. AnnanHouse diskotapahtuma teemalla ystävyyden tahdit. Taidelauantain työpajat jäävät päivältä väliin, mutta maksuttomia työpajoja on diskotapahtumassa klo 16–19. Disko on täynnä valoa, rytmiä ja hyvää mieltä kutsuu kaikki mukaan – juuri sellaisina kuin olette. Ystävänpäivän teemavärinä on vaaleanpunainen, mutta vaaleanpunaisen ystäviä ovat kaikki muutkin värit. Pukeudu asuun, joka tuo sinulle hyvää mieltä tai lainaa pukulainaamosta itsellesi diskoasusteita.<br> <br>Lomakino kutsuu lomailevat koululaiset nauttimaan ystävyysaiheisista elokuvista! Elokuvia näytetään Annansalissa tiistaista perjantaihin 17.–20.2. klo 12.00 ja klo 14.30. Elokuviin on vapaa pääsy, eikä ennakkoilmoittautumista vaadita. Ryhmän kanssa vierailijoille on varattu klo 12 näytös ja ryhmien tulee ilmoittautua ennakkoon pääsyn varmistamiseksi. Ryhmänäytöksiin otetaan myös muita halukkaita tilan mukaan.</p><p><b>Ma 16.2. klo 12 ja 14.30 <br>Robottivahtimestari B-Ö ja Piilopelin pulma</b><br>Robotti B-Ö opastaa Piilossa-näyttelyn Piilopeliin. Peliä kannattaa pelata kaverin kanssa tai porukalla, ja opastuksissa pyrimme löytämään kaikille pelikaverin.<br>Piilopeliä voi pelata aina kun talo on auki.</p><p><b>Elokuvanäytökset</b><br>Ti 17.2. klo 12.00 (ryhmät) ja 14.30 Mielen sopukoissa 2 / Inside Out 2<br>Ke 18.2. klo 12.00 (ryhmät) ja 14.30 Nalle Puh (2011)<br>To 19.2. klo 12.00 (ryhmät) ja 14.30 Paddington seikkailee / Paddington in Peru<br>Pe 20.2. klo 12.00 (ryhmät) ja 14.30 Luca</p><p><b>Ke 18.2. klo 10–12<br>Taideleikit ystävyysteemalla</b><br>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Taideleikit on suunnattu 0–3-vuotiaille lapsille sekä heidän omalle vanhemmallensa tai aikuiselle.</p><p><b>La 21.2. klo 11–14 <br>Annantalon taidelauantai: Aarrejahti</b> <br>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään. Ei ennakkoilmoittautumista, vapaa pääsy.</p><p><b>La 21.2. klo 11 ja 14</b><br>Tehdään taidejuttuja: Kiehtovia kätköjä +<br>Tehdään taidejuttuja: Minumaailma <br>Taidetyöpajat 6–10-vuotiaalle yhdessä oman aikuisen kanssa. Ennakkoilmoittautuminen.<br>Voit ilmoittautua Tehdään taidejuttuja-työpajoihin etsimällä ne Annantalon tapahtumakalenterista: https://www.annantalo.fi/fi/tapahtumat/</p><p><b>La 21.2. klo 14 <br>Teatteri Rollo: Köpöttäjät</b><br>Teatteri Rollon sanaton esitys Köpöttäjät vievät yleisön ihmettelemään köpöttelyä, höpöttelyä, kököttelyä ja housujen lököttelyä! <br>Ikäsuositus 3-9v. Liput 10€ / 6€ ovelta tai rollo@rollo.fi</p>", "sv": "<p>Under sportlovsveckan på Annegården firar vi vänskapen och uppmuntrar till att vara en vän till den som inte har någon.</p><p>Lovet börjar lördagen den 14 februari. AnnanHouse disco på temat vänskapens takter. Konstlördagens verkstäder tar paus, men avgiftsfria verkstäder ordnas under discoevenemanget kl. 16–19. Discot är fullt av ljus, rytm och glad stämning och alla är välkomna – just sådana som ni är. Vändagens temafärg är rosa, men alla andra färger är också vänner till rosa. Ta på dig något som får dig att må bra eller låna discokläder i kostymutlåningen.<br> <br>Sportlovsbion bjuder in skolelever till filmer om vänskap. Filmer visas i Annesalen tisdag till fredag 17–20.2 kl. 12.00 och 14.30. Filmerna har fritt inträde och ingen förhandsanmälan krävs. Visningen kl. 12 är avsedd för besökare i grupp, och grupperna ska anmäla sig i förväg för att säkerställa att det finns plats. Andra intresserade kan också delta i visningen för grupper om det finns plats.</p><p>Måndag 16.2 kl. 12 och 14.30 <br>Robotvaktmästaren B-Ö och Gömspelets gåta<br>Roboten B-Ö guidar dig i Gömspelet i utställningen I gömman. Spelet ska helst spelas med en kompis eller i grupp, och under handledningen försöker vi hitta en spelkompis till alla.</p><p>Filmer:<br>Tis 17.2 kl. 12.00 (grupper) och 14.30 Insidan ut 2/Inside Out 2<br>Ons 18.2 kl. 12.00 (grupper) och 14.30 Nalle Puh (2011)<br>Tor 19.2 kl. 12.00 (grupper) och 14.30 Paddington i Peru/Paddington in Peru<br>Fre 20.2 kl. 12.00 (grupper) och 14.30 Luca</p><p>Konstlekar med vänskapstema<br>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.</p>", "en": "<p>During the winter break week, Annantalo celebrates friendship and encourages you to be a friend to someone who does not have one.</p><p>The winter break will be kicked off on Saturday 14 February with an AnnanHouse disco event with the theme of ‘rhythms of friendship’. The Art Saturday workshops will be skipped that day, but there will be free-of-charge workshops at the disco event from 16.00 to 19.00. The disco will be full of light, rhythm and good vibes and invites everyone to join in – just as you are. The theme colour for Valentine’s Day is pink, but pink is also a friend of all other colours. Wear something that makes you feel good, or you can borrow some disco clothing from the Annantalo wardrobe.<br> <br>Holiday Cinema invites schoolchildren on their winter break to come enjoy films about friendship! The films will be screened in Annansali Hall from Tuesday to Friday 17–20 February at 12.00 and 14.30. The films are screened free of charge and no advance registration is required. The screening at 12.00 is reserved for groups, who must register in advance to ensure admission. If there is room, other people can also be admitted to the group screenings.</p><p>Monday 16 February at 12.00 and 14.30 <br>Robot caretaker B-Ö and the Hiding Game problem<br>Robot caretaker B-Ö will guide visitors to the Hiding Game featured in the Hidden exhibition. The game is best played with a friend or in a group, and we will try to find a teammate for everyone during the tours.</p><p>The films:<br>Tuesday 17 February at 12.00 (groups) and 14.30 Inside Out 2<br> Wednesday 18 February at 12.00 (groups) and 14.30 Winnie the Pooh (2011)<br> Thursday 19 February at 12.00 (groups) and 14.30 Paddington in Peru<br> Friday 20 February at 12.00 (groups) and 14.30 Luca</p><p>Art games with a friendship theme<br>These art games enrich play and provide play ideas to take home. The art games are aimed at children aged 0–3 and their own parent or adult.</p>" }, "name": { "fi": "Talviloma Annantalossa: Emme ole yksin", "sv": "Sportlovet på Annegården Vi är inte ensamma", "en": "Winter break at Annantalo: We are not alone" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68035/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }