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=33
{ "meta": { "count": 28024, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=34", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=32" }, "data": [ { "id": "kulke:67239", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:288/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494280, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T08:13:57.882155Z", "last_modified_time": "2025-12-22T08:13:57.882179Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780062.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494280/?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-22T08:13:57.629176Z", "last_modified_time": "2026-03-20T01:12:57.289049Z", "date_published": null, "start_time": "2026-02-06", "end_time": "2026-03-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9CDEFC509353D04C80574B6F9A969C9C/Tunnemuskelit", "sv": "http://www.annantalo.fi/sv/evenemang/event/9CDEFC509353D04C80574B6F9A969C9C/Tunnemuskelit_Kanslomuskler", "en": "http://www.annantalo.fi/en/events/event/9CDEFC509353D04C80574B6F9A969C9C/Tunnemuskelit" }, "provider": null, "description": { "fi": "<p>Miten erilaisten tunteiden kanssa tullaan toimeen? Haluaisitko oppia hillitsemään ja hallitsemaan tunteitasi paremmin?</p><p>Tunnemuskeliasiantuntijat ovat palveluksessasi! Tervetuloa hulvattoman hauskoihin treeneihin Maltti-Martin, Koko-Locon, Sisäisen apurin ja Strutsi Strösselssönin kanssa. Tunneduunari Oy:n kuntosalilla voit treenata tunnemuskeleita eli sellaisia henkisiä lihaksia, jotka auttavat selviytymään hankalissa tilanteissa. Kun jännittää, suututtaa, surettaa, houkuttaa tai arveluttaa.</p><p>Onko olemassa erikokoisia harmeja? Löytyykö ihmisen kehosta STOP-nappi? Mitä tehdä, kun nukkumaanmenoaika lähestyy ja Barbaba-pyjama on pyykissä? Tule mukaan miettimään ja harjoittelemaan hilpeiden hahmojen opastuksella.</p><p>Tunnemuskelit on hankalien tunteiden satumainen käsikirja, jossa tunnetaitojen opetteluun suhtaudutaan lempeydellä ja huumorilla.</p><p>Kirja on suunnattu 5–8-vuotiaille lapsille ja heidän kasvattajilleen.</p><p>Tekijöinä ovat runoilija, psykologi Miira Luhtavaara, taidekasvattaja Marjut Maristo ja kuvittajana Satu Kettunen.</p>", "sv": "<p>Hur hanterar du olika känslor? Skulle du vilja lära dig att kontrollera och hantera dina känslor bättre?</p><p>Känslomuskelexperterna står till din tjänst! Välkommen till en hysteriskt rolig träning med Maltti-Martti, Koko-Loco, Sisäinen apuri och Strutsi Strösselssön. På Tunneduunari Oy:s gym kan du träna dina känslomuskler, det vill säga de mentala muskler som hjälper dig att klara av svåra situationer. När du är nervös, arg, ledsen, frestad eller tveksam.</p><p>Finns det olika stora problem? Finns det en stoppknapp i människokroppen? Vad gör man när det närmar sig läggdags och Barbapapa-pyjamasen ligger i tvätten? Kom med för att fundera och träna tillsammans med roliga karaktärer.</p><p>Tunnemuskelit är en sagolik handbok om svåra känslor med ett varmt och humoristiskt förhållningssätt till inlärningen av emotionella färdigheter.</p><p>Boken riktar sig till barn i åldern 5–8 år och deras fostrare.</p><p>Boken har skapats av poeten och psykologen Miira Luhtavaara, konstpedagogen Marjut Maristo och illustratören Satu Kettunen.</p>", "en": "<p>How can you deal with different emotions? Would you like to learn to control and manage your emotions better?</p><p>Emotion muscle experts are at your service! Join us for a hilarious training session with Maltti-Martti, Koko-Loco, Inner Helper and Strösselssön the Ostrich. At Tunneduunari Oy’s gym, you can train your emotion muscles, i.e. mental muscles that help you manage in difficult situations. When you are nervous, angry, sad, tempted or apprehensive.</p><p>Do problems come in different sizes? Is there a STOP button in the human body? What should you do when bedtime approaches and your Barbapapa jammies are in the laundry? Join us to think about and practice these things with the help of hilarious characters.</p><p>Tunnemuskelit (‘Emotion Muscles’) is a magical handbook for difficult emotions, in which the learning of emotional skills is approached with gentleness and humour.</p><p>The book is aimed at children aged 5–8 and their carers.</p><p>The authors are poet and psychologist Miira Luhtavaara, art educator Marjut Maristo and illustrator Satu Kettunen.</p>" }, "short_description": { "fi": "Miten erilaisten tunteiden kanssa tullaan toimeen? Haluaisitko oppia hillitsemään ja hallitsemaan tunteitasi paremmin?", "sv": "Hur hanterar du olika känslor? Skulle du vilja lära dig att kontrollera och hantera dina känslor bättre?", "en": "How can you deal with different emotions? Would you like to learn to control and manage your emotions better?" }, "location_extra_info": null, "name": { "fi": "Tunnemuskelit – Kuvitusnäyttely kahvila Naperossa", "sv": "Tunnemuskelit – Känslomuskler – Illustrationsutställning på kafé Napero", "en": "Tunnemuskelit – Illustration exhibition at Café Napero" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67239/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67428", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494007, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:05.946335Z", "last_modified_time": "2025-12-03T08:13:05.946353Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781197.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494007/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:05.856973Z", "last_modified_time": "2026-03-20T01:12:56.885401Z", "date_published": null, "start_time": "2026-02-05T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_", "en": "http://www.malmitalo.fi/en/events/event/C232F010E05F0B26B396BCBEE8272EB7/Doc_Helios_Gaucho_Gaucho_S_" }, "provider": null, "description": { "fi": "<p>Elokuva nostaa katsojat hevosten selkään, matkalle argentiinalaiseen gaucho-kulttuuriin.</p><p>Pitkään odotettu Piemonten tryffelinmetsästäjät – ohjaajien uutuus Gaucho Gaucho sijoittuu täysin erilaiselle, mutta yhtä osuvasti ainutlaatuiselle seudulle. Argentiinan pampalla eletään hevosten kanssa ja hevosten ehdoilla. Päähenkilöksi nousee miesten maailmassa omaa tilaansa vaativa nuori Gauda, joka harjoittelee hevosten kesytystä ajan karhentamien konkareiden kanssa. Kylän koulun opettaja vaatii Gaudaa pitämään koulupukua huonolla menestyksellä. Ratsastajan asuun, nahkasäärystimiin ja reilun kokoiseen baskeriin pukeutunut Gauda vastaa: ”Olen gaucha, ja tämä on minun asuni!”.</p><p>Ansel Adamsin kamera hyväilee karua maisemaa samettisesti. Ohjaajat Michael Dweck ja Gregory Kershaw asuivat pampalla yli kaksi vuotta päästäkseen sisälle gauchojen ajattomaan elämäntapaan, joka on vaarassa kadota. Argentiinalaisen Los Gatos –bändin La Balsa –hitin helisevät kitarat ja Georges Bizet´n Helmenkalastajat soivat ääniraidalla hevosten rytmissä. Gaucho Gaucho sai Sundance festivaaleilla kunniamaininnan upeasta ääniraidastaan.</p><p>Kesto: 85 min<br>Ikäraja: S<br>Vapaa pääsy!</p>", "sv": "<p>Filmen lyfter upp tittarna på hästrygg, på en resa till argentinska gaucho-kulturen</p><p>Den länge förväntade Gaucho Gaucho, filmnyheten av regissörerna till Tryffeljägarna från Piemonte , är förlagd på en helt annan men lika unik bygd. På den argentinska pampasen lever man livet med hästar och på deras villkor. Huvudpersonen är den unga Gauda som kräver eget utrymme i männens värld. Han övar på att tämja hästar tillsammans med ruggiga veteraner. Byskoleläraren kräver att Gauda ska bära skoluniform, men med dålig framgång. Gauda, klädd i ryttardräkt, benvärmare av läder och en stor basker svarar: ”Jag är gaucha, och detta är min dräkt!”</p><p>Ansel Adams kamera smeker sammetslent det karga landskapet. Regissörerna Michael Dweck och Gregory Kershaw bodde på pampasen i mer än två år för att få en inblick i gauchornas tidlösa livsstil, som riskerar att försvinna. Det argentinska bandet Los Gatos hitlåt La Balsa med dess klingande gitarrer och Georges Bizets Pärlfiskarna spelar i takt med hästarna på ljudspåret. Gaucho Gaucho fick ett hedersomnämnande på Sundance-festivalen för sitt fantastiska ljudspår.</p><p>Längd: 85 min.<br>Åldersgräns: S<br>Fritt inträde!</p>", "en": "<p>The film takes viewers on a journey on horseback through the Argentinian Gaucho culture.</p><p>Gaucho Gaucho, the long-awaited new work by the directors of The Truffle Hunters, is set in a very different, but just as aptly unique region. On the Argentinian Pampas, life is lived together with horses and on their terms. The protagonist is the young Guada, who is trying to claim her own space in a man's world and practices horse taming with the time-weathered experts. The teacher at the village school tries to tell Guada to wear her school dress, with little success. Dressed in a rider's outfit, leather leggings and a large beret, Guada replies, \"I am a Gaucha, and this is my outfit!”</p><p>Ansel Adams’s camera work caresses the barren landscape with velvety grace. The directors, Michael Dweck and Gregory Kershaw, lived on the Pampas for more than two years to gain access to the timeless gaucho way of life, which is in danger of disappearing. The soundtrack features both the bright guitars of the hit song La Balsa by the Argentinian band Los Gatos and the sounds of the opera Les pêcheurs de perles by Georges Bizet, set to the rhythm of horses. Gaucho Gaucho received an honourable mention at the Sundance Festival for its stunning soundtrack.</p><p>Duration: 85 min<br>Age rating: G<br>Free entry!</p>" }, "short_description": { "fi": "Elokuva nostaa katsojat hevosten selkään, matkalle argentiinalaiseen gaucho-kulttuuriin.", "sv": "Filmen lyfter upp tittarna på hästrygg, på en resa till argentinska gaucho-kulturen", "en": "The film takes viewers on a journey on horseback through the Argentinian Gaucho culture." }, "location_extra_info": null, "name": { "fi": "Doc Helios: Gaucho Gaucho (S)", "sv": "Doc Helios: Gaucho Gaucho (S)", "en": "Doc Helios: Gaucho Gaucho (S)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67428/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68015", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494617, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-23T15:12:39.159881Z", "last_modified_time": "2026-01-23T15:12:39.159897Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784326.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494617/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-23T15:12:39.028759Z", "last_modified_time": "2026-03-20T01:12:56.427975Z", "date_published": null, "start_time": "2026-02-05T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4C0E0BE7527CDADFD4A8A1780F36509B/Asukasosallisuusilta", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4C0E0BE7527CDADFD4A8A1780F36509B/Asukasosallisuusilta", "en": "http://www.malmitalo.fi/en/events/event/4C0E0BE7527CDADFD4A8A1780F36509B/Community_participation_meeting" }, "provider": null, "description": { "fi": "<p>Ideoidaan ja toteutetaan tapahtumia Malmilla! Tule mukaan asukasosallisuusiltaan suunnittelemaan ohjelmaa taiteen, yhteisöllisyyden ja kulttuurien ympärille.</p><p>Tykkäätkö järjestää ohjelmaa? Oletko musikaalinen? Osaatko opettaa jotakin? Onko sinulla tanssiesitys tai runoja pöytälaatikossa? Tai jokin muu idea tai ajatus Malmitalossa järjestettäväksi ohjelmaksi?</p><p>Tule tekemään kanssamme, ja suunnittelemaan ohjelmaa lapsille, aikuisille, perheille, yksinäisille ja porukoille Malmitalossa. Haluamme toteuttaa tapahtumiamme myös yhdessä asukkaiden kanssa.</p><p>Toivotamme lämpimästi mukaan kaikenikäiset ja -taustaiset ihmiset. Paikan päällä pienimuotoinen kahvitarjoilu.</p><p>Tapahtuman järjestää Malmitalo yhteistyössä Malmin nuorisotyöyksikön kanssa.</p><p>Kesto: 2 t</p><p>Vapaa pääsy!</p>", "en": "<p>Let’s create events for Malmi together! Join us in planning events dedicated to art, togetherness, and culture!</p><p>Do you enjoy organizing events? Are you musical? Can you teach something? Do you have a dance performance or poems tucked away in a drawer? Or perhaps another idea for Malmitalo’s program?</p><p>Come help us ideate and organize events for children, adults, families, seniors, and other groups alike.</p><p>We wish to create events together with the residents and communities. We welcome people of all ages, languages, and backgrounds. If you’re interested, don’t hesitate to come, join in, and share your ideas for the program!</p><p>The resident event is organized by Malmitalo in cooperation with the Malmi Youth Work Unit.</p><p>Duration: 2 hours<br>Location: Malmitalo, Meeting room 2</p><p>Free entry!</p>" }, "short_description": { "fi": "Ideoidaan ja toteutetaan tapahtumia Malmilla! Tule mukaan asukasosallisuusiltaan suunnittelemaan ohjelmaa taiteen, yhteisöllisyyden ja kulttuurien ympärille.", "en": "Let’s create events for Malmi together! Join us in planning events dedicated to art, togetherness, and culture!" }, "location_extra_info": null, "name": { "fi": "Asukasosallisuusilta – Ideoidaan yhdessä ohjelmaa Malmitalolle", "sv": "Asukasosallisuusilta", "en": "Community participation meeting" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68015/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68051", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494704, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-03T09:13:37.867604Z", "last_modified_time": "2026-02-03T09:13:37.867621Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785236.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494704/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-03T09:13:37.563796Z", "last_modified_time": "2026-03-20T01:12:56.034237Z", "date_published": null, "start_time": "2026-02-05", "end_time": "2026-02-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B48698341CAE7B0483419102F619668B/Mieskuvia_ja_pienia_painajaisia", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B48698341CAE7B0483419102F619668B/Manliga_portratt_och_lilla_mardromma", "en": "http://www.malmitalo.fi/en/events/event/B48698341CAE7B0483419102F619668B/Male_Portraits_and_Little_Nightmares" }, "provider": null, "description": { "fi": "<p>Näyttely koostuu kahdesta kokonaisuudesta. Suurikokoiset työt ovat osa sarjaa Mieskuvia, pienemmät työt osa sarjaa Pieniä painajaisia.</p><p>Mieskuvien kohdalla katsoja voi kysyä, miksi Okko on maalannut sarjan muotokuvia keski-ikäisistä, kulahtaneen jäykistä valkoisista miehistä. Eikö tätä lajia ole jo nähty tarpeeksi? Tekijän lähtökohtana oli pandemian aikainen sosiaalisen elämän suppeus. Kun Covid-2019 viruksen etenemistä estäviä rajoituksia helpotettiin kesällä 2020, Okko kutsui oman ikäluokkansa ystäviä, työtovereita ja naapureita 60 minuutin sessioihin työhuoneelleen, yksi kerrallaan. Tunnin kuluessa puhuttiin, päivitettiin omat ja maailman asiat ja samalla syntyi yksivärinen luonnos suureen kasvokuvaan. Mallista otetut kännykkäkuvat toimivat jatkotyöskentelyn lisämateriaalina, mutta osa alkuperäisistä virheistä löytyy yhä. Työt eivät ensisijaisesti ole muotokuvia, enemmän esitys moninaisuudesta samankaltaisuudessa. Lopputulos on sarja julistemaisia ja pelkistettyjä naamakuvia, lähes tyhjiä merkkejä. <br> <br>Teossarja sai jatkoa kesästä 2021 alkaen. Pääosin samat miehet vierailivat ateljeessa, nyt 90 minuuttia kerrallaan. Okko luonnosteli kokovartalokuvan sekä ateljeehen tapaamista varten viriteltyjä kankaita, kukkia ja juomia. Teoksien jatkamista varten taaskin otettiin useampia kännykkäkuvia. Kasvokuvien melko yhtenäinen käsittelytapa sai väistyä eklektisen ja vaihtelevamman esittämistavan tieltä. Maalauksista voi löytää ekspressiivisen abstrakteja maalauseleitä, väripintoja, tarkkaa piirustusta sekä muotoa rakentavaa maalausta. Osa yksityiskohdista viittaa muotokuvataiteen historiaan, mutta ei suoraan kopioiden. Maalausprosessin aikana miljöö on muuttuva ja aktiivinen, henkilö paikallaan oleva ja passiivinen. Henkilöiden ilmeet ovat keskittyneitä, koska poseeraaminen on vakava asia. Tässä ei naureta. Ympäristöön putkahtelee roskapusseja, lisää kukkia ym. Maailman muuttuminen on kestettävä.</p><p>Okko on pitkään pohtinut, miten tulee tai voisi olla mies sosiaalisena sukupuolena. Millainen on hyvä mies ja miksi osalla miehistä on vahva taipumus väkivaltaan ja valtapeleihin. Miten tästä seuraava kilpailu määrittää kaikkia (miehiä). Mutta entäpä vanheneminen, kuolema ja luopuminen. Ns. hegemoninen maskuliinisuus, ymmärrettynä yhtenä miehisyyden mallina on aikaa sitten murtunut – ja hyvä niin. Yksilölliset valinnat ovat se, mitä jää. Ja hämmennys: ”Eikö tästä tämän selkeämpää tullut?”. <br> <br>Pienten painajaisten lähtökohtana on digitaalinen, mustavalkoinen valokuvakollaasi. Materiaalina kollaaseille on käytetty taiteilijan itse ottamia valokuvia, skannattuja lehtikuvia ja internetistä kopioituja kuvia. Maalaukset ovat eräänlaisia tarjouskimppuja, sekalaisesta materiaalista koottuja kasaumia. Kuvat voi nähdä kommenttina aikaan. Maalauksissa on hyödynnetty erilaisia esittämisen tapoja ja niiden rinnastaminen yhdessä työssä synnyttää melua ja eriaikaisuutta. Osa elementeistä on, osa on tulossa, osa jo mennyt. Niin kuin eletty todellisuus.</p><p>Lämpimästi tervetuloa näyttelyn avajaisiin keskiviikkona 4.2. klo 17 alkaen. Tarjolla pientä purtavaa ja virvoketta.</p>", "sv": "<p>Utställningen av Juha Okko (f. 1963) består av två delar. De stora verken är serien Manliga porträtt, skapad 2020–23, och de mindre verken är Små mardrömmar, målade 2025–24.</p><p>När det gäller Manliga porträtt kan betraktaren fråga sig varför Okko har målat en serie porträtt av medelålders, stela och slitna vita män. Har inte denna genre setts tillräckligt ofta? Konstnärens utgångspunkt var det begränsade sociala livet under pandemin. När restriktionerna som förhindrade spridningen av Covid-2019-viruset lättades sommaren 2020, bjöd Okko in vänner, kollegor och grannar i sin egen åldersgrupp till 60-minuterssessioner i sin studio, en i taget. Under timmen pratade dom, uppdaterade ens egna och världsliga angelägenheter och skapade samtidigt en monokrom skiss för ett stort ansiktsporträtt. Mobiltelefonfotona som tagits av modellen fungerar som ytterligare material för vidare arbete, men några av de ursprungliga misstagen kan fortfarande hittas. Verken är inte primärt porträtt, utan mer en representation av mångfald i likhet. Slutresultatet är en serie affischliknande och förenklade ansiktsporträtt, nästan tomma emblem.</p><p>Serien fortsatte från sommaren 2021. Huvudsakligen samma män besökte ateljén, nu 90 minuter åt gången. Okko skissade ett helkroppsporträtt och tyger, blommor och drycker arrangerades för mötet i ateljén. Flera mobiltelefonfoton togs igen för att fortsätta verken. Det ganska enhetliga sättet att hantera ansiktsbilder gav vika för ett eklektiskt och mer varierat presentationssätt. Målningarna har expressiva abstrakta målerigester, färgytor, precis teckning och formbyggande måleri. Vissa detaljer hänvisar till porträttkonstens historia, men kopierar dem inte direkt. Under målningsprocessen förändras miljön och är aktiv, personen är stillastående och passiv. Människornas ansiktsuttryck är fokuserade, eftersom posering är en allvarlig sak. Det finns inget att skratta åt här. Sopsäckar kastas i miljön, fler blommor, etc. Världen måste uthärdas medan den förändras. <br> <br>Okko har länge funderat över hur en man blir eller kan vara som ett socialt kön. Hur är en god man och varför vissa män har en stark tendens till våld och maktspel. Hur definierar den konkurrens som följer alla (män). Men hur är det med åldrande, död och övergivande? Så kallad hegemonisk maskulinitet, förstådd som en enda modell för manlighet, har sedan länge brutit samman – och det är okej. Individuella val är det som återstår. Och förvirringen: \"Blev inte detta tydligare än så här?\" <br> <br>Utgångspunkten för Lilla mardrömmar är ett digitalt, svartvitt fotokollage. Kollagen består av fotografier tagna av konstnären, skannade tidningsbilder och bilder kopierade från internet. Målningarna är ett slags reabuketter, samlingar av diverse material. Bilderna kan ses som en kommentar till tiden. Målningarna använder olika sätt att representera och att ställa dem mot varandra i ett verk skapar brus och en annan temporalitet. Vissa element finns där, vissa kommer, vissa har redan passerat. Precis som den levda verkligheten.</p>", "en": "<p>The exhibition by Juha Okko (b. 1963) consists of two entities. The large works are the series Male Portraits, created in 2020–23, and the smaller works are the Little Nightmares, painted in 2025–24.</p><p>In the case of Male Portraits, the viewer may ask why Okko has painted a series of portraits of middle-aged, stiff, and worn-out white men. Hasn't this genre been seen enough? The artist's starting point was the narrowness of social life during the pandemic. When restrictions preventing the spread of the Covid-2019 virus were eased in the summer of 2020, Okko invited <br> <br>friends, colleagues, and neighbors of his own age group to 60-minute sessions in his studio, one at a time. During the hour, they talked, updated each other’s own and worldly affairs, and at the same time Okko created a monochrome sketch for a large face portrait. The cell phone photos taken of the model serve as additional material for further work, but some of the original mistakes can still be found. The works are not primarily portraits, more like a representation of diversity in similarity. The result is a series of poster-like and simplified face portraits, almost empty signs. <br> <br>The series continued from summer 2021. Mainly the same men visited the studio, now for 90 minutes at a time. Okko sketched a full-body portrait and fabrics, flowers and drinks arranged for the meeting in the studio. Several photos were taken again to continue the work. The rather uniform way of handling facial images gave way to an eclectic and more varied way of presentation. The paintings feature expressive abstract painting gestures, color surfaces, precise drawing and form building painting. Some of the details refer to the history of portrait art, but not directly. During the painting process, the environment is changing and active; the person is stationary and passive. The expressions of the people are focused, because posing is a serious matter. There is no laughing matter here. Garbage bags are thrown into the environment, more flowers, etc. The world must be endured as it changes. <br> <br>Okko has long pondered how a man becomes or could be as a social gender. What is a good man like and why some men have a strong tendency towards violence and power games. How does the competition that follows define all (men). But what about aging, death and renunciation? So-called hegemonic masculinity, understood as a single model of manhood, has long since broken down – and that's okay. Individual choices are what remains. And the confusion: \"Didn't this get clearer than this?\" <br> <br>The starting point for Little Nightmares is a digital, black-and-white photo collage. The collages are made up of photographs taken by the artist, scanned newspaper images, and images copied from the internet. The paintings are a kind of offer bouquets, accumulations of miscellaneous material. The images can be seen as a comment on time. The paintings utilize different ways of presentation and juxtaposing them in one work creates noise and a different temporality. Some of the elements are, some are coming, some have already passed. Just like a lived reality.</p><p>We warmly welcome you to the exhibition’s opening at Malmitalo’s gallery on Wednesday, 4th of February, starting from 17.</p><p>Free entry!</p>" }, "short_description": { "fi": "Näyttely koostuu kahdesta kokonaisuudesta. Suurikokoiset työt ovat osa sarjaa Mieskuvia, pienemmät työt osa sarjaa Pieniä painajaisia.", "sv": "Utställningen av Juha Okko (f. 1963) består av två delar. De stora verken är serien Manliga porträtt, skapad 2020–23, och de mindre verken är Små mardrömmar, målade 2025–24.", "en": "The exhibition by Juha Okko (b. 1963) consists of two entities. The large works are the series Male Portraits, created in 2020–23, and the smaller works are the Little Nightmares, painted in 2025–24." }, "location_extra_info": null, "name": { "fi": "Mieskuvia ja pieniä painajaisia – Juha Okko", "sv": "Manliga porträtt och lilla mardrömma – Juha Okko", "en": "Male Portraits and Little Nightmares – Juha Okko" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68051/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67980", "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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T08:13:42.166184Z", "last_modified_time": "2026-01-15T08:13:42.166199Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780410.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T08:13:41.997881Z", "last_modified_time": "2026-03-20T01:12:55.486572Z", "date_published": null, "start_time": "2026-02-04T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CBE1FE6B78092C106458128A90251D6C/Claudia_has_bad_dreams_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CBE1FE6B78092C106458128A90251D6C/Claudia_has_bad_dreams_12_", "en": "http://www.vuotalo.fi/en/events/event/CBE1FE6B78092C106458128A90251D6C/Claudia_has_bad_dreams_12_" }, "provider": null, "description": { "fi": "<p>Kolmekymppiset siskokset Claudia ja Eleonora lähtevät Sisilian vuoristoon patikoimaan ja muistelemaan menneitä. Näytöksen jälkeen Camilla Roos haastattelee elokuvan tekijät Eleonora Sardo ja Marco Zenoni.</p><p>Perhearkistosta kaivetut piirustukset ja kotivideot maalaavat kuvan erottamattomista sisaruksista. Nykyhetkessä käy selväksi, että sittemmin he ovat ajautuneet erilleen. Jännitteiset perhedynamiikat ovat läsnä joka hetkessä, ja tuon tuosta puhkeaa ilmiriita. Moni erimielisyys liittyy Claudian haluttomuuteen hankkia apua crack-riippuvuuteensa.</p><p>Humaani kuvaus huumekoukusta välttää turhaa moralisointia, eksotisointia ja sensaationhakuisuutta. Kerronta on kiinni arjen realiteeteissa ja yrityksessä ymmärtää toista. Kuvankauniit maisemat jäävät taka-alalle, kun siskosten tunnepurkauksia kuvataan ihon etäisyydeltä. Sarja armottomia riitoja ja herkkiä sovinnon hetkiä paljastaa, ettei sisaruuden side ole koskaan rikkoutunut, vaikka rakkaus sen puitteissa tekeekin kipeää.</p><p>Eleonora Sardon siskostaan tekemä elokuva on riipaisevan intiimi kuvaus sisaruudesta, addiktiosta ja emotionaalisesta etäisyydestä. <br>Paljon olennaista kiteytyy teoksen koskettavimpaan kuvaan Claudian pikkulapsena kirjoittamasta kirjeestä: “Rakkaat äiti ja isä, en enää tiedä missä olen. Auttakaa minua.” Pettymysten ja turhautumisten läpi Eleonora näkee pienen, eksyneen ihmisen, jota pahat unet pitävät hereillä.</p><p>Teksti: Aatos Ketvel</p><p>Kieli: italia<br>Tekstitys: englanti<br>Kesto: 68 min<br>Ikäraja: K12</p><p>Näytökseen on vapaa pääsy!</p><p>Vuosi: 2025<br>Tuotantomaa: Italia<br>Ohjaaja: Eleonora Sardo, Marco Zenoni<br>Tuottaja: Eleonora Sardo, Marco Zenoni, Alessandro Colizzi<br>Tuotantoyhtiö: B-roll Production, Laboratorio d’Arte Cinematografica<br>Käsikirjoitus: Eleonora Sardo<br>Leikkaus: Marco Zenoni<br>Kuvaaja: Federico Ziliotto</p><p>DocPoint – Helsingin dokumenttielokuvafestivaali 3.–8.2.2026<br>Tutustu DocPoint-ohjelmistoon: https://docpoint.fi/</p>", "en": "<p>Claudia and Eleonora, two sisters in their thirties, head to the mountains of Sicily to do some hiking and reflect on their shared past. After the screening Camilla Roos will interview documentary directors Eleonora Sardo and Marco Zenoni.</p><p>Old drawings and home videos portray them as inseparable siblings who, in the present, have drifted apart. Tensions within the family dynamics are present at every moment, many of them related to Claudia’s unwillingness to seek help for her crack addiction.</p><p>The humane description of drug addiction avoids unnecessary moralisation, exotification, or sensationalism. The narration stays close to everyday reality and emphasises the need to understand the other. The picturesque landscape takes a secondary role, as overwhelming emotions unfold between the sisters and are observed at close range. A series of ruthless discussions and fragile moments of forgiveness show that the bond of sisterhood has never been broken, even though the love can be painful at times.<br> <br>Eleanora Sardo’s film about her sister is a strikingly intimate portrayal of sisterhood, addiction, and emotional distance. Something deeply essential is captured in a letter written by Claudia when she was still a child: “Dear Mom and Dad, I don’t know where I am anymore. Help me.” Through all her frustration and disappointment, Eleanora can still see the small, lost person in Claudia who is kept awake by nightmares.</p><p>Aatos Ketvel (translated by Nina Molberg)</p><p>Language: Italian<br>Subtitles: English<br>Duration:68 min<br>Age Rating: K12<br>Year: 2025<br>Country: Italy</p><p>Free entry!</p><p>Director: Eleonora Sardo, Marco Zenoni<br>Producer: Eleonora Sardo, Marco Zenoni, Alessandro Colizzi<br>Production Company: B-roll Production, Laboratorio d’Arte Cinematografica<br>Screenplay: Eleonora Sardo<br>Editor: Marco Zenoni<br>Cinematography: Federico Ziliotto</p>" }, "short_description": { "fi": "Kolmekymppiset siskokset Claudia ja Eleonora lähtevät Sisilian vuoristoon patikoimaan ja muistelemaan menneitä. Näytöksen jälkeen Camilla Roos haastattelee elokuvan tekijät Eleonora Sardo ja Marco Zenoni.", "en": "Claudia and Eleonora, two sisters in their thirties, head to the mountains of Sicily to do some hiking and reflect on their shared past. After the screening Camilla Roos will interview documentary directors Eleonora Sardo and Marco Zenoni." }, "location_extra_info": null, "name": { "fi": "Claudia has bad dreams (12) – DocPoint 2026", "sv": "Claudia has bad dreams (12) – DocPoint 2026", "en": "Claudia has bad dreams (12) – DocPoint 2026" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67980/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67765", "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: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/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494153, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-09T09:13:02.267639Z", "last_modified_time": "2025-12-09T09:13:02.267653Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778314.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494153/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-09T09:13:02.149451Z", "last_modified_time": "2026-03-20T01:12:55.307333Z", "date_published": null, "start_time": "2026-02-04T14:00:00Z", "end_time": "2026-02-04T16: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A31C3CB963BA94B4C2534C62EA8C83A5/Luova_hetki_-_avoin_taidepaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A31C3CB963BA94B4C2534C62EA8C83A5/Kreativ_stund_oppen_konstworkshop", "en": "http://www.vuotalo.fi/en/events/event/A31C3CB963BA94B4C2534C62EA8C83A5/Creative_Moment_Open_Art_Workshop" }, "provider": null, "description": { "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Tällä kertaa rei’itämme paperia ja saamme aikaan kauniita pitsimäisiä kuvioita. Rauhallista ja koukuttavaa puuhaa iltapäivään! Alle kouluikäisille aikuisten kanssa.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille.</p><p>Työpajoja ohjaa Chloé Mahy-Hulkko.</p><p>Kevään ohjelma<br>ke 4.2. klo 16–18 Paperipitsiä<br>ke 4.3. klo 16–18 Muovipussit uuteen käyttöön<br>ke 1.4. klo 16–18 Sikin sokin<br>ke 6.5. klo 16–18 Kangaskassille uusi ilme<br>Kielet: suomi, englanti, ranska<br>Kesto: 2 tuntia</p><p>Työpajoihin on vapaa pääsy!</p>", "sv": "<p>Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.</p><p>Vi ordnar konstverkstäder med olika teman i Nordhusets aula. Konstverkstäderna är lämpliga för både barn och vuxna.</p><p>Den här gången stansar vi hål i papper för att skapa vackra spetsliknande mönster. En lugn och medryckande eftermiddagsaktivitet! För barn under skolåldern i sällskap med vuxna.</p><p>Vi ordnar konstverkstäder med olika teman i Nordhusets aula. Konstverkstäderna är lämpliga för både barn och vuxna.</p><p>Vårens program<br>ons 4.2 kl. 16–18 Pappersspets<br>ons 4.3 kl. 16–18 Återanvänd plastpåsar!<br>ons 1.4. kl. 16–18 Huller om buller<br>ons 6.5 kl. 16–18 Gör om en tygpåse</p><p>Chloé Mahy-Hulkko leder verkstäderna</p><p>Språk: finska, engelska, franska</p><p>Konstverkstäderna är kostnadsfria!</p>", "en": "<p>Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship.</p><p>We will hold art workshops with varying themes in the Vuotalo lobby. The art workshops are suitable for children and adults alike.</p><p>This time, we will punch holes into paper to create beautiful lace-like patterns. A peaceful and addictive afternoon activity! Children under school age can attend with an adult.¨</p><p>We will hold art workshops with varying themes in the Vuotalo lobby. The art workshops are suitable for children and adults alike. The workshops are led by Chloé Mahy-Hulkko.</p><p>Spring programme<br>Wed 4 February 16.00–18.00: Paper lace<br>Wed 4 March 16.00–18.00: New use for plastic bags!<br>Wed 1 April 16.00–18.00: Helter-skelter<br>Wed 6 May 16.00–18.00: New look for a fabric bag</p><p>The art workshops are free of charge!</p><p>Language: Finnish, English, French</p>" }, "short_description": { "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.", "sv": "Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.", "en": "Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship." }, "location_extra_info": null, "name": { "fi": "Luova hetki - avoin taidepaja – Paperipitsiä", "sv": "Kreativ stund – öppen konstworkshop – Pappersspets", "en": "Creative Moment – Open Art Workshop – Paper lace" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67765/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67991", "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/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494578, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T09:12:48.227222Z", "last_modified_time": "2026-01-21T09:12:48.227238Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784258.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494578/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T09:12:48.066923Z", "last_modified_time": "2026-03-20T01:12:55.010462Z", "date_published": null, "start_time": "2026-02-04T09:30:00Z", "end_time": "2026-02-04T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/19D938C161DA5DD27F05EC3D62B24A0B/DOKKINO-ylakoulunaytos", "sv": "http://www.vuotalo.fi/sv/evenemang/event/19D938C161DA5DD27F05EC3D62B24A0B/DOKKINO-ylakoulunaytos", "en": "http://www.vuotalo.fi/en/events/event/19D938C161DA5DD27F05EC3D62B24A0B/DOKKINO-ylakoulunaytos" }, "provider": null, "description": { "fi": "<p>Tervetuloa Vuotaloon oppimaan uutta dokumenttielokuvien kautta.</p><p>Nähtävät viisi lyhyttä dokumenttielokuvaa on tarkoin valittu yläkoululaisille. Näytöksessä esitetään kaikki elokuvat peräkkäin, ja elokuvat on tekstitetty suomeksi ja ruotsiksi. Näytös kestää yhteensä 67 minuuttia. Dokkino-tapahtuma on osa Docpoint - Helsingin dokumenttielokuvafestivaalia DocPoint</p><p>Oasis</p><p>ohj. Justine Martin</p><p>Kanada, 2022, 14 min</p><p>Teemat: sisaruussuhde, kasvu, identiteetti, vammaisuus, toisen kohtaaminen</p><p>Teini-iän kynnyksellä kaksoset Raphaël ja Rémi näkevät tiiviin kiintymyksensä murenevan, kun toinen heistä, yhä selvemmin etenevästä vammasta kärsivä, jää lapsuuden vangiksi. Viimeisenä kesänä luonnon ympäröimänä aika tuntuu pysähtyvän.</p><p>Everyman</p><p>ohj. Jack Goessens<br>Skotlanti, 2021, 11 min<br>Teemat: sukupuoli-identiteetti, transsukupuolisuus, sukupuoliroolit ja sukupuolinormit, itsensä hyväksyminen, ennakkoluulot<br>Everyman on henkilökohtainen, visuaalinen essee sukupuolen korjausprosessista keskittyen sosiaaliseen kontekstiin ja vaikutuksiin sekä tutkien, kuinka maailma on erilainen naisena eläessä verrattuna mieheksi koettuun elämään. Jack kertoo tarinansa hyödyntäen ja uudelleen muotoillen sukupuoleen keskittyneitä ilmiöitä ja kuvastoa populaarikulttuurista, mytologiasta, historiasta ja taiteesta.</p><p>Belfie Girl</p><p>ohj. Catarina Diehl</p><p>Suomi, 2023, 7 min</p><p>Siiri, 14 v., vihaa ulkonäköään. Hän jumppaa peppuaan ja paisuttaa huuliaan saavuttaakseen<br>ihanneulkonäön. Hän näpistelee ystäviensä kanssa meikkejä voidakseen tehdä itsestään<br>kauniimman. Kuitenkin peilistä katsoo yhä tyttö, joka ei saa tarvitsemaansa huomiota. Näpistelystä kiinni jääminen olisi ehkä keino tulla nähdyksi.</p><p>Being Someone Else</p><p>ohj.Øyvind Aamli</p><p>Britannia/Norja, 2020, 9 min</p><p>Tässä intiimissä muotokuvassa seuraamme 13-vuotiaan Imogenin valmistautumista vuoden suurimpaan tapahtumaan – Comic Con -cosplay-messuille. Valittuaan anime-hahmon, joksi hän haluaa pukeutua, hän alkaa huolellisesti valmistaa pukuaan. Seuraamme, kuinka tämä matka laukaisee dramaattisia tapahtumia ja paljastaa hitaasti hänen koulusta potkut saaneen haavan. Kun hahmon osat alkavat muodostua pukua ommellessa, meikkiä, piilolinssejä ja peruukkeja kokeillessa, Imogen kertoo, kuinka fiktiivisen hahmon esittäminen auttaa häntä selviytymään eristyneisyydestä, ystävien näkemisen puutteesta ja autistisena ulkopuolisena olemisesta.</p><p>Että tuntisin eläväni</p><p>ohj. Milja Härkönen</p><p>Suomi, 2019, 26 min</p><p>Teemat: yhteisöllisyys, unelmat, ystävyys, hyvinvointi, tulevaisuus<br>Neljä parikymppistä ystävystä keskustelee elämän suurista kysymyksistä Teatterikorkeakoulun pääsykokeiden lähestyessä. Dokumenttielokuva Että tuntisin eläväni on elokuva ystävyyden merkityksestä elämän muuttuvissa tilanteissa.</p><p>Ilmoittautumislinkki:</p><p>https://kultus.hel.fi/fi/event/kultus:agn3wuik74?text=malmitalo&returnPath=%2Fsearch</p>" }, "short_description": { "fi": "Tervetuloa Vuotaloon oppimaan uutta dokumenttielokuvien kautta." }, "location_extra_info": null, "name": { "fi": "DOKKINO-yläkoulunäytös", "sv": "DOKKINO-yläkoulunäytös", "en": "DOKKINO-yläkoulunäytös" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67991/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67871", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494505, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T12:13:24.450130Z", "last_modified_time": "2026-01-16T12:13:24.450148Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780523.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494505/?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:24.309169Z", "last_modified_time": "2026-03-20T01:12:54.823598Z", "date_published": null, "start_time": "2026-02-04T08:00:00Z", "end_time": "2026-02-04T10: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6BFA982CDBB40EF86B83CF0C7ED7D0AE/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/6BFA982CDBB40EF86B83CF0C7ED7D0AE/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/6BFA982CDBB40EF86B83CF0C7ED7D0AE/Art_games_a_space_for_play" }, "provider": null, "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. <br>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.</p><p>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>" }, "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!" }, "location_extra_info": null, "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, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67871/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67990", "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/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494575, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T08:13:36.396370Z", "last_modified_time": "2026-01-21T08:13:36.396386Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774888.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494575/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T08:13:36.238514Z", "last_modified_time": "2026-03-20T01:12:54.666057Z", "date_published": null, "start_time": "2026-02-04T07:30:00Z", "end_time": "2026-02-04T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5191A00AD3AFB56471F076303C3517E2/DOKKINO-alakoulunaytos", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5191A00AD3AFB56471F076303C3517E2/DOKKINO-alakoulunaytos", "en": "http://www.vuotalo.fi/en/events/event/5191A00AD3AFB56471F076303C3517E2/DOKKINO-alakoulunaytos" }, "provider": null, "description": { "fi": "<p>Tervetuloa Vuotaloon oppimaan uutta dokumenttielokuvien kautta.</p><p>Nähtävät kolme lyhyttä dokumenttielokuvaa on tarkoin valittu alakoululaisille. Näytöksessä esitetään kaikki elokuvat peräkkäin, ja elokuvat on tekstitetty suomeksi ja ruotsiksi. Näytös kestää yhteensä 50 minuuttia. Dokkino-tapahtuma on osa Docpoint - Helsingin dokumenttielokuvafestivaalia DocPoint</p><p>Yaren ja aurinko (Yaren and the Sun)</p><p>ohj. Renate Raman & Yoren Slaets</p><p>Belgia, 2021, 19 min</p><p>Teemat: läheisen kuolema, surutyö, tunteiden käsittely, yhteisöllisyys, lasten leiri, ystävyys</p><p>\"Yaren and the Sun\" on lyhytdokumentti surusta, parantumisesta ja ystävyydestä. Kymmenvuotias Yaren menetti äitinsä neljä vuotta sitten. Tänä kesänä hän lähtee hermostuneena erityislaatuiselle leirille: suruleirille. Siellä kaikki lapset ovat menettäneet jonkun läheisensä. Viiden kauniin ja intensiivisen päivän aikana Yaren sekä muut leirin lapset solmivat siteen yhden heitä kaikkia yhdistävän asian ympärille: heidän surunsa.</p><p>Perhosia vatsassa (Fien, Jip en Fien)</p><p>ohj. Marie de Hert & Ellen Pollard</p><p>Belgia, 2021, 15 min</p><p>Teemat: ihastuminen, läheisyys, sisaruussuhteet, mediankäyttö</p><p>Jip, 12-vuotias, on rakastunut ensimmäistä kertaa. Hänen pikkusiskonsa Fien, 10-vuotias, haluaa tietää kaiken hänen ensimmäisestä ihastuksestaan. Hän on utelias, mutta myös hieman mustasukkainen. Muuttaako tämä heidän erottamattoman siteensä? Ja eikö olekin hassua, että Jipin tyttöystävän nimi on myös Fien?</p><p>Merihevonen (Seahorse)</p><p>ohj. Nele Dehnenkamp</p><p>Saksa, Gabon, 2020, 16 min</p><p>Teemat: pakolaisuus, selviytyminen, ihmisoikeudet, uimataito, traumat, pelot</p><p>Uimakurssin arkipäiväisessä ympäristössä nuori jesidinainen kamppailee hiljaa Välimereen liittyvien pelottavien muistojensa kanssa.</p><p>Ilmoittautumislinkki:</p><p>https://kultus.hel.fi/fi/event/kultus:agn3pyo4be?text=Dokkino&returnPath=%2Fsearch</p>" }, "short_description": { "fi": "Tervetuloa Vuotaloon oppimaan uutta dokumenttielokuvien kautta." }, "location_extra_info": null, "name": { "fi": "DOKKINO-alakoulunäytös", "sv": "DOKKINO-alakoulunäytös", "en": "DOKKINO-alakoulunäytös" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67990/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67927", "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: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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494401, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T10:12:53.226816Z", "last_modified_time": "2026-01-08T10:12:53.226832Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783532.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494401/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T10:12:53.110680Z", "last_modified_time": "2026-03-20T01:12:54.469120Z", "date_published": null, "start_time": "2026-02-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F882BB5F365C8EB4BE769E01C2025435/Kino_Caisa_Kaikkein_heikoimmille", "sv": "http://www.caisa.fi/sv/evenemang/event/F882BB5F365C8EB4BE769E01C2025435/Kino_Caisa_Kaikkein_heikoimmille", "en": "http://www.caisa.fi/en/events/event/F882BB5F365C8EB4BE769E01C2025435/Kino_Caisa_Kaikkein_heikoimmille" }, "provider": null, "description": { "fi": "<p>Mitä elämiseen tarvitaan?</p><p>Henkilökuva-dokumentti kertoo varjoteatteri- ja yhteisötaiteilija Elviira Davidowista, joka on pitkään työskennellyt eriarvoisuuden vähentämisen ja rasismin ehkäisemisen puolesta. <br>Hän on yhteisötaiteen keinoin pyrkinyt antamaan Itä-Euroopan romaneille vaihtoehtoisia tapoja elättää itsensä, jotta heidän ei tarvitsisi kerjätä.</p><p>Pelkällä hyvällä tahdolla ei voi muuttaa maailmaa, tarvitaan myös tekoja. Elokuva seuraa Davidowia ja avaa näkymiä siihen, miten taiteella voi muuttaa maailmaa. Davidowin sanoin: ”Tärkeintä kuitenkin on rikkoa ennakkoluuloja romaniyhteisöistä ja antaa tietoa, jonka kautta ihmiset voivat luoda omat, vähemmän värittyneet mielikuvat yhteisön tilanteesta.” Toisen tarinan kuunteleminen on ensimmäinen askel toimintaan, koska elämiseen tarvitaan vähän enemmän kuin pelkkä tahto.</p><p>Kaikkein heikoimmille on pieni elokuva isolla sydämellä ❤️.</p><p>Dokumentissa on englanninkielinen tekstitys suomen ja romaninkielisen äänen lisäksi.</p><p>Ensi-illassa 3.2. dokumentin tekijät Anu Lehtonen ja Janica Grönqvist kertovat elokuvan taustoista. Tilaisuudessa esiintyy Elviira Davidow yhdessä muusikoiden Murat Ermutlu ja Meri-Sofia Lakos kanssa. Lisäksi Diakonissalaitoksen ja Yhteiset Lapsemme ry:n edustajat kertovat ajankohtaisista vaikuttamismahdollisuuksista.</p><p>Varmista paikkasi ensi-illassa ilmoittautumalla etukäteen sähköpostitse: caisa.tiedotus@hel.fi</p><p>Elokuva on nähtävissä myös ti 24.2. klo 17, klo 17:30, klo 18 ja klo 18:30. Nämäkin näytökset ovat maksuttomia, niihin ei ole ennakkoilmoittautumista.</p>", "sv": "<p>Vad behöver man för att leva?</p><p>Denna dokumentär i form av ett personporträtt berättar om skuggteater- och samhällskonstnären Elviira Davidow, som länge har arbetat mot ojämlikhet och rasism. Genom samhällskonsten har hon försökt ge romerna alternativa sätt att försörja sig, så att de inte behöver tigga.</p><p>Man kan inte förändra världen bara genom god vilja, det behövs också handlingar. Filmen följer Davidow och öppnar upp perspektiv på hur man kan förändra världen genom konsten. Med Davidows ord: ”Det viktigaste är ändå att krossa fördomar om romerna och ge information så att människor kan skapa sig egna, mindre vinklade uppfattningar om gruppens situation.” Att lyssna på en annans berättelse är det första steget mot agerande, för man behöver lite mer för att leva än bara vilja.</p><p>Kaikkein heikoimmille är en liten film med stort hjärta ❤️.</p><p>Dokumentären har textning på engelska, utöver talet på finska och romani.</p><p>Vid premiären den 3 februari 2026 medverkar filmskaparna för att berätta om filmens bakgrund. På plats finns också Elviira Davidow, romska musiker samt en representant för en organisation som berättar om vilka möjligheter att påverka som finns just nu.</p><p>Säkra din plats på premiären 3.2 kl. 18 genom att anmäla dig i förväg per e-post: caisa.tiedotus@hel.fi</p><p>Filmen visas också tisdagen den 24 februari kl. 17, 17.30, 18 och 18.30. Även dessa visningar har fritt inträde, men ingen förhandsanmälan behövs.</p>", "en": "<p>What does it take to live?</p><p>This documentary is about shadow theatre and community artist Elviira Davidow, who has been working to reduce inequality and prevent racism for a long time. Through community art, she has sought to give Roma people alternative ways of supporting themselves so that they do not have to beg.</p><p>Goodwill alone cannot change the world – actions are needed as well. The film follows Davidow and opens a window into how art can change the world. In Davidow’s words: “The most important thing is to break down prejudices about Roma communities and provide information that allows people to create their own, less prejudices notions of the situation of the community.” Listening to someone else’s story is the first step towards action, as living takes a little more than just a will to live.</p><p>Kaikkein heikoimmille (‘For the Most Vulnerable’) is a small film with a big heart ❤️.</p><p>The documentary has English subtitles in addition to Finnish and Romanian audio.</p><p>At the premiere on 3 February 2026, the makers of the documentary will talk about the background of the film. The event will also be attended by Elviira Davidow, Roma musicians and an organisation representative who will talk about current opportunities to influence matters.</p><p>Secure your seat at the premiere on 3 February at 18.00 by registering in advance by email: caisa.tiedotus@hel.fi</p><p>The film will also be screened on Tuesday 24 February at 17.00, 17.30, 18.00 and 18.30. These screenings are also free of charge, but there is no advance registration required for them.</p>" }, "short_description": { "fi": "Mitä elämiseen tarvitaan?", "sv": "Vad behöver man för att leva?", "en": "What does it take to live?" }, "location_extra_info": null, "name": { "fi": "Kino Caisa: Kaikkein heikoimmille – Ensi-ilta", "sv": "Kino Caisa: Kaikkein heikoimmille – Premiär", "en": "Kino Caisa: Kaikkein heikoimmille – Premiere" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67927/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67466", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494006, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:05.493425Z", "last_modified_time": "2025-12-03T08:13:05.493440Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781430.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494006/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:05.386455Z", "last_modified_time": "2026-03-20T01:12:54.251519Z", "date_published": null, "start_time": "2026-02-03T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A5CF351D35F61480B2A667F264F2CF71/Yhteislaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A5CF351D35F61480B2A667F264F2CF71/Allsang", "en": "http://www.malmitalo.fi/en/events/event/A5CF351D35F61480B2A667F264F2CF71/Singalongs" }, "provider": null, "description": { "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>", "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>", "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>" }, "short_description": { "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!", "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!", "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!" }, "location_extra_info": null, "name": { "fi": "Yhteislaulut", "sv": "Allsång", "en": "Singalongs" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67466/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67450", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494891, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-18T10:13:14.799924Z", "last_modified_time": "2026-02-18T10:13:14.799942Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781394.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494891/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T10:13:14.685487Z", "last_modified_time": "2026-03-20T01:12:54.120434Z", "date_published": null, "start_time": "2026-02-03T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00B1DDE8C0B430C2461D92222C231F4B/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00B1DDE8C0B430C2461D92222C231F4B/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla", "en": "http://www.kanneltalo.fi/en/events/event/00B1DDE8C0B430C2461D92222C231F4B/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla" }, "provider": null, "description": { "fi": "<p>Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia.</p><p>Tule mukaan seuraamaan Eliökuntalaisten manifestin julkistuskiertueen lähtöohjelmaa Mätäjoen Mutterilaiturille! Mutterilaituri sijaitsee noin 10 minuutin kävelymatkan päässä Kanneltalosta, osoitteessa Polkkakuja.</p><p><b>3.3.klo 10 Mätäjoen Mutterilaituri</b><br>Tervetulosanat, liito-oravat Papana ja Norkko <br>Eliökuntalaisten manifesti, kirjailija <b>Anni Kytömäki</b> <br>Apulaispormestari <b>Paavo Arhinmäen</b> tervehdys.</p><p>Lisäksi paikalla on Seikkailutaidekoulun työpaja, jossa tehdään postikortteja eliökuntalaisille. <br> <br>Manifesti jatkaa matkaansa apulaispormestari Arhinmäen mukana Malmille bussilla 553.</p><p><b>Eliökuntalaisten manifesti</b><br><u><a href=\"https://tapahtumat.hel.fi/fi/articles/kulttuuri-ja-taide/eliokuntalaisten-manifesti-kulkee-halki-helsingin-maailman-luontopaivana-3-3-luvassa-maksuttomia-tapahtumia-kaikenikaisille\">Lue lisää Eliökuntalaisten manifestista ja katso koko tapahtumapäivän ohjelma</a></u></p>" }, "short_description": { "fi": "Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia." }, "location_extra_info": null, "name": { "fi": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla", "sv": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla", "en": "Eliökuntalaisten manifesti Mätäjoen Mutterilaiturilla" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67450/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67276", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494058, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:48.476823Z", "last_modified_time": "2025-12-04T12:12:48.476839Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780811.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494058/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:48.390407Z", "last_modified_time": "2026-03-20T01:12:54.002158Z", "date_published": null, "start_time": "2026-02-02T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9D393E589AFD4548FA0862DF802347EA/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9D393E589AFD4548FA0862DF802347EA/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/9D393E589AFD4548FA0862DF802347EA/Let_us_sing_" }, "provider": null, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko Mari Kätkä.</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.</p><p>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Kesto: 1 h</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p><p>Längd: 1 h</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p><p>Duration: 1 h</p>" }, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "location_extra_info": null, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67276/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68041", "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:354/?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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494665, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T14:13:55.706100Z", "last_modified_time": "2026-01-28T14:13:55.706112Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785094.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494665/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-01-28T14:13:55.574951Z", "last_modified_time": "2026-03-20T01:12:53.882993Z", "date_published": null, "start_time": "2026-02-02T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E6C1DDC1BB37A86ABBD6958D5ADF993B/Stolgymnastik_for_seniorer_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E6C1DDC1BB37A86ABBD6958D5ADF993B/Stolgymnastik_for_seniorer_", "en": "http://www.vuotalo.fi/en/events/event/E6C1DDC1BB37A86ABBD6958D5ADF993B/Stolgymnastik_for_seniorer_" }, "provider": null, "description": { "fi": "<p>Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.</p><p>Maksutonta tuolijumppaa ruotsiksi.</p><p>Gruppen hålls på måndagar kl. 10 med uppehåll för sportlov och påsk. Verksamheten leds av en idrottsledare.</p><p>Du behöver inte binda dig till alla gånger, kom när det passar dig, men vi samlar in uppgifter om deltagande, anmäl dig enkelt på webben: folkhalsan_ostra_helsingfors.fi</p><p>Vi tar också emot din anmälan på plats om du vill!</p><p>Arr. Folkhälsan i östra Helsingfors i samarbete med Nordhuset.</p>", "sv": "<p>Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.</p><p>Gruppen hålls på måndagar kl. 10 med uppehåll för sportlov och påsk. Verksamheten leds av en idrottsledare. <br>Du behöver inte binda dig till alla gånger, kom när det passar dig, men vi samlar in uppgifter om deltagande, anmäl dig enkelt på webben: folkhalsan_ostra_helsingfors.fi<br>Vi tar också emot din anmälan på plats om du vill!<br>Arr. Folkhälsan i östra Helsingfors i samarbete med Nordhuset.</p>", "en": "<p>Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.</p><p>Gruppen hålls på måndagar kl. 10 med uppehåll för sportlov och påsk. Verksamheten leds av en idrottsledare.</p><p>Du behöver inte binda dig till alla gånger, kom när det passar dig, men vi samlar in uppgifter om deltagande, anmäl dig enkelt på webben: folkhalsan_ostra_helsingfors.fi</p><p>Vi tar också emot din anmälan på plats om du vill!</p><p>Arr. Folkhälsan i östra Helsingfors i samarbete med Nordhuset.</p>" }, "short_description": { "fi": "Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.", "sv": "Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden.", "en": "Folkhälsan i östra Helsingfors fortsätter med den populära stolgympan för seniorer i samarbete med staden." }, "location_extra_info": null, "name": { "fi": "Stolgymnastik för seniorer!", "sv": "Stolgymnastik för seniorer!", "en": "Stolgymnastik för seniorer!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68041/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67987", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494589, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T12:14:10.601885Z", "last_modified_time": "2026-01-21T12:14:10.601902Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784266.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494589/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T12:14:10.477282Z", "last_modified_time": "2026-03-20T01:12:53.769201Z", "date_published": null, "start_time": "2026-02-02", "end_time": "2026-02-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_", "en": "http://www.kanneltalo.fi/en/events/event/17EE43134837B7FB708E0E1C12F1E48F/Haagan_Taideseura_Raimo_Ketolainen_Taidetta_asennuskaapeissa_" }, "provider": null, "description": { "fi": "<p>Tylsän harmaat asennuskaapit ovat erinomainen pohja taideteoksille ja valokuville.</p><p>Taide piristää kaupunkikuvaa ja auttaa havainnoimaan ympäristöä uudella tavalla. Samalla ne antavat taiteilijoille ja kuvaajille hyviä kohteita tuoda esille tuotoksiaan.</p><p>Haagan Taideseura ry on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot Haagan Taideseura ry<br> <br>Kahvilan vitriinit</p><p>Vapaa pääsy</p>" }, "short_description": { "fi": "Tylsän harmaat asennuskaapit ovat erinomainen pohja taideteoksille ja valokuville." }, "location_extra_info": null, "name": { "fi": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa", "sv": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa", "en": "Haagan Taideseura: Raimo Ketolainen – Taidetta asennuskaapeissa" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67987/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67264", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494057, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:48.064732Z", "last_modified_time": "2025-12-04T12:12:48.064749Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780782.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494057/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:47.957190Z", "last_modified_time": "2026-03-20T01:12:52.511662Z", "date_published": null, "start_time": "2026-01-31T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/14452DF750112BA8C4A29118248E962B/LOPPUUNVARATTU_Wilma-Emilia_Kuosa_Company_Instinct", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/14452DF750112BA8C4A29118248E962B/FULLBOKAT_Wilma-Emilia_Kuosa_Company_Instinct", "en": "http://www.kanneltalo.fi/en/events/event/14452DF750112BA8C4A29118248E962B/FULLY_BOOKED_Wilma-Emilia_Kuosa_Company_Instinct" }, "provider": null, "description": { "fi": "<p>Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.</p><p>Esitys on yhteisöllinen ja turvallinen rituaali, jossa tanssitaiteilija Wilma-Emilia Kuosa johdattaa yleisön jazztanssin keinoin läpi moniulotteisten aistikokemuksien. Inspiraationa ovat Kuosan tutkimusmatkat Beninissä ja Togossa Länsi-Afrikassa. Esitystapahtuma sisältää soolo- ja yhteistansseja, äänimaailmoja, videoita ja runoja sekä erilaisia haju- ja makuelämyksiä.</p><p>Instinct tapahtuu Kanneltalon galleriatilassa, jossa on samanaikaisesti esillä Wilma-Emilia Kuosan ja työryhmän näyttely Sensation/Aistimus/Sensation. Esityksen näyttämönä toimiva näyttely herää henkiin kolmen esiintyjän ja yleisön vuorovaikutuksessa. Yleisö voi liikkua galleriatilassa esityksen aikana ja valita vapaasti ne aistikokemukset, joille antautua. Esitys on ympäristöystävällinen matka kohti jazztanssin juuria.</p><p>Esitys herkistää hiljentymään aistien äärelle ja havainnoimaan maailmaa yhdessä, yksi aisti kerrallaan. Jokainen tanssi perustuu yhteen aistielämykseen, josta näytetään video tai kuullaan äänimaailma tai runo. Tansseissa heijastuu Wilma-Emilian tutkimat rituaalitanssit ja kansantanssit suhteessa aisteihin. Yleisölle annetaan aististimulantteja eli samanlaisia hajuja, maistettavaa tai materiaalia kokemuksen jakamiseksi.</p><p>Instinct on helsinkiläisen jazztanssiryhmän Wilma-Emilia Kuosa Companyn kantaesitys. Teos konsepti on koreografi Wilma-Emilia Kuosan kuudes ja hänen työparinaan on tanssitaiteilija Tarja Rinne. Wilma-Emiliaa ja Tarjaa kiehtoo tutkia tässä esityksessä sitä, mitä jazztanssi tänä päivänä on. Wilma-Emilia on aiemmissa teoksissaan käyttänyt monimediallisia elementtejä – nykyrunoutta, improvisaatiota ja valokuvaa – joita tässä esityksessä yhdistetään uudenlaisiin aistikokemuksiin.</p><p>Instinct on kokemus, jonka Wilma-Emilia haluaa jakaa yhdessä yleisön ja esiintyjien kanssa. Esityksissä luodaan turvallinen tila, jossa jokainen voi valita roolinsa todistajana tai osallistujana esityksen edetessä vaiheesta toiseen. Roolia voi vapaasti vaihdella esityksen kulussa.</p><p><b>Työryhmä</b><br>Koreografia ja runot: Wilma-Emilia Kuosa <br>Tanssin tukena tanssitaiteilija: Tarja Rinne <br>Käsikirjoitus: Wilma-Emilia Kuosa ja Henry Hanikka <br>Esiintyjät: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Äänisuunnittelu: Wilma-Emilia Kuosa <br>Valosuunnittelu: Jaakko Kettunen <br>Musiikki: Ilpo Jauhiainen, Noel Saizonou ja työryhmä</p><p>Tuotanto: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Kesto: 1 t</p><p>Kieli Suomi/englanti/ranska <br>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p><p>Maksuton. Katsomokoko on rajallinen. Varaa paikkasi: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p><p>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p>", "sv": "<p>Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.</p><p>Föreställningen är en gemensam och trygg ritual, där danskonstnären Wilma-Emilia Kuosa leder publiken genom en mångdimensionell sinnesupplevelse med hjälp av jazzdans. Inspirationen kommer från Kuosas forskningsresor i Benin och Togo och Västafrika. I föreställningen ingår solodanser och danser med flera medverkande, ljudvärldar, videor och dikter samt olika doft- och smakupplevelser.</p><p>Föreställningen är trespråkig och innehåller finska, engelska och franska.</p><p>Instinct äger rum i Kanneltalos gallerilokal, där utställningen Sensation/Aistimus/Sensation av Wilma-Emilia Kuosa och hennes arbetsgrupp visas samtidigt. Utställningen, som fungerar som scen för föreställningen, väcks till liv genom samspelet mellan de tre artisterna och publiken. Publiken kan röra sig i gallerirummet under föreställningen och fritt välja vilka sinnesupplevelser de vill ge sig hän åt. Föreställningen är en miljövänlig resa till jazzdansens rötter.</p><p>Föreställningen uppmuntrar oss att stanna upp inför våra sinnen och observera världen tillsammans, med ett sinne i taget. Varje dans baserar sig på en enda sinnesupplevelse, som vi får se en video eller höra ett ljudlandskap eller en dikt om. Danserna återspeglar de rituella danser och folkdanser som Wilma-Emilia studerat i relation till sinnena. Publiken får sensoriska stimuli, dvs. liknande dofter, smaker eller material för att dela upplevelsen.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte och hennes arbetspar är danskonstnären Tarja Rinne. I den här föreställningen fascineras Wilma-Emilia och Tarja av att utforska vad jazzdans är i dag. I sina tidigare verk har Wilma-Emilia använt sig av multimediaelement – samtida poesi, improvisation och fotografi – som i denna föreställning kombineras med nya sinnesupplevelser.</p><p>Instinct är en upplevelse som Wilma-Emilia vill dela med sig av till publiken och artisterna. I föreställningarna skapas ett tryggt rum där var och en kan välja sin roll som vittne eller deltagare när föreställningen framskrider från ett skede till nästa. Man kan fritt byta roll under föreställningens gång.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte.</p><p><b>Arbetsgrupp</b><br>Koreografi och dikter: Wilma-Emilia Kuosa <br>Danskonstnär som stöd för dansen: Tarja Rinne <br>Manus: Wilma-Emilia Kuosa och Henry Hanikka <br>På scenen: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Ljusdesign: Jaakko Kettunen <br>Ljuddesign: Wilma-Emilia Kuosa <br>Musik: Ilpo Jauhiainen, Noel Saizonou och en arbetsgrupp <br>Produktion: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Längd: 1 h<br>Språk finska/engelska/franska</p><p>Fritt inträde. Begränsat antal publikplatser. Boka plats: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>", "en": "<p>Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance.</p><p>The performance is a communal and safe ritual in which dance artist Wilma-Emilia Kuosa leads the audience on a multidimensional sensory journey through jazz dance. Kuosa has been inspired by her expeditions to Benin and Togo in West Africa. The performance event will include solo and collaborative dances, soundscapes, videos and poems, as well as a variety of smell and taste experiences.</p><p>The performance is in three languages: Finnish, English and French.</p><p>Instinct takes place in the Kanneltalo gallery space, where the exhibition Sensation/Aistimus/Sensation by Wilma-Emilia Kuosa and her work group is displayed at the same time. The exhibition, which serves as the stage for the performance, comes to life through the interaction between the three performers and the audience. The audience can move around the gallery space during the performance and freely choose the sensory experiences to which to surrender. The performance is an eco-friendly journey towards the roots of jazz dance.</p><p>The performance encourages us to keep still, become aware of our senses and observe the world together, one sense at a time. Each dance is based on a single sensory experience, from which a video is shown or a soundscape or poem is heard. The dances reflect the ritual and folk dances studied by Wilma-Emilia in relation to the senses. The audience is given sensory stimuli, i.e. similar smells, tastes or materials to share the experience.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. This is the sixth concept by choreographer Wilma-Emilia Kuosa. She works with dance artist Tarja Rinne. In this performance, Wilma-Emilia and Tarja are fascinated to explore what jazz dance is today. In her previous works, Wilma-Emilia has used multimedia elements – contemporary poetry, improvisation and photography – which, in this performance, are combined with new sensory experiences.</p><p>Instinct is an experience that Wilma-Emilia wants to share with the audience and the performers. The presentations create a safe space where everyone can choose their role as a witness or participant as the presentation progresses from one phase to the next. You can freely change your role during the course of the performance.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. The work concept is the sixth by choreographer Wilma-Emilia Kuosa.</p><p><b>Creative team</b><br>Choreography and poems: Wilma-Emilia Kuosa <br>Supporting dance artist: Tarja Rinne <br>Script: Wilma-Emilia Kuosa and Henry Hanikka <br>Performers: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Lighting design: Jaakko Kettunen <br>Sound design: Wilma-Emilia Kuosa <br>Music: Ilpo Jauhiainen, Noel Saizonou and team <br>Production: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Duration: 1 h</p><p>Language Finnish/English/French <br>We recommend that you bring your own woolen socks or slippers, as shoes will be left outside the gallery space.</p><p>Free of charge. The size of the auditorium is limited. Book your seat: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>" }, "short_description": { "fi": "Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.", "sv": "Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.", "en": "Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance." }, "location_extra_info": null, "name": { "fi": "LOPPUUNVARATTU: Wilma-Emilia Kuosa Company: Instinct", "sv": "FULLBOKAT: Wilma-Emilia Kuosa Company: Instinct", "en": "FULLY BOOKED: Wilma-Emilia Kuosa Company: Instinct" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67264/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67981", "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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494488, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T09:13:49.086112Z", "last_modified_time": "2026-01-15T09:13:49.086140Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783058.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494488/?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-15T09:13:48.965851Z", "last_modified_time": "2026-03-20T01:12:51.879401Z", "date_published": null, "start_time": "2026-01-31T10:00:00Z", "end_time": "2026-01-31T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1686FB31FD1308BE93C62FE0C81DA8DC/Ramadanrieha", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1686FB31FD1308BE93C62FE0C81DA8DC/Ramadanrieha", "en": "http://www.vuotalo.fi/en/events/event/1686FB31FD1308BE93C62FE0C81DA8DC/Ramadanrieha" }, "provider": null, "description": { "fi": "<p>Ramadanrieha palaa taas, jo 4. kertaa! Se on tunnelmallinen, perhe-tapahtuma, joka kokoaa yhteen Ramadanin odotuksen hengessä. Luvassa ainutlaatuinen bazaarialue ja monipuolinen kattaus erilaisia pajoja ja pisteitä lapsille ja nuorille.</p><p>OHJELMA:</p><p>ULKONA VUOTORILLA:<br>Klo 12-17 Hevoskärry- ja poniajelu, Töyryhiekan tila (maksullinen piste)<br>Klo 12-17 Ruokarekka, Falafel Box (maksullinen piste)<br>Klo 12-15 Paloauto ja kattilapalorasti, Vuosaaren VPK</p><p>AULA, K-KERROS:<br>Klo 12-17 Vaunuparkki, rajoitetusti tilaa joten suosittelemme että vaunut ja rattaat jätetään kotiin tai autoon jos mahdollista</p><p>MONITOIMITILA, K-KERROS:<br>Klo 12-17 Perhekahvila (teetä ja pientä askartelua perheille), Mannerheimin Lastensuojeluliitto</p><p>PIKKUSALI, K-KERROS: <br>Klo 12-17 Virtuaalilasipiste, Nuorten Musliimien Foorumi<br>Klo 12-17 Animointityöpajaa/koodauspiste, Helsingin Kuvataidekoulu</p><p>VUOSALI, 1. KERROS:<br>Klo 12-17 Bazaari, Summa ry ja lukuisat muut myyjät</p><p>VUOTALON AULA, 1. KERROS:<br>Klo 12-17 Valokuvauspiste<br>Klo 12-17 Ruokailualue</p><p>KIRJASTON LASTENOSASTO, 1. KERROS:<br>Klo 12-17 Värityspiste, Vuosaaren kirjasto</p><p>KIRJASTON KOKOUSHUONE JYRKI, 1. KERROS:<br>Klo 12-17 Ramadan-korttien askartelupiste, Lasten kirjastoauto</p><p>KAHVILA POKKARI, 1. KERROS:<br>Klo 10.30-17 Kahvila palvelee, HUOM! Kahvilassa voi ainoastaan syödä ja juoda kahvilan tuotteita.</p><p>KUVATAIDELUOKKA, 2. KERROS:<br>Klo 12-15 Iloiset rannekorut (5-8-vuotiaat), non-stop, Kulttuurin kummilapset<br>Klo 12.30-13.30, 14-15, 15.30-16.30 Maalausta luonnonväreillä (10+vuotiaat, 20 hlöä/sessio), Operaatio Pulssi<br>Klo 12.30-13.30, 14-15, 15.30-16.30 Postikortti piirtäen ja maalaten, Ateneum</p><p>MUSIIKKILUOKKA, 2. KERROS:<br>Klo 12.45-13.30, 13.45-14.30, 14.45-15.30, 15.45-16.30 Ihmevekottimet (10+vuotiaat, 16 hlöä/sessiot), Aalto Junior</p><p>KERAMIIKKALUOKKA, 2. KERROS: <br>Klo 12-17 Hennauspiste, eri toimijoita (maksullinen piste)</p><p>Kaikkiin ohjelmiin on vapaa pääsy ellei lue \"maksullinen piste\". Oikeudet muutoksiin pidetään.</p>", "sv": "<p>Ramadanrieha är tillbaka igen, för 4. gången! Det är ett stämningsfullt familjeevenemang som samlar mänskor i väntan på Ramadan. På programmet finns ett unikt bazaarområde och ett mångsidigt utbud av olika verkstäder och stationer för barn och unga.</p><p>PROGRAM:</p><p>UTOMHUS VID NORTORGET:<br>Kl. 12–17 Hästkärra och ponnyridning, Töyryhiekan tila (avgiftsbelagd aktivitet)<br>Kl. 12–17 Matvagn, Falafel Box (avgiftsbelagd aktivitet)<br>Kl. 12–15 Brandbil och kastrullbrandsstation, Nordsjö FBK</p><p>AULAN, VÅNING K:<br>Kl. 12–17 Barnvagnsparkering, begränsat utrymme – vi rekommenderar att barnvagnar lämnas hemma eller i bilen om möjligt</p><p>MULTIKONSTLOKALEN, VÅNING K:<br>Kl. 12–17 Familjecafé (te och lätt pyssel för familjer), Mannerheims Barnskyddsförbund</p><p>LILLA SALEN, VÅNING K:<br>Kl. 12–17 Virtualglasögonstation, Unga Muslimers Forum<br>Kl. 12–17 Animeringsverkstad/kodningspunkt, Helsingfors Bildkonstskola</p><p>NORSALEN, VÅNING 1:<br>Kl. 12–17 Basar, Summa rf och många andra försäljare<br>NORDHUSETS AULA, VÅNING 1:<br>Kl. 12–17 Fotograferingsstation<br>Kl. 12–17 Matplats</p><p>BIBLIOTEKETS BARNAVDELNING, VÅNING 1:<br>Kl. 12–17 Färgläggningsstation, Nordsjö bibliotek</p><p>BIBLIOTEKETS MÖTESRUM JYRKI, VÅNING 1:<br>Kl. 12–17 Pysselstation för Ramadan-kort, Barnens bokbuss</p><p>CAFÉ POKKARI, VÅNING 1:<br>Kl. 10.30–17 Caféet är öppet. OBS! I caféet får man endast äta och dricka caféets egna produkter.</p><p>BILDKONSTATELJÉN, VÅNING 2:<br>Kl. 12–15 Glada armband (5–8-åringar), non-stop, Kulturens fadderbarn<br>Kl. 12.30–13.30, 14–15, 15.30–16.30 Målning med naturfärger (10+ år, 20 personer/session), Operaatio Pulssi<br>Kl. 12.30–13.30, 14–15, 15.30–16.30 Rita och måla vykort, Ateneum</p><p>MUSIKKLASSEN, VÅNING 2:<br>Kl. 12.45–13.30, 13.45–14.30, 14.45–15.30, 15.45–16.30 Fantasifulla instrument (10+ år, 16 personer/session), Aalto Junior</p><p>KERAMIKATELJÉN, VÅNING 2:<br>Kl. 12–17 Henna-station, olika aktörer (avgiftsbelagd aktivitet)</p><p>Alla programpunkter är gratis om inget annat anges. Rätten till ändringar förbehålls.</p>", "en": "<p>Ramadanrieha is back again for the 4th time! It’s a warm, family-friendly event that brings people together in the spirit of anticipating Ramadan. The event features a unique bazaar area and a wide variety of workshops and activity stations for children and young people.</p><p>This multilingual event for families with children will celebrate Ramadan.</p><p>PROGRAM:</p><p>OUTDOORS AT VUOTORI:<br>12:00–17:00 Horse-drawn carriage and pony rides, Töyryhiekan tila (paid activity)<br>12:00–17:00 Food truck, Falafel Box (paid activity)<br>12:00–15:00 Fire engine and cooking-pot fire safety station, Vuosaari VPK (Volunteer Fire Brigade)</p><p>LOBBY, BASEMENT LEVEL (K):<br>12:00–17:00 Stroller parking. Limited space available, so we recommend leaving strollers at home or in the car if possible.</p><p>MULTI-ARTS SPACE, BASEMENT LEVEL (K):<br>12:00–17:00 Family café (tea and light crafts for families), MLL (Mannerheim League for Child Welfare)</p><p>SMALL HALL, BASEMENT LEVEL (K):<br>12:00–17:00 Virtual reality station, Young Muslims Forum<br>12:00–17:00 Animation workshop/coding station, Helsinki Art School</p><p>VUOSALI HALL, 1ST FLOOR:<br>12:00–17:00 Bazaar, Summa Association and many other vendors</p><p>VUOTALO LOBBY, 1ST FLOOR:<br>12:00–17:00 Photography station<br>12:00–17:00 Dining area</p><p>CHILDREN’S SECTION OF THE LIBRARY, 1ST FLOOR:<br>12:00–17:00 Coloring station, Vuosaari Library</p><p>LIBRARY MEETING ROOM JYRKI, 1ST FLOOR:<br>12:00–17:00 Ramadan card craft station, Children’s Library Bus</p><p>CAFÉ POKKARI, 1ST FLOOR:<br>10:30–17:00 Café open. NOTE! Only food and drinks purchased from the café may be consumed in the café area</p><p>ART CLASSROOM, 2ND FLOOR:<br>12:00–15:00 Happy bracelets (ages 5–8), non-stop, Kulttuurin Kummilapset <br>12:30–13:30, 14:00–15:00, 15:30–16:30 Painting with natural colors (ages 10+, 20 participants/session), Operaatio Pulssi<br>12:30–13:30, 14:00–15:00, 15:30–16:30 Drawing and painting postcards, Ateneum</p><p>MUSIC CLASSROOM, 2ND FLOOR:<br>12:45–13:30, 13:45–14:30, 14:45–15:30, 15:45–16:30 Amazing contraptions (ages 10+, 16 participants/session), Aalto Junior</p><p>CERAMICS CLASSROOM, 2ND FLOOR:<br>12:00–17:00 Henna station, various organizers (paid activity)</p><p>All activities are free of charge unless otherwise stated. Changes reserved.</p>" }, "short_description": { "fi": "Ramadanrieha palaa taas, jo 4. kertaa! Se on tunnelmallinen, perhe-tapahtuma, joka kokoaa yhteen Ramadanin odotuksen hengessä. Luvassa ainutlaatuinen bazaarialue ja monipuolinen kattaus erilaisia pajoja ja pisteitä lapsille ja nuorille.", "sv": "Ramadanrieha är tillbaka igen, för 4. gången! Det är ett stämningsfullt familjeevenemang som samlar mänskor i väntan på Ramadan. På programmet finns ett unikt bazaarområde och ett mångsidigt utbud av olika verkstäder och stationer för barn och unga.", "en": "Ramadanrieha is back again for the 4th time! It’s a warm, family-friendly event that brings people together in the spirit of anticipating Ramadan. The event features a unique bazaar area and a wide variety of workshops and activity stations for children and young people." }, "location_extra_info": null, "name": { "fi": "Ramadanrieha – Koko perheen tapahtuma", "sv": "Ramadanrieha – Evenemang för hela familjen", "en": "Ramadanrieha – An event for the whole family" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67981/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67472", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494005, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T08:13:04.915899Z", "last_modified_time": "2025-12-03T08:13:04.915914Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781442.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T08:13:04.814280Z", "last_modified_time": "2026-03-20T01:12:51.094159Z", "date_published": null, "start_time": "2026-01-30T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7DA670C93EED264E30805E4CB05B58F0/Big_Band_-jamit", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7DA670C93EED264E30805E4CB05B58F0/Big_Band_-jam", "en": "http://www.malmitalo.fi/en/events/event/7DA670C93EED264E30805E4CB05B58F0/Big_band_jam_sessions" }, "provider": null, "description": { "fi": "<p>Tervetuloa Sointi Jazz Orchestran järjestämiin big band -jameihin Malmitaloon!</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.</p><p>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!</p><p>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com</p><p>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.</p><p><b>House bandit:</b><br>Ebeli Big Band<br>Sibelius-lukion Big Band</p><p>Kesto: 2 t<br>Vapaa pääsy!</p>", "sv": "<p>Välkommen till Sointi Jazz Orchestras big band-jam på Malms kulturhus!</p><p>Efter korta framträdanden av husbanden är alla saxofonister, trumpetare, trombonister, ackompanjerare och sångare välkomna att delta i musiken! På plats finns trumset, piano, bas- och gitarrförstärkare, notställ och noter. Ta gärna med de instrument och trumpinnar du behöver.</p><p>Till jammen har vi valt ut material som är bekvämt och passar olika nivåer av musiker – vi väljer ut de låtar som spelas med tanke på de musiker som kommer för att jamma!</p><p>Det är också möjligt få se noterna till låtarna på förhand på begäran. Vänligen skicka begäran till: info@sointijazzorchestra.com</p><p>Kom ensam eller med en vän för att skapa musik tillsammans! Du kan också bara komma och lyssna och njuta av big band-musiken.</p><p>Husbanden:<br>Ebeli Big Band<br>Sibelius-lukios Big Band</p><p>Längd: 2 h<br>Fritt inträde!</p>", "en": "<p>Join us for big band jam sessions organised by Sointi Jazz Orchestra at Malmitalo!</p><p>After short performances by the house bands, all saxophonists, trumpetists, trombonists, band players and singers are welcome to join in with the music! On site you will find a drum kit, a piano, bass and guitar amplifiers, music stands and sheet music. Please bring any other instruments and drumsticks that you need.</p><p>For the jams, we have selected material that is comfortable and suitable for different levels of musicianship – the tunes to be played will be chosen at the jams in accordance with the musicians who show up!</p><p>You can also request to see the sheet music of the songs in advance. Please send your request to: info@sointijazzorchestra.com</p><p>Come and bring a friend to make music together! You can also just come to listen and enjoy some big band music.</p><p>House bands:<br>Ebeli Big Band<br>Sibelius-lukio Upper Secondary School Big Band</p><p>Duration: 2 h<br>Free entry!</p>" }, "short_description": { "fi": "Tervetuloa Sointi Jazz Orchestran järjestämiin big band -jameihin Malmitaloon!", "sv": "Välkommen till Sointi Jazz Orchestras big band-jam på Malms kulturhus!", "en": "Join us for big band jam sessions organised by Sointi Jazz Orchestra at Malmitalo!" }, "location_extra_info": null, "name": { "fi": "Big Band -jamit", "sv": "Big Band -jam", "en": "Big band jam sessions" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67472/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67263", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494056, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:47.599670Z", "last_modified_time": "2025-12-04T12:12:47.599686Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780780.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494056/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:47.500423Z", "last_modified_time": "2026-03-20T01:12:50.920896Z", "date_published": null, "start_time": "2026-01-30T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F25BC385F6187AC4A7E8C6BC8B992796/LOPPUUNVARATTU_Wilma-Emilia_Kuosa_Company_Instinct", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F25BC385F6187AC4A7E8C6BC8B992796/FULLBOKAT_Wilma-Emilia_Kuosa_Company_Instinct", "en": "http://www.kanneltalo.fi/en/events/event/F25BC385F6187AC4A7E8C6BC8B992796/FULLY_BOOKED_Wilma-Emilia_Kuosa_Company_Instinct" }, "provider": null, "description": { "fi": "<p>Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.</p><p>Esitys on yhteisöllinen ja turvallinen rituaali, jossa tanssitaiteilija Wilma-Emilia Kuosa johdattaa yleisön jazztanssin keinoin läpi moniulotteisten aistikokemuksien. Inspiraationa ovat Kuosan tutkimusmatkat Beninissä ja Togossa Länsi-Afrikassa. Esitystapahtuma sisältää soolo- ja yhteistansseja, äänimaailmoja, videoita ja runoja sekä erilaisia haju- ja makuelämyksiä.</p><p>Instinct tapahtuu Kanneltalon galleriatilassa, jossa on samanaikaisesti esillä Wilma-Emilia Kuosan ja työryhmän näyttely Sensation/Aistimus/Sensation. Esityksen näyttämönä toimiva näyttely herää henkiin kolmen esiintyjän ja yleisön vuorovaikutuksessa. Yleisö voi liikkua galleriatilassa esityksen aikana ja valita vapaasti ne aistikokemukset, joille antautua. Esitys on ympäristöystävällinen matka kohti jazztanssin juuria.</p><p>Esitys herkistää hiljentymään aistien äärelle ja havainnoimaan maailmaa yhdessä, yksi aisti kerrallaan. Jokainen tanssi perustuu yhteen aistielämykseen, josta näytetään video tai kuullaan äänimaailma tai runo. Tansseissa heijastuu Wilma-Emilian tutkimat rituaalitanssit ja kansantanssit suhteessa aisteihin. Yleisölle annetaan aististimulantteja eli samanlaisia hajuja, maistettavaa tai materiaalia kokemuksen jakamiseksi.</p><p>Instinct on helsinkiläisen jazztanssiryhmän Wilma-Emilia Kuosa Companyn kantaesitys. Teos konsepti on koreografi Wilma-Emilia Kuosan kuudes ja hänen työparinaan on tanssitaiteilija Tarja Rinne. Wilma-Emiliaa ja Tarjaa kiehtoo tutkia tässä esityksessä sitä, mitä jazztanssi tänä päivänä on. Wilma-Emilia on aiemmissa teoksissaan käyttänyt monimediallisia elementtejä – nykyrunoutta, improvisaatiota ja valokuvaa – joita tässä esityksessä yhdistetään uudenlaisiin aistikokemuksiin.</p><p>Instinct on kokemus, jonka Wilma-Emilia haluaa jakaa yhdessä yleisön ja esiintyjien kanssa. Esityksissä luodaan turvallinen tila, jossa jokainen voi valita roolinsa todistajana tai osallistujana esityksen edetessä vaiheesta toiseen. Roolia voi vapaasti vaihdella esityksen kulussa.</p><p><b>Työryhmä</b><br>Koreografia ja runot: Wilma-Emilia Kuosa <br>Tanssin tukena tanssitaiteilija: Tarja Rinne <br>Käsikirjoitus: Wilma-Emilia Kuosa ja Henry Hanikka <br>Esiintyjät: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Äänisuunnittelu: Wilma-Emilia Kuosa <br>Valosuunnittelu: Jaakko Kettunen <br>Musiikki: Ilpo Jauhiainen, Noel Saizonou ja työryhmä</p><p>Tuotanto: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Kesto: 1 t</p><p>Kieli Suomi/englanti/ranska <br>Suosittelemme ottamaan mukaan omat villasukat tai tohvelit, sillä näyttelytilassa ollaan ilman ulkokenkiä</p><p>Maksuton. Katsomokoko on rajallinen. Varaa paikkasi: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>", "sv": "<p>Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.</p><p>Föreställningen är en gemensam och trygg ritual, där danskonstnären Wilma-Emilia Kuosa leder publiken genom en mångdimensionell sinnesupplevelse med hjälp av jazzdans. Inspirationen kommer från Kuosas forskningsresor i Benin och Togo och Västafrika. I föreställningen ingår solodanser och danser med flera medverkande, ljudvärldar, videor och dikter samt olika doft- och smakupplevelser.</p><p>Föreställningen är trespråkig och innehåller finska, engelska och franska.</p><p>Instinct äger rum i Kanneltalos gallerilokal, där utställningen Sensation/Aistimus/Sensation av Wilma-Emilia Kuosa och hennes arbetsgrupp visas samtidigt. Utställningen, som fungerar som scen för föreställningen, väcks till liv genom samspelet mellan de tre artisterna och publiken. Publiken kan röra sig i gallerirummet under föreställningen och fritt välja vilka sinnesupplevelser de vill ge sig hän åt. Föreställningen är en miljövänlig resa till jazzdansens rötter.</p><p>Föreställningen uppmuntrar oss att stanna upp inför våra sinnen och observera världen tillsammans, med ett sinne i taget. Varje dans baserar sig på en enda sinnesupplevelse, som vi får se en video eller höra ett ljudlandskap eller en dikt om. Danserna återspeglar de rituella danser och folkdanser som Wilma-Emilia studerat i relation till sinnena. Publiken får sensoriska stimuli, dvs. liknande dofter, smaker eller material för att dela upplevelsen.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte och hennes arbetspar är danskonstnären Tarja Rinne. I den här föreställningen fascineras Wilma-Emilia och Tarja av att utforska vad jazzdans är i dag. I sina tidigare verk har Wilma-Emilia använt sig av multimediaelement – samtida poesi, improvisation och fotografi – som i denna föreställning kombineras med nya sinnesupplevelser.</p><p>Instinct är en upplevelse som Wilma-Emilia vill dela med sig av till publiken och artisterna. I föreställningarna skapas ett tryggt rum där var och en kan välja sin roll som vittne eller deltagare när föreställningen framskrider från ett skede till nästa. Man kan fritt byta roll under föreställningens gång.</p><p>Instinct är ett uruppförande av jazzdansgruppen Wilma-Emilia Kuosa Company från Helsingfors. Verkskonceptet är koreografen Wilma-Emilia Kuosas sjätte.</p><p><b>Arbetsgrupp</b><br>Koreografi och dikter: Wilma-Emilia Kuosa <br>Danskonstnär som stöd för dansen: Tarja Rinne <br>Manus: Wilma-Emilia Kuosa och Henry Hanikka <br>På scenen: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Ljusdesign: Jaakko Kettunen <br>Ljuddesign: Wilma-Emilia Kuosa <br>Musik: Ilpo Jauhiainen, Noel Saizonou och en arbetsgrupp <br>Produktion: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Längd: 1 h<br>Språk finska/engelska/franska</p><p>Fritt inträde. Begränsat antal publikplatser. Boka plats: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p>", "en": "<p>Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance.</p><p>The performance is a communal and safe ritual in which dance artist Wilma-Emilia Kuosa leads the audience on a multidimensional sensory journey through jazz dance. Kuosa has been inspired by her expeditions to Benin and Togo in West Africa. The performance event will include solo and collaborative dances, soundscapes, videos and poems, as well as a variety of smell and taste experiences.</p><p>The performance is in three languages: Finnish, English and French.</p><p>Instinct takes place in the Kanneltalo gallery space, where the exhibition Sensation/Aistimus/Sensation by Wilma-Emilia Kuosa and her work group is displayed at the same time. The exhibition, which serves as the stage for the performance, comes to life through the interaction between the three performers and the audience. The audience can move around the gallery space during the performance and freely choose the sensory experiences to which to surrender. The performance is an eco-friendly journey towards the roots of jazz dance.</p><p>The performance encourages us to keep still, become aware of our senses and observe the world together, one sense at a time. Each dance is based on a single sensory experience, from which a video is shown or a soundscape or poem is heard. The dances reflect the ritual and folk dances studied by Wilma-Emilia in relation to the senses. The audience is given sensory stimuli, i.e. similar smells, tastes or materials to share the experience.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. This is the sixth concept by choreographer Wilma-Emilia Kuosa. She works with dance artist Tarja Rinne. In this performance, Wilma-Emilia and Tarja are fascinated to explore what jazz dance is today. In her previous works, Wilma-Emilia has used multimedia elements – contemporary poetry, improvisation and photography – which, in this performance, are combined with new sensory experiences.</p><p>Instinct is an experience that Wilma-Emilia wants to share with the audience and the performers. The presentations create a safe space where everyone can choose their role as a witness or participant as the presentation progresses from one phase to the next. You can freely change your role during the course of the performance.</p><p>Instinct is the premiere of the Helsinki-based jazz dance group Wilma-Emilia Kuosa Company. The work concept is the sixth by choreographer Wilma-Emilia Kuosa.</p><p><b>Creative team</b><br>Choreography and poems: Wilma-Emilia Kuosa <br>Supporting dance artist: Tarja Rinne <br>Script: Wilma-Emilia Kuosa and Henry Hanikka <br>Performers: WEKC: Kitri Joronen, Ida Riik, Sanni Saarilahti ja WIlma-Emilia Kuosa <br>Lighting design: Jaakko Kettunen <br>Sound design: Wilma-Emilia Kuosa <br>Music: Ilpo Jauhiainen, Noel Saizonou and team <br>Production: Wilma-Emilia Kuosa Company, Kanneltalo ja Arts Management Helsinki</p><p>Duration: 1 h<br>Language Finnish/English/French</p><p>Free of charge. The size of the auditorium is limited. Book your seat: https://www.lippu.fi/eventseries/name-4044945/?affiliate=NFI</p><p>We recommend that you bring your own woolen socks or slippers, as shoes will be left outside the gallery space.</p>" }, "short_description": { "fi": "Instinct on vaikuttava esityskokemus. Esityksissä Wilma-Emilia Kuosa Company johdattaa jazztanssien yleisön läpi moniulotteisen aistimatkan.", "sv": "Instinct är en immersiv föreställningsupplevelse. Wilma-Emilia Kuosa Company leder jazzdanspubliken genom en mångdimensionell sinnesresa.", "en": "Instinct is an immersive performance experience. In the performances, Wilma-Emilia Kuosa Company leads the audience on a multidimensional sensory journey with jazz dance." }, "location_extra_info": null, "name": { "fi": "LOPPUUNVARATTU: Wilma-Emilia Kuosa Company: Instinct", "sv": "FULLBOKAT: Wilma-Emilia Kuosa Company: Instinct", "en": "FULLY BOOKED: Wilma-Emilia Kuosa Company: Instinct" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67263/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67652", "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: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494503, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T09:13:14.002868Z", "last_modified_time": "2026-01-16T09:13:14.002883Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782295.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494503/?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-15T16:13:32.112121Z", "last_modified_time": "2026-03-20T01:12:50.454323Z", "date_published": null, "start_time": "2026-01-30T09:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/44AE6DA42D6A98EB8F0A92A8931F2B4F/La_Baracca_Le_Famiglie_-_Families", "sv": "http://www.annantalo.fi/sv/evenemang/event/44AE6DA42D6A98EB8F0A92A8931F2B4F/La_Baracca_Le_Famiglie_-_Families", "en": "http://www.annantalo.fi/en/events/event/44AE6DA42D6A98EB8F0A92A8931F2B4F/La_Baracca_Le_Famiglie_-_Families" }, "provider": null, "description": { "fi": "<p>TÄYTEEN VARATTU! Päiväkotiryhmille. Sanaton, humoristinen ja lämmin teatteriesitys erilaisista perheistä.</p><p>Tämä esitys on omistettu lapsille, jotka alkavat pohtia perheen käsitettä omasta näkökulmastaan kokemuksensa pohjalta. Esitys tarjoaa tilaisuuden omille ajatuksille ja kysymyksille ilman, että se pyrkii antamaan tai johdattelemaan vastauksia. Esitys kannustaa tutkimaan omaa näkemystä ja laajentamaan katsetta kohti muita mahdollisia todellisuuksia.</p><p>Mikä on perhe? <br>Kuka on perhe? <br>Onko perhe sitä, että on lapsia?<br>Onko perhe sitä, että on äiti ja isä?<br>Kuuluvatko isovanhemmat perheeseen?<br>Täytyykö perheen asua samassa paikassa?<br>Voivatko perheenjäsenet kuulua myös toisiin perheisiin?<br>Onko eläimillä perhe?</p><p>Kesto: noin 35 minuuttia<br>Kieli: sanaton<br>Ikäsuositus: 2 +</p><p>Tekijä: Andrea Buzzetti<br>Ohjausyhteistyö: Enrico Montalbani ja Carlotta Zini<br>Esiintyjät: Andrea Buzzetti ja Lorenzo Monti<br>Liikkeet: Andra Burcâ<br>Puvut: Tanja Eick<br>Erityiskiitos: Francesca Nerattini yhteistyöstä</p><p>Esitys on suunnattu päiväkotiryhmille. Varaa ryhmällesi paikka kultus.hel.fi-palvelun kautta.</p><p>Vuosittainen Small size Days –tapahtuma muistuttaa kaikkein pienimpien lasten oikeudesta taiteeseen ja kulttuuriin. Tapahtuma järjestetään samanaikaisesti eri puolilla maailmaa: Meksikossa, Serbiassa, Kuubassa, Saksassa, Australiassa... ja Suomessa.</p><p>Tapahtuman järjestävät teatterit ja kulttuurilaitokset, jotka ovat osa Small size network- verkostoa. Vuonna 2026 Small size Days on 30.1.–1.2.2026. Juhlaviikonloppuna sosiaalinen media on täynnä tervehdyksiä ja keskusteluja small size kumppaneiltamme. <br>Facebook: https://www.facebook.com/smallsizenetwork/ <br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Eläköön pienokaiset ja elävä taide!</p>", "sv": "<p>FULLBOKAD!</p><p>Den här föreställningen är tillägnad barn som börjar reflektera över begreppet familj ur sitt eget perspektiv, utifrån det som de upplevt. Föreställningen ger utrymme för egna tankar och frågor utan att försöka ge eller leda till vissa svar. Föreställningen uppmuntrar till att utforska sina egna synsätt och vidga blicken mot andra möjliga verkligheter.</p><p>Vad är en familj? <br>Vem är en familj? <br>Betyder familj att man har barn?<br>Betyder familj att det finns en mamma och en pappa?<br>Är mor- och farföräldrar en del av familjen?<br>Måste alla i familjen bo på samma ställe?<br>Kan familjemedlemmar också höra till andra familjer?<br>Har djur en familj?</p><p>Längd: cirka 35 minuter<br>Språk: ordlös<br>Åldersrekommendation: 2 +</p><p>Skapare: Andrea Buzzetti<br>Regisamarbete: Enrico Montalbani och Carlotta Zini<br>På scenen: Andrea Buzzetti och Lorenzo Monti<br>Rörelser: Andra Burcâ<br>Dräkter: Tanja Eick<br>Särskilt tack till: Francesca Nerattini för samarbetet</p><p>Årliga Small size days uppmärksammar de yngsta barnens rätt till konst och kultur. Evenemanget kommer att äga rum samtidigt runt om i världen: I Mexiko, Serbien, Kuba, Tyskland, Australien... och i Finland.</p><p>Evenemanget arrangeras av teatrar och kulturinstitutioner som ingår i nätverket Small size network. År 2026 kommer Small size days att äga rum mellan den 30 januari och den 1 februari 2026. Under festveckoslutet är de sociala medierna fulla av hälsningar och diskussioner av våra small size-partner.<br>Facebook: https://www.facebook.com/smallsizenetwork/<br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Länge leve de små och den levande konsten!</p>", "en": "<p>FULLY BOOKED!</p><p>This is a show dedicated to children who begin to approach the idea of family, according to their point of view and their personal experience. A show that can suggest reflections and stimulate questions, without wanting to provide or influence answers. An opportunity to investigate one's own vision and broaden one's gaze to other possible realities.</p><p>What is a family? <br>Who is a family? <br>Is a family having children? <br>Is a family having a mom and dad? <br>Are grandparents part of the family? <br>Does a family have to live in the same place? <br>Can family members be part of other families? <br>Do animals have a family?</p><p>Duration: 30 mins<br>Age: for 2-5 years<br>Language: non-verbal</p><p>by Andrea Buzzetti <br>collaboration for the direction Enrico Montalbani and Carlotta Zini <br>with Andrea Buzzetti and Lorenzo Monti <br>movements by Andra Burcâ <br>costumes by Tanja Eick <br>special thanks to Francesca Nerattini for the collaboration</p><p>The annual Small Size Days event serves as a reminder of very young children’s right to art and culture. The event takes place simultaneously in different parts of the world: Mexico, Serbia, Cuba, Germany, Australia... and Finland.</p><p>The event is organised by theatres and cultural institutions that are part of the Small Size network. In 2026, Small Size Days will take place from 30 January to 1 February 2026. Over the festive weekend, social media will be full of greetings from and conversations with our Small Size partners.<br>Facebook: https://www.facebook.com/smallsizenetwork/<br>Instagram: @smallsizenetwork https://www.instagram.com/smallsizenetwork/</p><p>Long live the little ones and living art!</p>" }, "short_description": { "fi": "TÄYTEEN VARATTU! Päiväkotiryhmille. Sanaton, humoristinen ja lämmin teatteriesitys erilaisista perheistä.", "sv": "FULLBOKAD!", "en": "FULLY BOOKED!" }, "location_extra_info": null, "name": { "fi": "La Baracca: Le Famiglie - Families – Small size days", "sv": "La Baracca: Le Famiglie - Families – Small size days", "en": "La Baracca: Le Famiglie - Families – Small size days" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67652/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }