Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=28&weekday=6%2C7
{ "meta": { "count": 6469, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=29&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=27&weekday=6%2C7" }, "data": [ { "id": "kulke:67359", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299670/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299670/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299670/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494733, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:15.414026Z", "last_modified_time": "2026-02-05T10:13:15.414040Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781031.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494733/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:15.304399Z", "last_modified_time": "2026-03-20T01:13:13.596993Z", "date_published": null, "start_time": "2026-02-21T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4D37507B00E2DD6221F4EC9C0333D22E/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4D37507B00E2DD6221F4EC9C0333D22E/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/4D37507B00E2DD6221F4EC9C0333D22E/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67359/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67994", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494581, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:35.066296Z", "last_modified_time": "2026-01-21T10:13:35.066323Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784294.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494581/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-01-21T10:13:34.863379Z", "last_modified_time": "2026-03-20T01:13:13.401153Z", "date_published": null, "start_time": "2026-02-21T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.", "sv": "Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).", "en": "Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible)." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5301B5C4719DE399659DFD51ABAFD646/Nakyvat_nakymattomat_", "sv": "http://www.stoa.fi/sv/evenemang/event/5301B5C4719DE399659DFD51ABAFD646/Nakyvat_nakymattomat_De_synliga_de_osynliga_", "en": "http://www.stoa.fi/en/events/event/5301B5C4719DE399659DFD51ABAFD646/Nakyvat_nakymattomat_The_Visible_the_Invisible_" }, "description": { "fi": "<p>Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.</p><p>Immersiivisyydellä tarkoitetaan, että yleisö saa kulkea teoksen sisällä, sekä valita mitä osia teoksesta haluaa kokea.</p><p>’Näkyvät, näkymättömät’ on Helsingin kaupungin nuorisopalvelujen tuottama ja toteuttama esitys, jonka työryhmään kuuluu nuoria helsinkiläisiä.</p><p>Ohjaajan sana: <br>Aina kun erilaiset ihmiset kohtaavat ja löytävät yhteyden, rakennamme yhteistä maailmaa ja parannamme ymmärrystä. <br>Halusimme tuoda yhteen helsinkiläisiä nuoria ja nuorten ryhmiä ja valmistaa yhdessä immersiivinen teoksen inspiroitumalla toisistamme.</p><p>Keräsimme materiaalia ryhmä- ja prosessilähtöisesti. Lähdimme synnyttämään uutta tietämättä, mitä on luvassa ja saimme paljon enemmän, kuin osasimme ikinä odottaakaan. Nuorten tekijöiden ryhmä työskenteli sitoutuen ja taitavasti toisiaan ja teemaa kuunnellen. On ollut ilo seurata, kuinka he ovat avanneet itsensä teokselle ja teemalle. Ryhmän kanssa työskentely on ollut täynnä lämpöä, ymmärrystä ja rehellistä luottamuksen ilmapiiriä.</p><p>Monitaiteinen yhteistyö on rikastuttanut ja mahdollistanut moninäkökulmaisen aiheen tutkimisen sekä ilmaisun muodot. <br>Olemme mielettömän vaikuttuneita lopputuloksesta ja olemme iloisia, että juuri sinä pääset kokemaan teoksen Näkyvät, näkymättömät.</p><p>Lämpimästi tervetuloa <br>Ohjaajat Serafiina Minerva ja Marjaana Veikkanen</p><p>Esitysajat: <br> Pe 20.2. klo 17:00 ja 19:00 <br>La 21.2. klo 15:00 ja 17:00 <br>Su 22.2. klo 15:00 ja 17:00 <br>Saavuthan ajoissa paikalle, emme voi valitettavasti ottaa myöhästyneitä sisään.</p><p>Kesto on n. 1 h (ei väliaikaa) <br>Suositusikäraja 12+. <br>Esitystila on osittain esteellinen. <br>Osallistuminen ei vaadi suomen kielen taitoa. <br>Esitys on pääsymaksuton. <br> <br>HUOM: Esitykseen pääsee vain etukäteen varatulla lipulla. Lippujen varaus: tiivistamo@hel.fi <br> <br>Esityksen ohjaus: Marjaana Veikkanen ja Serafiina Minerva <br>Valosuunnittelu: Jarkko Tuominen, Jaakko Ylimäki, Valo Melvas <br>Äänisuunnittelu: Tomas Lamas, Onni Palander, Nooa Ojala <br>Digitaide: Mikko Röman <br>Projisoinnit: Jarkko Tuominen ja työryhmä <br>Lavastus: Yö Heinänen <br>Puvustus: Työryhmä <br>Naamiotaide: Tytti Punkka ja Shadan Mahmud <br>Julisteen kuvat: Satu Lehtinen <br>Tuottajat: Tiina Toivonen ja Janne Friman <br>Esiintyjät: Sanni Marttinen, Aamos Lindeman, Karlo Korhonen, Mars Häkkinen, Mette Sarlin, Olga Reinistö, Yö Heinänen, Shadan Mahmud, Valma Merimaa, Viktor Viiriäinen, Saimi Alatalo <br>Avustavat esiintyjät: Narrin teatteritoiminnan ryhmäläisiä <br>Oppaat: Laura Toikander, Samuli Mäkisalo, Tanja Männistö, Marjaana Veikkanen ja Serafiina Minerva <br> <br>Kiitokset: Antti Sarpo ja Stoan henkilökunta, Helsingin työväenopisto, Essi Ndiaye, Mia Vainikainen, Narrin teatteritoiminta ystävät, läheiset ja kaikki apunsa ja tukensa produktiolle antaneet.</p>", "sv": "<p>Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).</p><p>Föreställningen är en experimentell upptäcktsresa i avskildhet och samhörighet. Den mångkonstnärliga föreställningen kombinerar olika former av utövande konst och improvisation, ljus- och ljudkonst, scenografikonst samt digital konst som utnyttjar artificiell intelligens.</p><p>Att verket är immersivt innebär i denna föreställning att publiken får röra sig inne i verket, påverka händelseförloppet samt bestämma vilka delar av verket de vill uppleva. Du får själv bestämma hur du vill delta och har rätt att hela tiden fastställa dina egna gränser. <br>I början av föreställningen får du säkerhetsanvisningar. På platsen finns guider och du kan vid behov kontakta dem i frågor som gäller föreställningen.</p><p>Vänligen kom i tid, vi kan tyvärr inte släppa in personer som kommer för sent.</p><p>Föreställningstider:<br>Fre. 20.2 kl. 17.00 och 19.00<br>Lör. 21.2 kl. 15.00 och 17.00<br>Sön. 22.2 kl. 15.00 och 17.00<br> <br>Föreställningen är cirka en timme lång (ingen paus). <br>Åldersrekommendation 12+. <br>Föreställningslokalen är inte helt tillgänglig. <br>Du behöver inte tala finska för att delta.</p><p>Föreställningen är avgiftsfri.<br>Deltagande i föreställningen förutsätter en på förhand bokad biljett. Boka din biljett via e-post: tiivistamo@hel.fi. <br>OBS: Avboka din plats om du inte kan komma: tiivistamo@hel.fi.<br> <br>Helsingfors ungdomstjänster producerar och genomför föreställningen. I arbetsgruppen ingår unga Helsingforsbor.</p>", "en": "<p>Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible).</p><p>The performance is an experimental exploration of separateness and belonging. The multi-artistic performance combines various forms of performing arts and improvisation, light and sound art, stage art and digital art that utilises AI.</p><p>In the context of this work, immersiveness means that the audience is allowed to move within the work, influence the course of events and determine which parts of the work they want to experience. You are free to decide the level of your participation and you have the right to set your own limits at any moment.</p><p>At the beginning of the performance, you will be briefed on safety instructions. The performance includes guides whom you can turn to if you have any questions about the performance.<br>Please arrive on time, as unfortunately we cannot admit late arrivals.</p><p>Performance times:<br>Fri 20 February at 17.00 and 19.00<br>Sat 21 February at 15.00 and 17.00<br>Sun 22 February at 15.00 and 17.00<br> <br>The duration is approx. 1 hour (without intermission). <br>Age recommendation 12+. <br>The performance space is not fully accessible. <br>Participation does not require Finnish language skills.</p><p>The performance is free of charge.<br>The performance is only accessible with a pre-booked ticket. Book your ticket by email: tiivistamo@hel.fi.</p><p>PLEASE NOTE! If you cannot make it, please cancel your ticket: tiivistamo@hel.fi.</p><p>The performance is produced and performed by Helsinki Youth Services. Its working group includes young Helsinki residents.</p>" }, "name": { "fi": "Näkyvät, näkymättömät", "sv": "Näkyvät, näkymättömät (De synliga, de osynliga)", "en": "Näkyvät, näkymättömät (The Visible, the Invisible)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67994/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67251", "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:351/?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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "10 € / 6 €", "sv": "10 € / 6 €", "en": "10 € / 6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494286, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T12:14:09.348503Z", "last_modified_time": "2025-12-22T12:14:09.348518Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778836.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494286/?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-22T12:14:09.196791Z", "last_modified_time": "2026-03-20T01:13:13.262884Z", "date_published": null, "start_time": "2026-02-21T12: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": "Teatteri Rollon 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ä!", "sv": "I Teateri Rollos Köpöttäjät får publiken träffa Traskarna!", "en": "Köpöttäjät by Theatre Rollo lets the audience experience plodding, yapping, squatting and plenty of baggy trousers!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8D5CECB0AB82C009164F3999261E8852/Teatteri_Rollo_Kopottajat", "sv": "http://www.annantalo.fi/sv/evenemang/event/8D5CECB0AB82C009164F3999261E8852/Teatteri_Rollo_Kopottajat", "en": "http://www.annantalo.fi/en/events/event/8D5CECB0AB82C009164F3999261E8852/Theatre_Rollo_Kopottajat_Plodders" }, "description": { "fi": "<p>Teatteri Rollon 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ä!</p><p>Köpöttäjät köpöttää ja toisillensa höpöttää. Välil joutuu kököttää, kun housut aina lököttää.<br>Jos köpöttäjä nököttää, niin toiset silloin mököttää.<br>Mistä tulee, minne menee Köpöttäjät nää?<br>Se kyllä sulle selviää, vaik köpö oli loru tää!</p><p>TULE MUKAAN KÖKÖTTÄMÄÄN!</p><p>Ohjaus: Sanna Monto<br>Käsikirjoitus: työryhmä<br>Esiintyjät: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Musiikki: Janne Immonen<br>Lavastus: Kati Lamppu<br>Puvustus: Niina Huovinen<br>Tekniikka: Juha Skukin<br> <br>Teatteri Rollon sanaton esitys<br>Ikäsuositus: 3–9-vuotiaat<br>Esityksen kesto: 35 minuuttia</p><p>Huomaattehan, että Annantalon Taidelauantain avoin paja on auki klo 11-14. Ehkä haluatte tulla hyvissä ajoin taiteilemaan ja katsomaan esitystä?</p><p>Liput: 10 € / 6 €<br>Lippuvaraukset ennakkoon: rollo@rollo.fi sekä puoli tunti ennen esitystä ovelta.</p>", "sv": "<p>I Teateri Rollos Köpöttäjät får publiken träffa Traskarna!</p><p>Traskarna traskar och snaskar och plaskar. Slänger och dänger och byxorna hänger.<br> Tar traskaren en lur kan någon snart bli sur.<br> Var kommer traskarna ifrån och vart är de på väg?<br> Det får du snart veta!<br>KOM MED OCH TRASKA!<br> <br>Regi: Sanna Monto<br>Manus: arbetsgrupp<br>På scenen: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Musik: Janne Immonen<br>Iscensättning: Kati Lamppu<br>Kostymering: Niina Huovinen<br>Teknik: Juha Skukin<br> <br>Ordlös föreställning av Teatteri Rollo<br>Åldersrekommendation: 3–9-åringar<br>Föreställningens längd: cirka 30 minuter<br> <br>Biljetter: 10 € / 6 €<br> Boka biljett: rollo@rollo.fi och vid dörren en halv timme före föreställningen.</p><p>Obs! På Annegården organiseras Öpnna för alla Konstlördagar kl. 11-14. kanske vill skapa konst och sen titta på teater?</p>", "en": "<p>Köpöttäjät by Theatre Rollo lets the audience experience plodding, yapping, squatting and plenty of baggy trousers!</p><p>“Plodders keep plodding and mouths keep flapping. Sometimes you gotta squat to keep your trousers up.<br> If a plodder keeps still, others feel ill.<br> Where do these Plodders come from and where do they go?<br> This little ditty was nonsense, but we’ll let you know!”<br>JOIN THE FUN AND PLOD WITH US!<br> <br>Directed by: Sanna Monto<br>Manuscript: working group<br>Performers: Visa Heinonen, Janne Immonen, Sanna Monto / Iiro Ristola<br>Music: Janne Immonen<br>Staging: Kati Lamppu<br>Costume design: Niina Huovinen<br>Tech: Juha Skukin<br> <br>Non-verbal performance by Theatre Rollo<br>Recommended age: 3-9-year-olds<br>Duration: approximately 30 minutes<br> <br>Tickets: €10/€6<br> Advance booking of tickets: rollo@rollo.fi and at the door thirty minutes before the show.</p><p>Note! In Annantalo there is an Art Saturday open for all. Maybe you´d like to come earlier, work in a workshop and then watch the performance?</p>" }, "name": { "fi": "Teatteri Rollo: Köpöttäjät", "sv": "Teatteri Rollo: Köpöttäjät", "en": "Theatre Rollo Köpöttäjät – Plodders" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67251/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67496", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494288, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T13:14:03.140827Z", "last_modified_time": "2025-12-22T13:14:03.140848Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781603.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494288/?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-22T13:14:03.023796Z", "last_modified_time": "2026-03-20T01:13:13.141064Z", "date_published": null, "start_time": "2026-02-21T09:00:00Z", "end_time": "2026-02-21T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalon_taidelauantai_Aarrejahti", "sv": "http://www.annantalo.fi/sv/evenemang/event/1F5D550069EF1AB758B5711D7BBA08BD/Annegardens_konstlordagar_Skattjakt", "en": "http://www.annantalo.fi/en/events/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalo_Art_Saturdays_Treasure_hunt" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Aarrejahti</b></p><p>Mikä on sinun aarteesi? Miten hyvä piilottaja olet? Työpajassa tehdään omalle aarteelle salaperäinen rasia, sekä sen luo johdattava tarunhohtoinen aarrekartta! Pääset piirtämään eri välineillä ja tutkimaan kuinka paperiin loihditaan ajan patinaa. Saat kotiin vietäväksi välineet jännittävään aarrejahtileikkiin.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p>P.S. Annnasalissa vierailee Teatteri Rollo: Köpöttäjät esitys klo 14!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Skattjakt</b><br>Vad är din skatt? Hur bra är du på att gömma saker? I verkstaden tillverkar du en mystisk låda för din skatt och en sagoomspunnen skattkarta som leder till den! Du får rita med olika redskap och utforska hur man ger papper patina. Du får med dig verktyg hem för en spännande skattjakt.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p><p>P.S. Teatteri Rollo besöker Annansali kl.14 med Köpöttäjät föreställningen ( ordlös)</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Treasure hunt</b><br>What is your treasure? How good are you at hiding things? At this workshop, you will get to make a mysterious box for your treasure and a legendary treasure map that leads to it! You will get to draw with different media and explore how you can create a patina of time on paper. After the workshop, you will have the equipment for an exciting treasure hunt game at home!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises.</p><p>The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p><p>P.S. In Annansali at 2 pm Köpöttäjät by Teatteri Rollo, a wordless humoristic play.</p>" }, "name": { "fi": "Annantalon taidelauantai: Aarrejahti", "sv": "Annegårdens konstlördagar: Skattjakt", "en": "Annantalo Art Saturdays: Treasure hunt" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67671", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p2625/?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/eventseries/name-4041993", "sv": "https://www.lippu.fi/eventseries/name-4041993", "en": "https://www.lippu.fi/eventseries/name-4041993" }, "description": null, "price": { "fi": "20 € / 7 €", "sv": "20 € / 7 €", "en": "20 € / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493974, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:15.179417Z", "last_modified_time": "2025-12-01T13:14:15.179430Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778570.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493974/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:15.087014Z", "last_modified_time": "2026-03-20T01:13:12.979539Z", "date_published": null, "start_time": "2026-02-20T17: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": "Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä.", "sv": "Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram.", "en": "You have to dare let go and jump into the unknown, so that something new can emerge." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9CB1143C9D938363DADB6E3ED2501940/Fragile_Kollektiivi_Unleashed", "sv": "http://www.caisa.fi/sv/evenemang/event/9CB1143C9D938363DADB6E3ED2501940/Fragile_Kollektiivi_Unleashed", "en": "http://www.caisa.fi/en/events/event/9CB1143C9D938363DADB6E3ED2501940/Fragile_Kollektiivi_Unleashed" }, "description": { "fi": "<p>Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä.</p><p>Unleashed on tanssitaiteilija Riku Lehtopolun koreografia kahdelle akrobaatille. Nykysirkusteos tutkii akrobatian ja tanssillisen ilmaisun keinoin ihmisten välisiä suhteita nykymaailmassa sekä irtipäästämisen teemaa. Mitä odotuksia vallitseva maailmantilanne asettaa ihmisten välisille suhteille? Entä me itse, mihin haluamme takertua? Mitä muuttuu, jos antaa virran viedä? Täytyy uskaltaa irrottaa ote, hypätä tuntemattomaan, jotta jotain uutta voi syntyä. Teos pureutuu syvälle inhimillisyyden syövereihin käyttäen välineenä esiintyjien fyysisiä kehoja sekä akrobatiaa ja tanssia yhdistävää liikettä.<br> <br>Teoksessa esiintyvät akrobaatit Haidi Sadonkorpi ja Jilka Repo. Teoksessa nähdään ilma-akrobatiaa, tanssillista pariakrobatiaa sekä taiturointia cyr-renkaalla. Äänitaiteilija Mikko H Haapojan bassojouhikkovetoinen musiikki luo oman kerroksensa teoskokonaisuuteen. Valosuunnittelu on Kauri Klemelän.<br>Fragile Kollektiivi<br>Fragile Kollektiivi on vapaan kentän toimijoista koostuva taiteilijayhteisö. Aloitimme työryhmämme yhteistyön nykysirkusteoksella ”Fierce”, joka sai ensi-iltansa lokakuussa 2019. Vuonna 2022 valmistimme tähän ihmisten välisiä suhteita tanssin ja akrobatian keinoin käsittelevän teostrilogiaan toisen osan Fragile. Unleashed on tämän teostrilogian viimeinen osa.<br>Työryhmä <br>Koregrafi: Riku Lehtopolku<br>Esiintyjät: Haidi Sadonkorpi, Jilka Repo<br>Sävellys/äänisuunnittelu/musiikki: Mikko H Haapoja<br>Valosuunnittelu; Kauri Klemelä<br>Video/valokuvaus: Aleksi Hakala<br>Tuotanto: Haidi Sadonkorpi / Fragile Kollektiivi<br>Tukijat/yhteistyökumppanit: Taiteen Edistämiskeskus - Taike, Porvoon kaupunki, Cirko - Uuden Sirkuksen Keskus, Tanssiteatteri Hurjaruuth, Kulttuurikeskus Caisa<br>Esityksen kesto: 45 min, ei väliaikaa<br>Ikäsuositus: + 7 v<br>Kieli: sanaton<br>Sisältöhuomiot: Esityksessä käytetään teatterisavua. Normaali vahvistettu äänisuunnittelu akustisilla livesoittimilla.</p>", "sv": "<p>Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram.</p><p>Unleashed är danskonstnärens Riku Lehtopolkus koreografi för två akrobater. Detta moderna cirkusverk utforskar relationer mellan människor i dagens värld och teman kring att släppa taget genom akrobatik och dans. Vilka förväntningar ställer det rådande världsläget på relationerna mellan människor? Och vi själva, vad vill vi klamra oss fast vid? Vad förändras om vi följer med strömmen? Man måste våga släppa taget och hoppa ut i det okända, så att något nytt kan växa fram. Verket dyker djupt ner i mänsklighetens virvlar med hjälp av de medverkandes fysiska kroppar och rörelser som kombinerar akrobatik och dans.</p><p>Akrobaterna Haidi Sadonkorpi och Jilka Repo medverkar i verket. Verket innehåller luftakrobatik, parakrobatik med dans och uppträdande med cyr-hjul. Ljudkonstnären Mikko H Haapojas basharpsdrivna musik skapar ett eget lager i verkshelheten. Ljusdesignen är gjord av Kauri Klemelä.<br>Fragile Kollektiivi<br>Fragile Kollektiivi är en gemenskap av konstnärer på det fria fältet. Samarbetet i vår arbetsgrupp inleddes med det moderna cirkusverket Fierce, som hade premiär i oktober 2019. Under 2022 tog vi fram Fragile, som är den andra delen av denna verkstrilogi som utforskar mänskliga relationer genom dans och akrobatik. Unleashed är den sista delen av verkstrilogin.<br>Arbetsgrupp<br>Koregrafi: Riku Lehtopolku<br>På scenen: Haidi Sadonkorpi, Jilka Repo<br>Komposition/ljuddesign/musik: Mikko H Haapoja<br>Ljusdesign; Kauri Klemelä<br>Video/fotografering: Aleksi Hakala<br>Produktion: Haidi Sadonkorpi / Fragile Kollektiivi<br>Sponsorer/samarbetspartner: Centret för konstfrämjande - Taike, Borgå stad, Cirko - Uuden Sirkuksen Keskus, Tanssiteateri Hurjaruuth, Kulturcentret Caisa<br>Föreställningens längd: 45 minuter, ingen paus.<br>Åldersrekommendation: + 7 år<br>Språk: ordlös<br>Innehållsvarning: Teaterrök används i föreställningen. Normal, förstärkt ljuddesign med akustiska liveinstrument.</p>", "en": "<p>You have to dare let go and jump into the unknown, so that something new can emerge.</p><p>Unleashed is a choreography for two acrobats, created by dance artist Riku Lehtopolku. Through acrobatics and dance expression, this contemporary circus act explores the relationships between people in today’s world and the theme of letting go. What expectations does the current world situation place on human relationships? And what about us? What do we want to cling to? What changes if you allow yourself to be carried away by the current? You have to dare let go and jump into the unknown, so that something new can emerge. The work delves deep into the depths of humanity, using the physical bodies of the performers and movement that combines acrobatics and dance as its instruments.</p><p>The work stars acrobats Haidi Sadonkorpi and Jilka Repo. The work features aerial acrobatics, pair dance acrobatics, and acrobatics with a Cyr wheel. Sound artist Mikko H. Haapoja’s music, with a bass jouhikko bowed lyre as the main instrument, brings its own layer to the work. The light design is by Kauri Klemelä.<br>Fragile Kollektiivi<br>Fragile Kollektiivi is a community of independent artists. We started our collaboration with the contemporary circus act Fierce, which premiered in October 2019. In 2022, we produced Fragile, the second part in this trilogy of works, which explores human relationships through dance and acrobatics. Unleashed is the final part of this trilogy of works.<br>Creative team<br>Choreographer: Riku Lehtopolku<br>Performers: Haidi Sadonkorpi, Jilka Repo<br>Composition/sound design/music: Mikko H. Haapoja<br>Lighting design: Kauri Klemelä<br>Video/photography: Aleksi Hakala<br>Production: Haidi Sadonkorpi / Fragile Kollektiivi<br>Supporters/partners: Arts Promotion Centre Finland (Taike), City of Porvoo, Cirko – Center for New Circus, Dance Theatre Hurjaruuth, Cultural Centre Caisa<br>Duration of the performance: 45 min, without intermission<br>Age recommendation: 7+<br>Language: non-verbal<br>Content notes: The performance will feature fog machines. Normal amplified sound design with live acoustic instruments.</p>" }, "name": { "fi": "Fragile Kollektiivi: Unleashed", "sv": "Fragile Kollektiivi: Unleashed", "en": "Fragile Kollektiivi: Unleashed" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67671/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67993", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494580, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:34.281864Z", "last_modified_time": "2026-01-21T10:13:34.281881Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784293.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494580/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-01-21T10:13:34.058060Z", "last_modified_time": "2026-03-20T01:13:12.774840Z", "date_published": null, "start_time": "2026-02-20T17: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": "Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.", "sv": "Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).", "en": "Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible)." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CF6EE74B3C633E23FB9F0A8C4CDEDFB4/Nakyvat_nakymattomat_", "sv": "http://www.stoa.fi/sv/evenemang/event/CF6EE74B3C633E23FB9F0A8C4CDEDFB4/Nakyvat_nakymattomat_De_synliga_de_osynliga_", "en": "http://www.stoa.fi/en/events/event/CF6EE74B3C633E23FB9F0A8C4CDEDFB4/_Nakyvat_nakymattomat_The_Visible_the_Invisible_" }, "description": { "fi": "<p>Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.</p><p>Immersiivisyydellä tarkoitetaan, että yleisö saa kulkea teoksen sisällä, sekä valita mitä osia teoksesta haluaa kokea.</p><p>’Näkyvät, näkymättömät’ on Helsingin kaupungin nuorisopalvelujen tuottama ja toteuttama esitys, jonka työryhmään kuuluu nuoria helsinkiläisiä.</p><p>Ohjaajan sana: <br>Aina kun erilaiset ihmiset kohtaavat ja löytävät yhteyden, rakennamme yhteistä maailmaa ja parannamme ymmärrystä. <br>Halusimme tuoda yhteen helsinkiläisiä nuoria ja nuorten ryhmiä ja valmistaa yhdessä immersiivinen teoksen inspiroitumalla toisistamme.</p><p>Keräsimme materiaalia ryhmä- ja prosessilähtöisesti. Lähdimme synnyttämään uutta tietämättä, mitä on luvassa ja saimme paljon enemmän, kuin osasimme ikinä odottaakaan. Nuorten tekijöiden ryhmä työskenteli sitoutuen ja taitavasti toisiaan ja teemaa kuunnellen. On ollut ilo seurata, kuinka he ovat avanneet itsensä teokselle ja teemalle. Ryhmän kanssa työskentely on ollut täynnä lämpöä, ymmärrystä ja rehellistä luottamuksen ilmapiiriä.</p><p>Monitaiteinen yhteistyö on rikastuttanut ja mahdollistanut moninäkökulmaisen aiheen tutkimisen sekä ilmaisun muodot. <br>Olemme mielettömän vaikuttuneita lopputuloksesta ja olemme iloisia, että juuri sinä pääset kokemaan teoksen Näkyvät, näkymättömät.</p><p>Lämpimästi tervetuloa <br>Ohjaajat Serafiina Minerva ja Marjaana Veikkanen</p><p>Esitysajat: <br> Pe 20.2. klo 17:00 ja 19:00 <br>La 21.2. klo 15:00 ja 17:00 <br>Su 22.2. klo 15:00 ja 17:00 <br>Saavuthan ajoissa paikalle, emme voi valitettavasti ottaa myöhästyneitä sisään.</p><p>Kesto on n. 1 h (ei väliaikaa) <br>Suositusikäraja 12+. <br>Esitystila on osittain esteellinen. <br>Osallistuminen ei vaadi suomen kielen taitoa. <br>Esitys on pääsymaksuton. <br> <br>HUOM: Esitykseen pääsee vain etukäteen varatulla lipulla. Lippujen varaus: tiivistamo@hel.fi <br> <br>Esityksen ohjaus: Marjaana Veikkanen ja Serafiina Minerva <br>Valosuunnittelu: Jarkko Tuominen, Jaakko Ylimäki, Valo Melvas <br>Äänisuunnittelu: Tomas Lamas, Onni Palander, Nooa Ojala <br>Digitaide: Mikko Röman <br>Projisoinnit: Jarkko Tuominen ja työryhmä <br>Lavastus: Yö Heinänen <br>Puvustus: Työryhmä <br>Naamiotaide: Tytti Punkka ja Shadan Mahmud <br>Julisteen kuvat: Satu Lehtinen <br>Tuottajat: Tiina Toivonen ja Janne Friman <br>Esiintyjät: Sanni Marttinen, Aamos Lindeman, Karlo Korhonen, Mars Häkkinen, Mette Sarlin, Olga Reinistö, Yö Heinänen, Shadan Mahmud, Valma Merimaa, Viktor Viiriäinen, Saimi Alatalo <br>Avustavat esiintyjät: Narrin teatteritoiminnan ryhmäläisiä <br>Oppaat: Laura Toikander, Samuli Mäkisalo, Tanja Männistö, Marjaana Veikkanen ja Serafiina Minerva <br> <br>Kiitokset: Antti Sarpo ja Stoan henkilökunta, Helsingin työväenopisto, Essi Ndiaye, Mia Vainikainen, Narrin teatteritoiminta ystävät, läheiset ja kaikki apunsa ja tukensa produktiolle antaneet.</p>", "sv": "<p>Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).</p><p>Föreställningen är en experimentell upptäcktsresa i avskildhet och samhörighet. Den mångkonstnärliga föreställningen kombinerar olika former av utövande konst och improvisation, ljus- och ljudkonst, scenografikonst samt digital konst som utnyttjar artificiell intelligens.</p><p>Att verket är immersivt innebär i denna föreställning att publiken får röra sig inne i verket, påverka händelseförloppet samt bestämma vilka delar av verket de vill uppleva. Du får själv bestämma hur du vill delta och har rätt att hela tiden fastställa dina egna gränser. <br>I början av föreställningen får du säkerhetsanvisningar. På platsen finns guider och du kan vid behov kontakta dem i frågor som gäller föreställningen.</p><p>Vänligen kom i tid, vi kan tyvärr inte släppa in personer som kommer för sent.</p><p>Föreställningstider:<br>Fre. 20.2 kl. 17.00 och 19.00<br>Lör. 21.2 kl. 15.00 och 17.00<br>Sön. 22.2 kl. 15.00 och 17.00<br> <br>Föreställningen är cirka en timme lång (ingen paus). <br>Åldersrekommendation 12+. <br>Föreställningslokalen är inte helt tillgänglig. <br>Du behöver inte tala finska för att delta.</p><p>Föreställningen är avgiftsfri.<br>Deltagande i föreställningen förutsätter en på förhand bokad biljett. Boka din biljett via e-post: tiivistamo@hel.fi.</p><p>OBS: Avboka din plats om du inte kan komma: tiivistamo@hel.fi.<br> <br>Helsingfors ungdomstjänster producerar och genomför föreställningen. I arbetsgruppen ingår unga Helsingforsbor.</p>", "en": "<p>Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible).</p><p>The performance is an experimental exploration of separateness and belonging. The multi-artistic performance combines various forms of performing arts and improvisation, light and sound art, stage art and digital art that utilises AI.</p><p>In the context of this work, immersiveness means that the audience is allowed to move within the work, influence the course of events and determine which parts of the work they want to experience. You are free to decide the level of your participation and you have the right to set your own limits at any moment. <br>At the beginning of the performance, you will be briefed on safety instructions. The performance includes guides whom you can turn to if you have any questions about the performance.</p><p>Please arrive on time, as unfortunately we cannot admit late arrivals.</p><p>Performance times:<br>Fri 20 February at 17.00 and 19.00<br>Sat 21 February at 15.00 and 17.00<br>Sun 22 February at 15.00 and 17.00<br> <br>The duration is approx. 1 hour (without intermission). <br>Age recommendation 12+.</p><p>The performance space is not fully accessible. <br>Participation does not require Finnish language skills.</p><p>The performance is free of charge.</p><p>The performance is only accessible with a pre-booked ticket. Book your ticket by email: tiivistamo@hel.fi. <br>PLEASE NOTE! If you cannot make it, please cancel your ticket: tiivistamo@hel.fi.</p><p>The performance is produced and performed by Helsinki Youth Services. Its working group includes young Helsinki residents.</p>" }, "name": { "fi": "Näkyvät, näkymättömät", "sv": "Näkyvät, näkymättömät (De synliga, de osynliga)", "en": "Näkyvät, näkymättömät (The Visible, the Invisible)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67993/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67358", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299695/", "sv": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299695/", "en": "https://www.lippu.fi/event/kino-helios-kaunis-rietas-onnellinen-malmitalo-21299695/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494737, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T13:14:00.272005Z", "last_modified_time": "2026-02-05T13:14:00.272039Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494737/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T13:14:00.157626Z", "last_modified_time": "2026-03-20T01:13:12.655713Z", "date_published": null, "start_time": "2026-02-20T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B89A16647CAB075DDB1331F846DD23E/Kaunis_rietas_onnellinen_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B89A16647CAB075DDB1331F846DD23E/Kaunis_rietas_onnellinen_12_", "en": "http://www.malmitalo.fi/en/events/event/0B89A16647CAB075DDB1331F846DD23E/Kaunis_rietas_onnellinen_12_" }, "description": { "fi": "<p>Kaunis rietas onnellinen kertoo Kaija Koon matkasta itsevarmaksi ja rohkeaksi artistiksi.</p><p>Elokuva on voimakas tarina yhdestä Suomen suurimmista artisteista, jonka musiikki on lohduttanut ja voimaannuttanut jo sukupolvien ajan.</p><p>Pianistipuoliso Markku näkee hänen lahjansa kirkkaammin kuin kukaan muu. Menestys ei tule kuitenkaan ilman sisäistä taistelua. Isän menetyksen mukanaan tuoma suru pysäyttää Kaijan ja saa hänet luopumaan hetkellisesti unelmistaan.</p><p>Kun yllättävä jättisuosio nostaa Kaijan supertähdeksi, hänen on kohdattava paitsi menestyksen varjot, myös löydettävä oma äänensä – jotta hänen on mahdollista nousta lavalle vapaampana kuin koskaan.</p><p>Solar Filmsin tuottaman elokuvan on ohjannut Selma Vilhunen ja sen pääosissa nähdään Oona Airola ja Jari Virman.</p><p>Ikäraja: 12<br>Kesto: 117 min<br>Ensi-ilta: 18.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Kaunis rietas onnellinen (12) – Kino Helios", "sv": "Kaunis rietas onnellinen (12) – Kino Helios", "en": "Kaunis rietas onnellinen (12) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67358/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67992", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494579, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T09:12:53.620196Z", "last_modified_time": "2026-01-21T09:12:53.620211Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784292.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494579/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-01-21T09:12:53.400774Z", "last_modified_time": "2026-03-20T01:13:12.217663Z", "date_published": null, "start_time": "2026-02-20T15: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": "Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.", "sv": "Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).", "en": "Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible)." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D341691F3967356D46E2451563C2DEED/Nakyvat_nakymattomat_", "sv": "http://www.stoa.fi/sv/evenemang/event/D341691F3967356D46E2451563C2DEED/Nakyvat_nakymattomat_De_synliga_de_osynliga_", "en": "http://www.stoa.fi/en/events/event/D341691F3967356D46E2451563C2DEED/Nakyvat_nakymattomat_The_Visible_the_Invisible_" }, "description": { "fi": "<p>Tervetuloa kokemaan immersiivinen esitys! Esitys käsittelee teemoja erillisyys ja yhteenkuuluvuus.</p><p>Immersiivisyydellä tarkoitetaan, että yleisö saa kulkea teoksen sisällä, sekä valita mitä osia teoksesta haluaa kokea. <br>’Näkyvät, näkymättömät’ on Helsingin kaupungin nuorisopalvelujen tuottama ja toteuttama esitys, jonka työryhmään kuuluu nuoria helsinkiläisiä.</p><p>Ohjaajan sana: <br>Aina kun erilaiset ihmiset kohtaavat ja löytävät yhteyden, rakennamme yhteistä maailmaa ja parannamme ymmärrystä. <br>Halusimme tuoda yhteen helsinkiläisiä nuoria ja nuorten ryhmiä ja valmistaa yhdessä immersiivinen teoksen inspiroitumalla toisistamme.</p><p>Keräsimme materiaalia ryhmä- ja prosessilähtöisesti. Lähdimme synnyttämään uutta tietämättä, mitä on luvassa ja saimme paljon enemmän, kuin osasimme ikinä odottaakaan. Nuorten tekijöiden ryhmä työskenteli sitoutuen ja taitavasti toisiaan ja teemaa kuunnellen. On ollut ilo seurata, kuinka he ovat avanneet itsensä teokselle ja teemalle. Ryhmän kanssa työskentely on ollut täynnä lämpöä, ymmärrystä ja rehellistä luottamuksen ilmapiiriä.</p><p>Monitaiteinen yhteistyö on rikastuttanut ja mahdollistanut moninäkökulmaisen aiheen tutkimisen sekä ilmaisun muodot. <br>Olemme mielettömän vaikuttuneita lopputuloksesta ja olemme iloisia, että juuri sinä pääset kokemaan teoksen Näkyvät, näkymättömät.</p><p>Lämpimästi tervetuloa! <br>Ohjaajat Serafiina Minerva ja Marjaana Veikkanen</p><p>Esitysajat: <br> Pe 20.2. klo 17:00 ja 19:00 <br>La 21.2. klo 15:00 ja 17:00 <br>Su 22.2. klo 15:00 ja 17:00 <br>Saavuthan ajoissa paikalle, emme voi valitettavasti ottaa myöhästyneitä sisään.</p><p>Kesto on n. 1 h (ei väliaikaa) <br>Suositusikäraja 12+. <br>Esitystila on osittain esteellinen. <br>Osallistuminen ei vaadi suomen kielen taitoa. <br>Esitys on pääsymaksuton. <br> <br>HUOM: Esitykseen pääsee vain etukäteen varatulla lipulla. Lippujen varaus: tiivistamo@hel.fi <br> <br>Esityksen ohjaus: Marjaana Veikkanen ja Serafiina Minerva <br>Valosuunnittelu: Jarkko Tuominen, Jaakko Ylimäki, Valo Melvas <br>Äänisuunnittelu: Tomas Lamas, Onni Palander, Nooa Ojala <br>Digitaide: Mikko Röman <br>Projisoinnit: Jarkko Tuominen ja työryhmä <br>Lavastus: Yö Heinänen <br>Puvustus: Työryhmä <br>Naamiotaide: Tytti Punkka ja Shadan Mahmud <br>Julisteen kuvat: Satu Lehtinen <br>Tuottajat: Tiina Toivonen ja Janne Friman <br>Esiintyjät: Sanni Marttinen, Aamos Lindeman, Karlo Korhonen, Mars Häkkinen, Mette Sarlin, Olga Reinistö, Yö Heinänen, Shadan Mahmud, Valma Merimaa, Viktor Viiriäinen, Saimi Alatalo <br>Avustavat esiintyjät: Narrin teatteritoiminnan ryhmäläisiä <br>Oppaat: Laura Toikander, Samuli Mäkisalo, Tanja Männistö, Marjaana Veikkanen ja Serafiina Minerva <br> <br>Kiitokset: Antti Sarpo ja Stoan henkilökunta, Helsingin työväenopisto, Essi Ndiaye, Mia Vainikainen, Narrin teatteritoiminta ystävät, läheiset ja kaikki apunsa ja tukensa produktiolle antaneet.</p>", "sv": "<p>Välkommen att uppleva det immersiva verket Näkyvät, näkymättömät (De synliga, de osynliga).</p><p>Föreställningen är en experimentell upptäcktsresa i avskildhet och samhörighet. Den mångkonstnärliga föreställningen kombinerar olika former av utövande konst och improvisation, ljus- och ljudkonst, scenografikonst samt digital konst som utnyttjar artificiell intelligens.</p><p>Att verket är immersivt innebär i denna föreställning att publiken får röra sig inne i verket, påverka händelseförloppet samt bestämma vilka delar av verket de vill uppleva. Du får själv bestämma hur du vill delta och har rätt att hela tiden fastställa dina egna gränser. <br>I början av föreställningen får du säkerhetsanvisningar. På platsen finns guider och du kan vid behov kontakta dem i frågor som gäller föreställningen.</p><p>Vänligen kom i tid, vi kan tyvärr inte släppa in personer som kommer för sent.</p><p>Föreställningstider:<br>Fre. 20.2 kl. 17.00 och 19.00<br>Lör. 21.2 kl. 15.00 och 17.00<br>Sön. 22.2 kl. 15.00 och 17.00<br> <br>Föreställningen är cirka en timme lång (ingen paus). <br>Åldersrekommendation 12+. <br>Föreställningslokalen är inte helt tillgänglig. <br>Du behöver inte tala finska för att delta.</p><p>Föreställningen är avgiftsfri.<br>Deltagande i föreställningen förutsätter en på förhand bokad biljett. Boka din biljett via e-post: tiivistamo@hel.fi. <br>OBS: Avboka din plats om du inte kan komma: tiivistamo@hel.fi.<br>Mer information: stoa.fi <br>Adress: Åbohusvägen 1 (Östra centrum)<br> <br>Helsingfors ungdomstjänster producerar och genomför föreställningen. I arbetsgruppen ingår unga Helsingforsbor.</p>", "en": "<p>Come and experience the immersive work Näkyvät, näkymättömät (The Visible, the Invisible).</p><p>The performance is an experimental exploration of separateness and belonging. The multi-artistic performance combines various forms of performing arts and improvisation, light and sound art, stage art and digital art that utilises AI.</p><p>In the context of this work, immersiveness means that the audience is allowed to move within the work, influence the course of events and determine which parts of the work they want to experience. You are free to decide the level of your participation and you have the right to set your own limits at any moment.</p><p>At the beginning of the performance, you will be briefed on safety instructions. The performance includes guides whom you can turn to if you have any questions about the performance.</p><p>Please arrive on time, as unfortunately we cannot admit late arrivals.</p><p>Performance times:<br>Fri 20 February at 17.00 and 19.00<br>Sat 21 February at 15.00 and 17.00<br>Sun 22 February at 15.00 and 17.00<br> <br>The duration is approx. 1 hour (without intermission). <br>Age recommendation 12+. <br>The performance space is not fully accessible. <br>Participation does not require Finnish language skills.</p><p>The performance is free of charge.<br>The performance is only accessible with a pre-booked ticket. Book your ticket by email: tiivistamo@hel.fi. <br>PLEASE NOTE! If you cannot make it, please cancel your ticket: tiivistamo@hel.fi.<br>Further information: stoa.fi <br>Address: Turunlinnantie 1 (Itäkeskus)<br> <br>The performance is produced and performed by Helsinki Youth Services. Its working group includes young Helsinki residents.</p>" }, "name": { "fi": "Näkyvät, näkymättömät", "sv": "Näkyvät, näkymättömät (De synliga, de osynliga)", "en": "Näkyvät, näkymättömät (The Visible, the Invisible)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67992/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67357", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/", "sv": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/", "en": "https://www.lippu.fi/event/kino-helios-esittaa-kino-helios-vinski-2-malmitalo-21299669/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494732, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-05T10:13:14.697897Z", "last_modified_time": "2026-02-05T10:13:14.697912Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781028.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494732/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-05T10:13:14.560452Z", "last_modified_time": "2026-03-20T01:13:12.093242Z", "date_published": null, "start_time": "2026-02-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_", "en": "http://www.malmitalo.fi/en/events/event/6781054B6AA2B9B4DCA75C7573B5EEF8/Vinski_2_7_" }, "description": { "fi": "<p>Hömpstadin kaupunkia suojelevan näkymättömän sankarin Vinskin supervoimat katoavat, kun näkymättömyyspulveri varastetaan.</p><p>Se on kuitenkin vasta ensimmäinen askel Hömpstadia uhkaavien häikäilemättömien rikollisten suunnitelmassa, jossa vaarassa on Vinskin lisäksi hänen äitinsä ja koko kaupunki.</p><p>Pelastaakseen Hömpstadin Vinskin on lähdettävä seuraamaan kadonneen Apteekkarin jättämiä arvoituksellisia ohjeita, jotka johdattavat hänet Hömpstadin \"nurjalle puolelle”. Vinski kohtaa myös kaupunkia otteessaan pitävän kaksinaamaisen rikollispomon, jonka suuruudenhulluudella ei ole rajoja.</p><p>Ikäraja: 7<br>Kesto: 82 min<br>Ensi-ilta: 13.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "name": { "fi": "Vinski 2 (7) – Kino Helios", "sv": "Vinski 2 (7) – Kino Helios", "en": "Vinski 2 (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67357/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67868", "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/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: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-3871749", "sv": "https://www.lippu.fi/eventseries/name-3871749", "en": "https://www.lippu.fi/eventseries/name-3871749" }, "description": null, "price": { "fi": "20 € / 28,90€", "sv": "20 € / 28,90€", "en": "20 € / 28,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494272, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-19T12:15:31.405845Z", "last_modified_time": "2025-12-19T12:15:31.405860Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780420.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494272/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-19T12:15:31.291473Z", "last_modified_time": "2026-03-20T01:13:11.986354Z", "date_published": null, "start_time": "2026-02-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.", "sv": "När Hevisaurus går in på scenen och juraheavyns första beats drar igång, stiger stämningen bland publiken upp till taket och ännu högre.", "en": "When Hevisaurus hit the stage and the first beats of their Jurassic heavy metal hit the air, the atmosphere in the audience goes through the roof." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/10CB9C8667804A92CEE18A138321046B/LOPPUUNMYYTY_Hevisaurus", "sv": "http://www.vuotalo.fi/sv/evenemang/event/10CB9C8667804A92CEE18A138321046B/SLUTSALD_Hevisaurus", "en": "http://www.vuotalo.fi/en/events/event/10CB9C8667804A92CEE18A138321046B/SOLD_OUT_Hevisaurus" }, "description": { "fi": "<p>Kun Hevisauruksen räpylät iskeytyvät estradiin ja jurahevin ensimmäiset biitit jyrähtävät ilmoille, nousee yleisössä tunnelma kattoon ja sen yli.</p><p>Kuten Hevisauruksen Mikä minusta tulee isona? -biisissäkin lauletaan: \"Seinät tärisee, katto putoaa, kun kertsi lähtee, kaikki sekoaa!\"</p><p>Rohkeimmat fanit joraavat keikoilla lavan edessä ja saattavat saada myös läpyt idoliltaan tai jopa Riffi Raffin plektran!<br>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi sekä tietysti itse Herra Hevisaurus pistävät pystyyn viihdyttävän lavashown, joka ei jätä juroimpiakaan tallaajia kylmäksi.</p><p>Jalan alle menevät sävellykset, nerokkaat sanoitukset ja taidokkaat sovitukset yhdistettynä vauhdikkaaseen menoon ja yllättäviin käänteisiin takaavat sen, että Hevisauruksen keikat ovat usein loppuunmyytyjä. Biiseissä on myös korvamatotakuu!</p><p>Kesto: n. 1 tunti</p>", "sv": "<p>När Hevisaurus går in på scenen och juraheavyns första beats drar igång, stiger stämningen bland publiken upp till taket och ännu högre.</p><p>Som vi sjunger i Hevisaurus låt Mikä minusta tulee isona?: ”Väggarna skakar, taget ramlar ner, när vi drar igång blir alla galna!” De modigaste fansen dansar framför scenen under konserterna och kanske till och med får en high five av sin idol eller ett plektrum av Riffi Raffi.</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi och naturligtvis Herra Hevisaurus själv bjuder på en underhållande estradshow som ingen kan låta bli att ryckas med av. Melodier som sätter sig i fötterna, geniala texter och skickliga arrangemang i kombination med fart och oväntade vändningar garanterar att Hevisaurus spelningar ofta är slutsålda. Låtarna har öronmaskgaranti!</p><p>Längd: cirka 1 timme</p>", "en": "<p>When Hevisaurus hit the stage and the first beats of their Jurassic heavy metal hit the air, the atmosphere in the audience goes through the roof.</p><p>As the Hevisaurus song Mikä minusta tulee isona? (‘What will I become when I grow up?) says: “The walls are shaking, the ceiling is falling, when the chorus hits, everyone goes crazy!” The bravest fans will be dancing in front of the stage, where they may get a high five from their idol or perhaps a guitar pick from Riffi Raffi!</p><p>Komppi Momppi, Riffi Raffi, Milli Pilli, Muffi Puffi and, of course, Mr. Hevisaurus himself will put on an entertaining stage show that will not leave even the surliest audience member cold. Compositions that get you moving, ingenious lyrics and skilful arrangements combined with upbeat antics and surprising twists and turns ensure that Hevisaurus’ shows are often sold out. The songs also come with an earworm guarantee!</p><p>Duration: roughly 1 h</p>" }, "name": { "fi": "LOPPUUNMYYTY Hevisaurus", "sv": "SLUTSÅLD Hevisaurus", "en": "SOLD OUT Hevisaurus" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67868/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67213", "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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494453, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-12T12:13:33.465827Z", "last_modified_time": "2026-01-12T12:13:33.465845Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778622.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-12T12:13:33.330745Z", "last_modified_time": "2026-03-20T01:13:11.366977Z", "date_published": null, "start_time": "2026-02-20", "end_time": "2026-03-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": "My Mother Became a Bird (äidistäni tuli lintu) on runollinen animaatiodokumentti tytöstä, joka on menettänyt äitinsä.", "sv": "My Mother Became a Bird är en poetisk dokumentär och en animation om en flicka som förlorade sin mamma.", "en": "My Mother Became a Bird is a poetic documentary narrating an animation about a girl who lost her mother." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/A811EB048898D443899C5D577A5838A6/Maryam_Khalilzadehbin_My_Mother_Became_a_Bird", "sv": "http://www.caisa.fi/sv/evenemang/event/A811EB048898D443899C5D577A5838A6/Maryam_Khalilzadehbin_My_Mother_Became_a_Bird", "en": "http://www.caisa.fi/en/events/event/A811EB048898D443899C5D577A5838A6/Maryam_Khalilzadehbin_My_Mother_Became_a_Bird" }, "description": { "fi": "<p>My Mother Became a Bird (äidistäni tuli lintu) on runollinen animaatiodokumentti tytöstä, joka on menettänyt äitinsä.</p><p>Tytöllä on paljon kysymyksiä elämästä ja kuolemasta ja hän kertoo tarinaansa muistojen ja unohtamisen pelon välimaastossa. Teos seuraa kahta tarinaa taiteilijan omasta nykyhetkestä ja äidin elinajasta. Lopussa nämä tarinat yhdistyvät.</p><p>Elokuva on omaelämäkerrallinen ja henkilökohtainen taideteos. Alustava konsepti ja käsikirjoitus on jo laadittu. Teoksen muoto on näyttely, joka yhdistää animaatiota, installaatiota ja videotaidetta. Myöhemmin hankkeen pohjalta tehdään lyhyt animaatioelokuva.<br>Teos jakautuu neljään osaan, joiden nimet ovat: Stove (hella), Sewing Machine (ompelukone), Washing Machine (pesukone) ja My Mother Became a Bird (äidistäni tuli lintu).</p><p>Visuaalisesti teos koostuu perinteisestä 2D-animaatiosta, jossa hyödynnetään kolmea erilaista analogista menetelmää: öljymaalausta, hiilipiirrosta ja kameran alla kuvattua stop motion -animaatiota (taiteilijan äidille kuuluneilla tavaroilla).</p><p>Näyttelyssä on monikieliset tekstitykset ja selostus kielellisen saavutettavuuden varmistamiseksi, ja näyttelyn kuvakerronta ylittää kielelliset rajat. Lisäksi installaatio on suunniteltu ottamaan huomioon erilaiset liikkumisen tarpeet.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 7.3.2025 klo 13–14.</p>", "sv": "<p>My Mother Became a Bird är en poetisk dokumentär och en animation om en flicka som förlorade sin mamma.</p><p>Hon har många frågor om liv och död och berättar sin historia mellan sitt minne och rädslan för att glömma. De två berättelserna växlar mellan konstnärens eget liv just nu och hennes mors livstid. Till slut förenas dessa två berättelser.</p><p>Detta projekt är ett biografiskt och personligt konstnärligt arbete.</p><p>Det första konceptet och manuset är redan färdiga. Projektet tar form som en utställning som kombinerar animation, installation och videokonst. Senare kommer det att omarbetas till en kort animerad film.</p><p>Verket är indelat i fyra delar med titlarna: Stove, Sewing Machine, Washing Machine och My Mother Became a Bird.</p><p>Det visuella konceptet som utforskas omfattar traditionell 2D-animation med tre olika analoga tekniker: oljefärg, kol och objektanimation (med föremål som tillhör modern) som filmas med kamera.</p><p>Utställningen har undertexter och berättarröster på flera språk för att säkerställa språklig tillgänglighet med tydligt bildberättande som överskrider språkbarriärerna. Den fysiska installationen utformas också för att tillgodose olika mobilitetsbehov.</p>", "en": "<p>My Mother Became a Bird is a poetic documentary narrating an animation about a girl who lost her mother.</p><p>The artist says: Two weeks before I moved to Europe to study, my mother passed away and went to another world. Just two weeks later, I had to pack my suitcase and leave, without having had the chance to mourn her loss. Four years have passed, yet I still feel that she is in our house, cooking in the kitchen, washing clothes, sewing. It is I who left that world, not her.<br> <br>This project brings memories to life, reimagining the fragmented pieces of dreams and reality that I have lived with my mother and after her, and intertwining them into a whole, like creating a family album.<br> <br>The exhibition narrates the life of the mother in four sections, reflecting both her life and the life of every homemaker woman: The Mirror, The Stove, The Sewing Machine, The Washing Machine, and My Mother Became a Bird.<br> <br>Through the creation of familiar domestic spaces, the works take shape through animation, video art, installation, illustration, and personal objects that carry memory.<br> <br>The exhibition has multilingual subtitles and commentary to ensure linguistic accessibility, and the exhibition's visual narrative crosses linguistic boundaries. In addition, the installation is designed to take into account different mobility needs.<br> <br>Sign language guidance will be organized for the exhibition in Finnish on Sat. 7.3.2025, from 13:00 to 14:00.</p>" }, "name": { "fi": "Maryam Khalilzadehbin: My Mother Became a Bird", "sv": "Maryam Khalilzadehbin: My Mother Became a Bird", "en": "Maryam Khalilzadehbin: My Mother Became a Bird" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67213/?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" }, { "id": "kulke:67982", "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:31/?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:348/?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:50/?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:p21812/?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:p29865/?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": 1494509, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T13:13:34.508022Z", "last_modified_time": "2026-01-16T13:13:34.508039Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784137.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494509/?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-16T13:13:34.394122Z", "last_modified_time": "2026-03-20T01:13:06.545580Z", "date_published": null, "start_time": "2026-02-14T14:00:00Z", "end_time": "2026-02-14T17: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": "Suuren suosion saavuttanut diskotapahtuma AnnanHouse juhlistaa ystävänpäivää sekä käynnistää tulevan lomaviikon!", "sv": "Det omåttligt populära discoevenemanget AnnanHouse uppmärksammar Alla hjärtans dag och sparkar igång den kommande semesterveckan!", "en": "The hugely popular disco event AnnanHouse will celebrate Valentine’s Day and kick off the upcoming winter break week!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17DAEBC149B760D07152BD93890B70CB/AnnanHouse_disko_-_Ystavyyden_tahdit", "sv": "http://www.annantalo.fi/sv/evenemang/event/17DAEBC149B760D07152BD93890B70CB/AnnanHouse_Disko_vanskapens_rytmer", "en": "http://www.annantalo.fi/en/events/event/17DAEBC149B760D07152BD93890B70CB/AnnanHouse_Disco_rhythms_of_friendship" }, "description": { "fi": "<p>Suuren suosion saavuttanut diskotapahtuma AnnanHouse juhlistaa ystävänpäivää sekä käynnistää tulevan lomaviikon!</p><p>AnnanHouse on koko perheen elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin tunnelmiin. Disko on täynnä valoa, rytmiä ja hyvää mieltä. Se kutsuu kaikki mukaan – juuri sellaisina kuin olette. Diskon teemavärinä on vaaleanpunainen, mutta vaaleanpunaisen ystäviä ovat kaikki muutkin värit. Pukeudu siis asuun, joka tuo sinulle hyvää mieltä tai lainaa pukulainaamosta itsellesi ja kaverillesi diskoasusteita. Diskoillassa on myös tarjolla kasvomaalausta.</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin, pysähtyä taiteilemaan lahjan ystävälle teemaan sopivissa työpajoissa ja tutustua näyttelyihimme ja Piilopeliin. Illan päättää yllätys ohjelmanumero Annantalon etupihalla.</p><p>Aikataulu <br>klo 16.00 Pukulainaamo SYDÄN avautuu ja työpajat alkavat <br>klo 16.30 Diskon ovet auki <br>klo 16.45 & klo 18.00 Fiona Fiouh’n tanssituokio ja pohjoisen vieras tanssilattialla <br>klo 17.30 Opastus Piilopeliin 1. kerroksen galleriassa <br>klo 19.00 Diskon ja työpajojen päätös <br> <br><b>OHJELMA </b> <br> <br>Työpajat ovat auki klo 16–19. Viimeiset osallistujat otetaan sisään klo 18.45. <br> <br><b>Ystävyyden valot ja värit</b></p><p>Valot ja varjot tanssivat toisen kerroksen teatteriluokassa. Nappaa ovelta taskulamppu ja astu mukaan heiluttamaan kehoasi ja luomaan mitä ihmeellisempiä valoja, värejä, varjoja ja liikkeitä. <br> <br>Työpajan toteutus: Annantalon taidekasvattajat <br> <br> <br><b>Ystävyyden tarinamaja</b></p><p>Millaisen tarinan haluaisit kertoa ystävälle tai ihanuusihmiselle? Sukella omaan soppeen, rauhalliseen sopukkaan, mukavaan majaan. Nappaa mukaan kivoja kuvia tai lorukortteja. Tarinoidaan yhdessä, jutellaan mukavia, kuunnellaan ja kerrotaan. Tarinamaja tarjoaa lapselle ja aikuiselle yhteisen lempeänleppoisan jutteluhetken kuvien, lorujen ja tarinakorttien parissa. <br> <br>Työpajan toteutus: Runoropinoita/Ulla-Maija Vanhala</p><p><b>Kuka on sinun eläinystäväsi?</b></p><p>Sanataidepajassa saat tehdä eläinystävästäsi minikirjan, johon voit kuvittaa eläimesi, kertoa siitä tietoja ja kirjoittaa halutessasi pienen tarinan. <br> <br>Työpajan toteutus: Vantaan sanataidekoulun opettajat</p><p><b>Ystävyyden muistikuvat</b></p><p>Tule tekemään ystävänpäiväkortteja kierrätysmateriaaleista! Työpajassa vanhat lehdet, kortit ja omat muistot muuntuvat luovuuden hengessä tervehdyksiksi ystäville ja rakkaille. Lapset työskentelevät pajassa itse, kaverin kanssa tai oman aikuisen tuella. <br> <br>Työpajan toteutus: Fabu Pres ja Rosamaría Bolom <br> <br><b>Kimallusnurkka</b><br> <br>Haluatko olla tiikeri, keiju vai hassu avaruusolio? Kimallusnurkassa saat kasvomaalauksen, joka muuttaa sinut lempihahmoksesi! Lisäksi on kimaltava glitterinurkka ja lasten tatuointeja, joilla loihdit diskotunnelman. Tule mukaan värien ja ilon maailmaan – täällä jokainen on diskotähti! <br> <br>Työpajan toteutus: Askelten Palo</p>", "sv": "<p>Det omåttligt populära discoevenemanget AnnanHouse uppmärksammar Alla hjärtans dag och sparkar igång den kommande semesterveckan!</p><p>AnnanHouse är ett specialevenemang med elektronisk dansmusik för hela familjen som introducerar besökarna till discokulturens stämningar. Discot är fullt av ljus, rytm och glad atmosfär. Det bjuder in alla att delta – precis som ni är. Temafärgen för discot är rosa, men också alla andra färger är vänner med färgen rosa. Ta därför på dig något som får dig att må bra eller låna discokläder till dig själv och dina kompisar i kostymutlåningen. Discokvällen bjuder också på ansiktsmålning. <br> <br>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i danssessioner, stanna upp för att skapa en present till en vän i verkstäder enligt temat samt utforska våra utställningar och spelet Piilopeli. Kvällen avslutas med överraskningsprogram på gården framför Annegården. <br> <br>Tidsschema <br>kl. 16.00 Kostymtutlåningen SYDÄN öppnar och verkstäderna börjar <br>kl. 16.30 Dörrarna till discot öppnar <br>16.45 & 18.00 Danssession med Fiona Fiouh och en gäst norrifrån på dansgolvet <br>kl. 17.30 Guidning för spelet Piilopeli i galleriet på första våningen <br>kl. 19.00 Discot och verkstäderna avslutas</p><p><b>PROGRAM</b></p><p>Workshopparna pågår kl. 16.00–19.00. De sista deltagarna släpps in kl. 18.45.</p><p><b>Vänskapens ljus och färger</b></p><p>Ljus och skuggor dansar i teatersalen. Ta en ficklampa vid dörren, kliv in och rör på kroppen för att skapa fantastiska ljus, färger, skuggor och rörelser.</p><p>Workshop ledd av konstpedagogerna vid Annantalo</p><p><b>Vänskapens berättelsehydda</b></p><p>Vilken sorts berättelse skulle du vilja berätta för dina vänner eller någon som står dig nära? Kryp in i din egen lilla vrå – ett lugnt hörn, en mysig koja. Ta del av bilder och dikter. Berätta historier, prata, lyssna och dela. Berättelsehyddan ger barn och deras föräldrar utrymme för avkopplande samtal med hjälp av bilder, dikter och berättelsekort.</p><p>Workshop av Runoropinoita / Ulla-Maija Vanhala</p><p><b>Vem är din djurvän?</b></p><p>I den här workshopen får du skapa en bok om dina djurvänner. Illustrera din bok, fyll den med information om din djurvän och lägg till en liten berättelse om du vill.</p><p>Workshop ledd av lärarna vid Vantaan sanataidekoulu</p><p><b>Vänskapens minnen</b></p><p>Skapa dina egna Alla hjärtans dag-kort med återvunnet material! I den här workshopen förvandlas gamla tidningar, kort och minnen till kreativa hälsningar för vänner och nära och kära. För barn som arbetar självständigt, tillsammans med en vän eller med hjälp av sina föräldrar.</p><p>Workshop av Fabu Press och Rosamaría Bolom</p><p><b>Glitterhörnan</b></p><p>Vill du vara en tiger, en fe eller en rolig utomjording? Få ansiktet målat i Glitterhörnan och förvandlas till din favoritfigur! Du kan också få glitter eller en barntatuering för att ladda upp inför discot. Kliv in i vår värld av färger och glädje – här får alla vara en discostjärna!</p><p>Workshop av Askelten Palo</p>", "en": "<p>The hugely popular disco event AnnanHouse will celebrate Valentine’s Day and kick off the upcoming winter break week!</p><p>AnnanHouse is an electronic dance music event for the entire family, which introduces visitors to the wonderful atmosphere that is disco culture. The disco will be full of light, rhythm and good vibes. It invites everyone to join in – just as you are. The theme colour of the event is pink, but pink is also a friend of all other colours. With that in mind, wear something that makes you feel good, or you can borrow some disco outfits for you and your friends from the Annantalo wardrobe. The disco evening will also feature face painting for those who want it. <br> <br>Annantalo’s own DJ Nicolas Sebastien will be in charge of the music, spinning top records from house to disco. During the disco evening, you can also jump into dance sessions, stop to make a gift for a friend at workshops themed according to the event, and explore our exhibitions and hiding game. The evening will end with a surprise number in the front yard of Annantalo. <br> <br>Schedule <br>16.00: The SYDÄN wardrobe opens and the workshops start <br>16.30: The disco opens <br>16.45 & 18.00: Fiona Fiouh’s dance session and a northern guest on the dance floor <br>17.30: Guided tour of the escape room in the first-floor gallery <br>19.00: The disco and workshops end</p><p><b>PROGRAMME</b> <br> <br>The workshops run from 4 PM until 7 PM. The last participants will be admitted in at 6:45 PM.</p><p><b>The Lights and Colors of Friendship</b></p><p>Lights and shadows are dancing in the theatre classroom. Grab a flashlight by the door, step in and move your body to create wonderful lights, colors, shadows, and movements. <br> <br>Workshop by the art educators of Annantalo <br> <br><b>The Story Hut of Friendship</b></p><p>What kind of story would you like to tell your friends or a special someone? Dive into your own nook, a peaceful corner, a lovely little fort. Grab some pictures and poems. Tell stories, chat, listen, and share. The story hut gives children and their parents space for relaxing chats with pictures, poems, and storytelling cards. <br> <br>Workshop by Runoropinoita/Ulla-Maija Vanhala</p><p><b>Who is your animal friend?</b></p><p>In this literary art workshop, you get to create a book about your animal friends. Illustrate your book, fill it with information about your animal friend, and include a little story if you wish. <br> <br>Workshop by the teachers of Vantaan sanataidekoulu. <br> <br><b>Memories of Friendship</b></p><p>Create your own Valentine’s Day cards using recycled materials! In this workshop, old magazines, cards, and memories are turned into creative greetings for friends and loved ones. For kids working independently, with a friend, or assisted by their parents. <br> <br>Workshop by Fabu Pres and Rosamaría Bolom <br> <br><b>Glitter Corner</b><br> <br>Would you like to be a tiger, a fairy, or a funny alien? Get your face painted in the Glitter Corner and turn into your favourite character! You can also get glittered up or get a kids’ tattoo to set yourself up for the disco. Join our world of colors and joy – everyone here gets to be a disco superstar! <br> <br>Workshop by Askelten Palo</p>" }, "name": { "fi": "AnnanHouse disko - Ystävyyden tahdit", "sv": "AnnanHouse Disko – vänskapens rytmer", "en": "AnnanHouse Disco – rhythms of friendship" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67982/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67794", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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/en/event/pikku-papun-aakkoslorut-stoa-21190687/", "sv": "https://www.lippu.fi/en/event/pikku-papun-aakkoslorut-stoa-21190687/", "en": "https://www.lippu.fi/en/event/pikku-papun-aakkoslorut-stoa-21190687/" }, "description": null, "price": { "fi": "11,10€/ 7,10€", "sv": "11,10€/ 7,10€", "en": "11,10€/ 7,10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494479, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-14T16:13:36.331440Z", "last_modified_time": "2026-01-14T16:13:36.331453Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782820.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494479/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-14T16:13:36.218498Z", "last_modified_time": "2026-03-20T01:13:06.360766Z", "date_published": null, "start_time": "2026-02-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Nyt innostutaan aakkosista!", "sv": "Vi leker med alfabetet!", "en": "Let's get excited about the ABCs!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A891A1B45BAA21F7BAEEBD2DAE598C86/Pikku_Papun_aakkoslorut", "sv": "http://www.stoa.fi/sv/evenemang/event/A891A1B45BAA21F7BAEEBD2DAE598C86/Pikku_Papus_bokstavsramsor", "en": "http://www.stoa.fi/en/events/event/A891A1B45BAA21F7BAEEBD2DAE598C86/Pikku_Papu_s_alphabet_rhymes" }, "description": { "fi": "<p>Nyt innostutaan aakkosista!</p><p>Pikku Papun Orkesteri ja kuvittaja Liisa Kallio ovat julkaisseet uuden Pikku Papun aakkoslorut-kokonaisuuden, joka sisältää uuden laulun jokaiselle suomen kielen aakkoselle.</p><p>Tule mukaan laulamaan ja leikkimään kanssamme, ja seuraa miten laulut kääntyvät kuviksi Liisa Kallion taidokkaissa käsissä!</p><p>Pikku Papun Orkesteri on lastenmusiikkia säveltävä ja esittävä yhtye, joka on jo vuodesta 2012 lähtien ilahduttanut kaikenikäisiä lapsia ja aikuisia ympäri Suomen. Orkesterin laulut syntyvät yhteistyössä kirjailija-kuvittaja Liisa Kallion kanssa.</p><p>Orkesterin energinen esiintyminen, akustiset soittimet, moniääninen laulu ja eri tyylilajeilla leikittelevät sovitukset ovat sulattaneet niin pienten kuin varttuneempienkin kuulijoiden sydämet. Pikku Papun laulut ovat tulleet monille tutuiksi Yle TV2:n Pikku Kakkosesta, Musarullaa-konserttisarjasta ja nyt uusimpana Pikku Papun aakkoset- tv-sarjasta, jossa leikitellään 29 jakson verran Pikku Papun aakkoslaulujen parissa.</p><p>Paikka: teatterisali <br>Kesto: noin 40 min <br>Kieli: selkosuomi</p>", "sv": "<p>Vi leker med alfabetet!</p><p>Pikku Papun Orkesteri och illustratören Liisa Kallio har lanserat en ny helhet med Pikku Papus bokstavsramsor, som innehåller en ny sång för varje bokstav i det finska alfabetet. Kom och sjung och lek med oss, och följ med hur sångerna blir till bilder i Liisa Kallios skickliga händer!</p><p>Pikku Papun Orkesteri är en grupp som skriver och uppträder med barnmusik till glädje för barn och vuxna över hela Finland sedan 2012. Orkesterns sånger skapas i samarbete med författaren och illustratören Liisa Kallio.</p><p>Orkesterns energiska uppträdande, akustiska musikinstrument, mångstämmiga sånger och arrangemang som leker med olika stilar har fått såväl småttingarnas som de äldre åhörarnas hjärtan att smälta. Många känner till Pikku Papus sånger från Lilla tvåan på Yle TV2, konsertserien Musarullaa och nu senast tv-serien Pikku Papun aakkoset, där man leker med Pikku Papus bokstavssånger i 29 avsnitt.</p><p>Plats: teatersalen <br>Längd: cirka 40 min. <br>Språk: lätt finska</p><p>Gruppanmälan till fredagens konsert på kultus.hel.fi från 13.1. Obs! Deltagarna lottas ut bland dem som anmält sig</p>", "en": "<p>Let's get excited about the ABCs!</p><p>Pikku Papun Orkesteri and Illustrator Liisa Kallio have published a new ‘Pikku Papun aakkoslorut’ set of rhymes that includes a new song for each letter in the Finnish alphabet. Come along to sing and play and watch how songs are turned into images in the skilled hands of Liisa Kallio!</p><p>Pikku Papun Orkesteri is a children's music ensemble that has been delighting children and adults of all ages all over Finland since 2012. The group’s songs are written in collaboration with Author-Illustrator Liisa Kallio.</p><p>The orchestra's energetic performances, acoustic instruments, multi-part vocals and playful arrangements across different styles have won the hearts of both young and older listeners. Many people are familiar with Pikku Papu’s songs from Yle TV2's Pikku Kakkonen children’s show, the Musarullaa concert series and now the latest Pikku Papun aakkoset TV series, which contains 29 episodes of Pikku Papu's alphabet songs.</p><p>Location: theatre hall <br>Duration: approximately 40 minutes <br>Language: easy Finnish</p><p>Group registration for Friday's concert from 13 January onwards at kultus.hel.fi. Please note! The participants will be selected by drawing lots from among those who have registered</p>" }, "name": { "fi": "Pikku Papun aakkoslorut – Pikku Papun Orkesteri ja kuvittaja Liisa Kallio", "sv": "Pikku Papus bokstavsramsor – Pikku Papun Orkesteri och illustratören Liisa Kallio", "en": "Pikku Papu’s alphabet rhymes – Pikku Papun Orkesteri and Illustrator Liisa Kallio" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67794/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67353", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222531/", "sv": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222531/", "en": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222531/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494558, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T08:12:49.750233Z", "last_modified_time": "2026-01-20T08:12:49.750247Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781022.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494558/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T08:12:49.646096Z", "last_modified_time": "2026-03-20T01:13:06.194915Z", "date_published": null, "start_time": "2026-02-14T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F60D4201E762CDEF21CF71F8E4341DC5/Kanakani_ja_murmelin_salaisuus_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F60D4201E762CDEF21CF71F8E4341DC5/Kanakani_ja_murmelin_salaisuus_7_", "en": "http://www.malmitalo.fi/en/events/event/F60D4201E762CDEF21CF71F8E4341DC5/Kanakani_ja_murmelin_salaisuus_7_" }, "description": { "fi": "<p>Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika.</p><p>Kanakani ja hänen ystävänsä, Meri ja Hugo, ovat keränneet mainetta kuuluisina seikkailijoina. Uusi seikkailu odottaa heitä, kun Rollo palaa kuvioihin mukanaan mystinen esine. Kanakanin ottoisä, kuningas Kaarle, huomaa esineeseen kaiverretun symbolin, joka liittyy tarunomaiseen murmeliin.</p><p>Kuningas kertoo tarinan murmelista, jolla on taaksepäin katsovat kasvot ja kannustaa ryhmää etsintäretkelle – murmeli on löydettävä ennen kuin joku ehtii käyttää sen maagista voimaa. Seikkailu saa yllättävän käänteen, kun Kanakani ystävineen huomaa, etteivät he ole ainoita, jotka etsivät tätä muinaista voimaesinettä.</p><p>Matkansa varrella he kohtaavat toinen toistaan erikoisempia esteitä ja uusia, värikkäitä hahmoja. Kuka löytää murmelin ensimmäisenä ja saa käyttöönsä sen valtavan voiman – ja mitä siitä seuraa?</p><p>Ikäraja: 7<br>Kesto: 89 min<br>Ensi-ilta: 23.01.2026<br>Elokuva on puhuttu suomeksi</p>" }, "name": { "fi": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "sv": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "en": "Kanakani ja murmelin salaisuus (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67353/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66928", "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": "69-119 € / S&D 171 €", "sv": "69-119 € / S&D 171 €", "en": "69-119 € / S&D 171 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490518, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T07:14:22.410887Z", "last_modified_time": "2025-08-26T07:14:22.410910Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776889.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490518/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T07:14:22.299013Z", "last_modified_time": "2026-03-20T01:13:05.966414Z", "date_published": null, "start_time": "2026-02-14T12: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/D5174CD80AD19A5AA86411033187DE9C/Paris_The_Show_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D5174CD80AD19A5AA86411033187DE9C/Paris_The_Show_", "en": "http://www.savoyteatteri.fi/en/events/event/D5174CD80AD19A5AA86411033187DE9C/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:66928/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }