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&is_free=true&page=14
{ "meta": { "count": 27765, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=15", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=13" }, "data": [ { "id": "kulke:67997", "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": 1494584, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:37.191432Z", "last_modified_time": "2026-01-21T10:13:37.191449Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784297.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494584/?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:37.001148Z", "last_modified_time": "2026-03-20T01:13:15.004107Z", "date_published": null, "start_time": "2026-02-22T15: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/96E3A5002D3BA3C38C9F265A0CCEACBA/Nakyvat_nakymattomat_", "sv": "http://www.stoa.fi/sv/evenemang/event/96E3A5002D3BA3C38C9F265A0CCEACBA/Nakyvat_nakymattomat_De_synliga_de_osynliga_", "en": "http://www.stoa.fi/en/events/event/96E3A5002D3BA3C38C9F265A0CCEACBA/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.<br> <br>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+.</p><p>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. <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+. <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> <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:67997/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67996", "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": 1494583, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:36.548808Z", "last_modified_time": "2026-01-21T10:13:36.548826Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784296.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494583/?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:36.350671Z", "last_modified_time": "2026-03-20T01:13:14.815656Z", "date_published": null, "start_time": "2026-02-22T13: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/821F56D5EC1B26D43B79F1382443A546/Nakyvat_nakymattomat_", "sv": "http://www.stoa.fi/sv/evenemang/event/821F56D5EC1B26D43B79F1382443A546/Nakyvat_nakymattomat_De_synliga_de_osynliga_", "en": "http://www.stoa.fi/en/events/event/821F56D5EC1B26D43B79F1382443A546/_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+.</p><p>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.<br>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+.</p><p>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.</p><p>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.</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:67996/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67995", "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": 1494582, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T10:13:35.649937Z", "last_modified_time": "2026-01-21T10:13:35.649954Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784295.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494582/?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:35.479750Z", "last_modified_time": "2026-03-20T01:13:13.709624Z", "date_published": null, "start_time": "2026-02-21T15: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/F995F11C2DF1F593E53D38C7325D45BA/Nakyvat_nakymattomat_", "sv": "http://www.stoa.fi/sv/evenemang/event/F995F11C2DF1F593E53D38C7325D45BA/Nakyvat_nakymattomat_De_synliga_de_osynliga_", "en": "http://www.stoa.fi/en/events/event/F995F11C2DF1F593E53D38C7325D45BA/_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ä. <br>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+.</p><p>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. <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+. <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:67995/?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: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: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: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:67774", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494161, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T11:13:38.311535Z", "last_modified_time": "2025-12-09T11:13:38.311556Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780407.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494161/?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-09T11:13:38.243361Z", "last_modified_time": "2026-03-20T01:13:11.499800Z", "date_published": null, "start_time": "2026-02-20T08:00:00Z", "end_time": "2026-02-20T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C29D466D541F5096F25FE322A00D70D3/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C29D466D541F5096F25FE322A00D70D3/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/C29D466D541F5096F25FE322A00D70D3/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67774/?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:67773", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494160, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T11:13:38.041951Z", "last_modified_time": "2025-12-09T11:13:38.041966Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780406.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494160/?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-09T11:13:37.980879Z", "last_modified_time": "2026-03-20T01:13:10.866749Z", "date_published": null, "start_time": "2026-02-19T13:00:00Z", "end_time": "2026-02-19T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/FB8A1A74E6C086CF66CD95665D881AF3/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/FB8A1A74E6C086CF66CD95665D881AF3/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/FB8A1A74E6C086CF66CD95665D881AF3/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67773/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67556", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494193, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-11T10:13:13.444306Z", "last_modified_time": "2025-12-11T10:13:13.444325Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781711.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494193/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:47.154475Z", "last_modified_time": "2026-03-20T01:13:10.747082Z", "date_published": null, "start_time": "2026-02-19T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.", "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.", "en": "The modern mammal city, Zootopia, is a city like no other." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/70FA768275E3B3C7B5A3CB7D08413D5E/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/70FA768275E3B3C7B5A3CB7D08413D5E/Sportlovsbio_Zootropolis_7_", "en": "http://www.malmitalo.fi/en/events/event/70FA768275E3B3C7B5A3CB7D08413D5E/Winter_holiday_movie_Zootopia_7_" }, "description": { "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)", "sv": "Sportlovsbio: Zootropolis (7)", "en": "Winter holiday movie: Zootopia (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67556/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67555", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494171, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.940907Z", "last_modified_time": "2025-12-10T11:12:46.940922Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781710.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494171/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:46.876465Z", "last_modified_time": "2026-03-20T01:13:10.623207Z", "date_published": null, "start_time": "2026-02-19T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.", "sv": "Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.", "en": "The modern mammal city, Zootopia, is a city like no other." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Talvilomaleffa_Zootropolis_-_Elainten_kaupunki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Sportlovsbio_Zootropolis_7_", "en": "http://www.malmitalo.fi/en/events/event/6B293BE9D0EEB1AAAAAF9B68B9EF01F6/Winter_holiday_movie_Zootopia_7_" }, "description": { "fi": "<p>Moderni nisäkkäiden kaupunki, Zootropolis, on kaupunki, jollaista ei ole toista.</p><p>Se on maailman eläinten sulatusuuni, jossa kaikki norsusta päästäiseen asuvat yhdessä kaupunginosissa kuten elegantti Sahara Square ja viileä Tundratown. Mutta kun aina positiivinen konstaapeli Judy Hopps (Iina Kuustonen) saapuu Zootropolikseen, hän tajuaa, ettei ole helppoa olla ensimmäinen kaniini kaupungin poliisivoimien suurten ja karskien eläinten joukossa.</p><p>Näyttääkseen, mistä hänet on tehty, päättää Judy ratkaista hankalan jutun. Mysteerin ratkaiseminen tosin vaatii, että hän tekee yhteistyötä suulaan ja ovelan Nick Wilde (Ilkka Villi) -nimisen ketun kanssa.</p><p>Kesto: 108 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Den moderna däggdjursstaden Zootropolis är en stad som inte liknar någon annan.</p><p>Staden är en smältdegel för världens djur, där allt från elefanter till näbbmöss bor tillsammans i kvarter som eleganta Sahara Square och coola Tundratown. Men när den alltid positiva konstapeln Judy Hopps (Iina Kuustonen) anländer till Zootropolis inser hon att det inte är lätt att vara den första kaninen bland de stora, tuffa djuren i stadens polisstyrka. <br>För att visa vad hon går för bestämmer sig Judy för att lösa ett knepigt fall. För att lösa mysteriet måste hon dock samarbeta med en pratsam och listig räv vid namn Nick Wilde (Ilkka Villi).</p><p>Längd: 108 min. <br>Åldersgräns: K-7<br>Språk: finskt tal<br>Fritt inträde!</p>", "en": "<p>The modern mammal city, Zootopia, is a city like no other.</p><p>It's the animal melting pot of the world, where everything from elephants to lions live together in neighbourhoods such as the elegant Sahara Square and cool Tundratown. But when the ever-positive Officer Judy Hopps (Iina Kuustonen) arrives at Zootropolis, she realises it's not easy being the first rabbit among the large, rugged animals of the city's police force. <br>To show what she's made of, Judy decides to solve a tricky case. Solving the mystery, however, requires Judy to team up with a mouthy and cunning fox named Nick Wilde (Ilkka Villi).</p><p>Duration: 108 min <br>Age rating: 7<br>Language: spoken in Finnish<br>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Zootropolis - Eläinten kaupunki (7)", "sv": "Sportlovsbio: Zootropolis (7)", "en": "Winter holiday movie: Zootopia (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67560", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:42.536084Z", "last_modified_time": "2025-12-23T09:13:42.536100Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781719.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494299/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-23T09:13:42.445377Z", "last_modified_time": "2026-03-20T01:13:10.383592Z", "date_published": null, "start_time": "2026-02-19T08:00:00Z", "end_time": "2026-02-19T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF79F0A9BA99798DF532A1FD7B912F80/Elainpoliisit_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF79F0A9BA99798DF532A1FD7B912F80/Konstverkstaden_Elainpoliisit", "en": "http://www.malmitalo.fi/en/events/event/EF79F0A9BA99798DF532A1FD7B912F80/Art_workshop_animal_police" }, "description": { "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Tässä pajassa koulutetaan pieniä eläinpoliiseja Zootropolis-elokuvan hengessä. Tule askartelemaan oma poliisihattusi, tietysti eläimen korvilla koristeltuna!</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>I denna verkstad utbildas små djurpoliser i samma anda som i filmen Zootropolis. Kom och tillverka en egen polishatt, naturligtvis dekorerad med djuröron!</p><p>Verkstadens språk: finska</p><p>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>This workshop will train little animal police officers in the spirit of the film Zootropolis. Come and craft your own police hat – decorated with animal ears, of course!</p><p>Workshop language: Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Eläinpoliisit -taidepaja", "sv": "Konstverkstaden Eläinpoliisit", "en": "Art workshop: animal police" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67560/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68039", "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: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: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: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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494660, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T13:13:02.019124Z", "last_modified_time": "2026-01-28T13:13:02.019140Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783063.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494660/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-28T13:13:01.881222Z", "last_modified_time": "2026-03-20T01:13:09.995167Z", "date_published": null, "start_time": "2026-02-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär.", "sv": "Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4C9664354C3CE223C68C2CE03D1917CA/Bert_Sabbar_allt", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4C9664354C3CE223C68C2CE03D1917CA/Bert_Sabbar_allt", "en": "http://www.vuotalo.fi/en/events/event/4C9664354C3CE223C68C2CE03D1917CA/Bert_Sabbar_allt" }, "description": { "fi": "<p>Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär.</p><p>Hon heter Molly. Samma Molly som Bert också har blivit kär i! Och Molly och Bert praoar ihop och hon verkar gilla honom. Och Åke vet ingenting! Svåra frågor, dilemman och invecklade lögner staplas för att till slut brisera och Bert riskerar att förlora både sin bäste vän och den stora kärleken.</p><p>Filmen är med svenskt tal och utan textning.<br>Regi: Manuel Concha</p><p>Skådespelare: Axel Adelöw, Viggo Rapo, Matilda Gross, Elvis Karlsson, Sigge Dorsin, Josefin Neldén, Klas Eriksson, Peter Magnusson, Joel Adolphson, Isabella Pessoa Fernandes<br>Manus: Tapio Leopold</p><p>On TET-viikot parhaiden ystävien Bertin ja Åken elämässä, kun Åke ensimmäistä kertaa elämässään rakastuu.</p><p>Hänen nimensä on Molly. Sama Molly, johon myös Bert on rakastunut! Ja Molly ja Bert ovat TET-harjoittelussa yhdessä, ja Molly tuntuu pitävän hänestä. Eikä Åke tiedä asiasta mitään! Vaikeita kysymyksiä, pulmia ja monimutkaisia valheita kasautuu, kunnes kaikki lopulta räjähtää – ja Bert on vaarassa menettää sekä parhaan ystävänsä että suuren rakkautensa.</p><p>Elokuva on puhuttu ruotsiksi ja on ilman tekstitystä.</p>", "sv": "<p>Det är praoveckor för bästa vännerna Bert och Åke när Åke för första gången i sitt liv blir kär.</p><p>Hon heter Molly. Samma Molly som Bert också har blivit kär i! Och Molly och Bert praoar ihop och hon verkar gilla honom. Och Åke vet ingenting! Svåra frågor, dilemman och invecklade lögner staplas för att till slut brisera och Bert riskerar att förlora både sin bäste vän och den stora kärleken.</p><p>Filmen är med svenskt tal och utan textning.<br>Regi: Manuel Concha</p><p>Skådespelare: Axel Adelöw, Viggo Rapo, Matilda Gross, Elvis Karlsson, Sigge Dorsin, Josefin Neldén, Klas Eriksson, Peter Magnusson, Joel Adolphson, Isabella Pessoa Fernandes<br>Manus: Tapio Leopold</p>", "en": "<p>The movie is spoken in Swedish and without subtitles.</p>" }, "name": { "fi": "Bert Sabbar allt – Sportlovsbio", "sv": "Bert Sabbar allt – Sportlovsbio", "en": "Bert Sabbar allt – Sportlovsbio" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68039/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67772", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494159, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T11:13:37.730896Z", "last_modified_time": "2025-12-09T11:13:37.730926Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780405.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494159/?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-09T11:13:37.612041Z", "last_modified_time": "2026-03-20T01:13:09.889698Z", "date_published": null, "start_time": "2026-02-18T13:00:00Z", "end_time": "2026-02-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!", "sv": "Under sportlovet drömmer vi om strandliv på Nordhuset!", "en": "At Vuotalo, we will be dreaming of beach life in the middle of the winter break!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Rantaunelmia", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Stranddrommar", "en": "http://www.vuotalo.fi/en/events/event/2D1E2CBF1A68D759D4E5FF0C3B269B30/Beach_dreams" }, "description": { "fi": "<p>Talviloman keskellä unelmoidaan rantaelämästä Vuotalossa!</p><p>Tule rakentamaan yhteistaideteoksena toteutettavaan miniatyyrimaailmaan oma osuutesi: onko se hiekkarannan aurinkotuoli, merellä seilaava vene vai ehkä merenpinnan alla uiva kala taikka merenneito?<br> <br>Voit osallistua pajoihin talvilomaviikon arkipäivinä, vaikka joka päivä! Mukaan mahtuu kerrallaan noin 20 osallistujaa.</p><p>Alle kouluikäiset voivat osallistua oman aikuisen kanssa.</p><p>Valmistunut taideteos jää näytille Vuotalolle lomaviikon jälkeen<br>.<br>Ohjaus: Maaria Klemetti<br>Kielet: suomi ja englanti</p><p>Vapaa pääsy!</p>", "sv": "<p>Under sportlovet drömmer vi om strandliv på Nordhuset!</p><p>Kom och bygg en egen del av vår miniatyrvärld som skapas som ett gemensamt konstverk: blir det en solstol på stranden, en båt på havet eller kanske en fisk eller en sjöjungfru som simmar under ytan?</p><p>Vi kan delta i verkstäderna på vardagarna under höstlovsveckan, varje dag om du vill! Det finns plats för cirka 20 deltagare åt gången. Barn under skolåldern kan delta tillsammans med en vuxen. Det färdiga konstverket ställs ut på Nordhuset efter sportlovsveckan.</p><p>Regi: Maaria Klemetti<br>Språk: finska och engelska</p><p>Fritt inträde!</p>", "en": "<p>At Vuotalo, we will be dreaming of beach life in the middle of the winter break!</p><p>Come build your own part of a miniature world created as a work of collaborative art: will it be a deckchair on a sandy beach, a boat sailing at sea, or perhaps a fish or mermaid swimming under the surface?</p><p>You can participate in the workshops on weekdays during the winter holiday week – every day if you want to! The workshops have room for around 20 participants at a time. Children under school age can participate with an adult. The completed work of art will be on display at Vuotalo after the holiday week.</p><p>Instruction: Maaria Klemetti<br>Languages: Finnish and English</p><p>Free entry!</p>" }, "name": { "fi": "Rantaunelmia – Talviloman avoimet työpajat", "sv": "Stranddrömmar – Öppna verkstäder under sportlovet", "en": "Beach dreams – Open workshops during the winter break" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67772/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67554", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494170, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.626194Z", "last_modified_time": "2025-12-10T11:12:46.626209Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781708.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494170/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:46.545343Z", "last_modified_time": "2026-03-20T01:13:09.610669Z", "date_published": null, "start_time": "2026-02-18T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/241A391A95BDC4E641A3A203524FA155/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/241A391A95BDC4E641A3A203524FA155/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/241A391A95BDC4E641A3A203524FA155/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67554/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67553", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494169, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T11:12:46.284883Z", "last_modified_time": "2025-12-10T11:12:46.284899Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781707.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494169/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-10T11:12:46.183470Z", "last_modified_time": "2026-03-20T01:13:09.457341Z", "date_published": null, "start_time": "2026-02-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.", "sv": "Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.", "en": "Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Talvilomaleffa_Lumikki_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Sportlovsbio_Snovit_7_", "en": "http://www.malmitalo.fi/en/events/event/1AF0D5B7B68B47FA9EC5158F49AC4DAB/Winter_holiday_movie_Snow_White_7_" }, "description": { "fi": "<p>Lumikki on upouusi live-action-musikaali, joka perustuu vuoden 1937 klassikkoanimaatioon. Sen pääosissa Lumikkina ja ilkeänä kuningattarena nähdään Rachel Zegler ja Gal Gadot.</p><p>Taianomainen musiikkiseikkailu kiidättää katsojat takaisin ajattomaan tarinaan, jonka rakastettuihin hahmoihin lukeutuvat Ujo, Viisas, Vilkas, Jörö, Lystikäs, Unelias ja Nuhanenä.</p><p>Disneyn uuden elokuvan Lumikki on ohjannut Marc Webb ja tuottaneet Marc Platt ja Jared LeBoff sekä vastaavana tuottajana Callum McDougall. Uusia lauluja elokuvaan ovat tehneet Benj Pasek ja Justin Paul.</p><p>Kesto: 109 min <br>Ikäraja: K-7<br>Kieli: puhuttu suomeksi</p><p>Vapaa pääsy!</p>", "sv": "<p>Snövit är en helt ny live-action-musikal baserad på den klassiska animationen från 1937. I huvudrollen ses Rachel Zegler som Snövit och Gal Gadot som den elaka drottning.</p><p>Detta magiska musikaliska äventyr tar tittarna tillbaka till en tidlös berättelse med älskade karaktärer som Kloker, Butter, Glader, Blyger, Trötter, Prosit och Toker.</p><p>Disneys nya Snövit är regisserad av Marc Webb och producerad av Marc Platt och Jared LeBoff, med Callum McDougall som ansvarig producent. Nya låtar till filmen har skrivits av Benj Pasek och Justin Paul.</p><p>Längd: 109 min. <br>Åldersgräns: K-7<br>Språk: finskt tal</p><p>Fritt inträde!</p>", "en": "<p>Snow White is a brand new live-action musical based on the 1937 classic animation. It stars Rachel Zegler as Snow White and Gal Gadot as the Evil Queen.</p><p>This magical musical adventure takes viewers back to the timeless story with beloved characters including Bashful, Doc, Happy, Grumpy, Dopey, Sleepy, and Sneezy.</p><p>Disney's new Snow White is directed by Marc Webb and produced by Marc Platt and Jared LeBoff, with Callum McDougall as the executive producer. New songs for the film have been written by Benj Pasek and Justin Paul.</p><p>Duration: 109 min <br>Age rating: 7<br>Language: spoken in Finnish</p><p>Free entry!</p>" }, "name": { "fi": "Talvilomaleffa: Lumikki (7)", "sv": "Sportlovsbio: Snövit (7)", "en": "Winter holiday movie: Snow White (7)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67553/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67840", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-16T10:22:33.082498Z", "last_modified_time": "2025-12-16T10:22:33.082514Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778821.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494220/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-16T10:22:32.969636Z", "last_modified_time": "2026-03-20T01:13:09.346540Z", "date_published": null, "start_time": "2026-02-18T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule Vuotaloon katsomaan elokuvaa talvilomalla!", "sv": "Kom till Nordhuset och titta på film på sportlovet!", "en": "Join us at Vuotalo for a movie during the winter holiday!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/06E0FDB35B9BFD05EC3EB42FDBAE89C1/Talvilomaleffa_Ponyo_rantakalliolla_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/06E0FDB35B9BFD05EC3EB42FDBAE89C1/Sportlovsbio_Ponyo_pa_klippan_vid_havet_S_", "en": "http://www.vuotalo.fi/en/events/event/06E0FDB35B9BFD05EC3EB42FDBAE89C1/Winter_holiday_movie_Ponyo_S_" }, "description": { "fi": "<p>Tule Vuotaloon katsomaan elokuvaa talvilomalla!</p><p>PONYO RANTAKALLIOLLA on Hayao Miazakin kymmenes pitkä elokuvaohjaus ja yhdeksäs Studio Ghibli -tuotanto: “Tämä tarina kertoo Ponyosta, pienestä meren kalasta joka tekee kaikkensa toteuttaakseen unelmansa.</p><p>Hän haluaa elää maalla Sosuke -nimisen pojan kanssa. Ponyo rantakalliolla sijoittaa Hans Christian Andersenin Pienen merenneidon tarinan nyky-Japaniin. Se on taru lapsuudesta, rakkaudesta ja merestä”; tiivistää animaatiovelho.</p><p>Puhuttu suomeksi, ei tekstitystä<br>Ikäraja: Sallittu<br>Pituus: 101 min.<br>Ohjaus: Hayao Miyazaki<br>Käsikirjoitus: Hayao Miyazaki<br>Genret: Animaatio, Koko perheen elokuva</p><p>Vapaa pääsy!</p>", "sv": "<p>Kom till Nordhuset och titta på film på sportlovet!</p><p>PONYO PÅ KLIPPAN VID HAVET är Hayao Miyazakis tionde långfilm och nionde Studio Ghibli-produktion: ”Den här berättelsen handlar om Ponyo, en liten fisk i havet, som gör allt för att förverkliga sin dröm. Hon vill bo på land med pojken Sosuke.</p><p>Ponyo på klippan vid havet placerar Hans Christian Andersens saga om den lilla sjöjungfrun i dagens Japan. Den är en saga om barndomen, kärleken och havet”, sammanfattar animationsgeniet.</p><p>Åldersgräns: Tillåten<br>Längd: 101 min.<br>Regi: Hayao Miyazaki<br>Manus: Hayao Miyazaki</p>", "en": "<p>Join us at Vuotalo for a movie during the winter holiday!</p><p>Ponyo is Hayao Miyazaki’s tenth feature film and the ninth Studio Ghibli production: “This is the story of Ponyo, a small fish in the sea who will do anything to make her dreams come true. She wants to live on land with a boy named Sosuke.</p><p>Ponyo sets the story of Hans Christian Andersen’s The Little Mermaid in contemporary Japan. It is a story of childhood, love and the sea,” summarises the animation wizard.</p><p>Age rating: suitable for all ages<br>Duration: 101 min<br>Directed by: Hayao Miyazaki<br>Written by: Hayao Miyazaki</p>" }, "name": { "fi": "Talvilomaleffa: Ponyo rantakalliolla (S)", "sv": "Sportlovsbio: Ponyo på klippan vid havet (S)", "en": "Winter holiday movie: Ponyo (S)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67840/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67558", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494298, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:41.857565Z", "last_modified_time": "2025-12-23T09:13:41.857581Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781716.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494298/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-23T09:13:41.734644Z", "last_modified_time": "2026-03-20T01:13:09.059460Z", "date_published": null, "start_time": "2026-02-18T08:00:00Z", "end_time": "2026-02-18T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.", "sv": "I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.", "en": "Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/748629EB3C58C3CFE6B89B012B38C423/Satuolennon_ovi_-taidepaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/748629EB3C58C3CFE6B89B012B38C423/Konstverkstaden_Satuolennon_ovi", "en": "http://www.malmitalo.fi/en/events/event/748629EB3C58C3CFE6B89B012B38C423/Art_workshop_door_for_a_fairytale_creature" }, "description": { "fi": "<p>Talvilomaleffoista inspiroituneissa maksuttomissa työpajoissa askarrellaan yhdessä kunkin päivän leffaan teemaan sopiva teos kotiin vietäväksi.</p><p>Lumikin taikametsässä asuu monenlaisia satuolentoja! Tässä pajassa askarrellaan ovia, jotka vievät näiden olentojen kotiin. Mikä satuolento sinun ovesi takana asustaa?</p><p>Vapaa pääsy!</p>", "sv": "<p>I de avgiftsfria verkstäderna inspirerade av sportlovsfilmerna tillverkar vi tillsammans enligt temana i de dagliga filmerna verk som man kan ta med sig hem.</p><p>I Snövits magiska skog bor mångahanda sagovarelser! I denna verkstad pysslar man dörrar som leder in till dessa varelsers hem. Vilken sagovarelse bor bakom din dörr?</p><p>Verkstadens språk: finska <br>Fritt inträde!</p>", "en": "<p>Free workshops inspired by winter holiday films will be held for each film, allowing guests to craft a piece suited to the theme of each film for them to take home.</p><p>Snow White's magical forest is home to a many creatures and critters from fairytales! In this workshop, you’ll get to create a door leading to the homes of these creatures. Which fairytale creature lives behind your door?</p><p>Workshop language: Finnish<br>Free entry!</p>" }, "name": { "fi": "Satuolennon ovi -taidepaja", "sv": "Konstverkstaden Satuolennon ovi", "en": "Art workshop: door for a fairytale creature" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67558/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67872", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494506, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T12:13:27.617613Z", "last_modified_time": "2026-01-16T12:13:27.617636Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780529.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494506/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-01-16T12:13:27.489414Z", "last_modified_time": "2026-03-20T01:13:08.866946Z", "date_published": null, "start_time": "2026-02-18T08:00:00Z", "end_time": "2026-02-18T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C25170B0783D6634CB06ACE922CFC324/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/C25170B0783D6634CB06ACE922CFC324/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/C25170B0783D6634CB06ACE922CFC324/Art_games_a_space_for_play" }, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor. <br>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>" }, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67872/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }