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=12
{ "meta": { "count": 27762, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=13", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=11" }, "data": [ { "id": "kulke:68000", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494610, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-22T16:13:38.209032Z", "last_modified_time": "2026-01-22T16:13:38.209049Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778822.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494610/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-22T16:13:38.096177Z", "last_modified_time": "2026-03-20T01:13:25.695091Z", "date_published": null, "start_time": "2026-03-05T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule vauvan kanssa rentoutumaan ja katsomaan Pikku naisia -elokuvaa Vuotalon Pikkusaliin!", "sv": "Kom tillsammans med din baby för att koppla av och titta på filmen Unga kvinnor i Lilla salen på Nordhuset.", "en": "Come to Vuotalo’s Small Hall with your baby to relax and watch the movie Little Women!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8A36814258780D3A0B14E3641FF40031/Vauvakino_Pikku_naisia_S_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8A36814258780D3A0B14E3641FF40031/Babybio_Unga_kvinnor_S_", "en": "http://www.vuotalo.fi/en/events/event/8A36814258780D3A0B14E3641FF40031/BabyKino_Little_Women_S_" }, "description": { "fi": "<p>Tule vauvan kanssa rentoutumaan ja katsomaan Pikku naisia -elokuvaa Vuotalon Pikkusaliin!</p><p>Tila on hämärä ja elokuvan ääni pidetään hiljaisella, jotta vauvat voivat vaikka nukkua tai köllötellä patjoilla. Rattaat ja vaunut on jätettävä tilan ulkopuolelle.</p><p>Ohjaaja-käsikirjoittaja Gerta Gerwig (Lady Bird) on tehnyt Pikku naisia -romaanista tulkintansa, joka pohjautuu kirjan ohella myös Louisa May Alcottin muihin teoksiin. Elokuvassa kirjailijan alter ego Jo March pohdiskelee fiktiivistä elämäänsä. Gerwigin versiossa Marchin sisarusten rakastettu tarina, jossa neljä nuorta naista ovat päättäneet elää elämäänsä omilla ehdoillaan, on sekä ajaton että ajankohtainen. Jo, Meg, Amy ja Beth Marchia esittävät Saoirse Ronan, Emma Watson, Florence Pugh ja Eliza Scanlen. Timothée Chalamet esittää heidän naapuriansa Laurieta, Laura Dern Marmeeta ja Meryl Streep täti Marchia.</p><p>Ensi-ilta: 31.01.2020<br>Ikäraja: Sallittu<br>Pituus: 135 min.<br>Ohjaus: Greta Gerwig<br>Käsikirjoitus: Greta Gerwig<br>Näyttelijät: Saoirse Ronan, Eliza Scanlon, Meryl Streep, Emma Watson, Chris Cooper, Laura Dern, Louis Garrel, Tracy Letts, James Norton, Bob Odenkirk, Florence Pugh, Timothée Chalamet</p>", "sv": "<p>Kom tillsammans med din baby för att koppla av och titta på filmen Unga kvinnor i Lilla salen på Nordhuset.</p><p>Rummet är dunkelt och ljudet i filmen är inställd på låg volym, så att barnen kan sova eller vila på madrasser. Barnvagnar ska lämnas utanför lokalen.</p><p>Regissören och manusförfattaren Gerta Gerwig (Lady Bird) har gjort sin egen tolkning av romanen Unga kvinnor, baserad på boken och andra verk av Louisa May Alcott. I filmen reflekterar författarens alter ego Jo March över sitt fiktiva liv. Gerwigs version av den älskade berättelsen om systrarna March, där de unga kvinnorna har beslutat att leva sina liv på sina egna villkor, är både tidlös och aktuell. Jo, Meg, Amy och Beth March spelas av Saoirse Ronan, Emma Watson, Florence Pugh och Eliza Scanlen. Timothée Chalamet spelar grannen Laurie, Laura Dern Marmee och Meryl Streep faster March.</p><p>Premiär: 31.01.2020<br>Åldersgräns: Tillåten<br>Längd: 135 min.<br>Regi: Greta Gerwig<br>Manus: Greta Gerwig<br>Medverkande: Saoirse Ronan, Eliza Scanlon, Meryl Streep, Emma Watson, Chris Cooper, Laura Dern, Louis Garrel, Tracy Letts, James Norton, Bob Odenkirk, Florence Pugh, Timothée Chalamet</p>", "en": "<p>Come to Vuotalo’s Small Hall with your baby to relax and watch the movie Little Women!</p><p>The hall will be dim and the sound of the film kept low so that babies can sleep or just relax on mattresses. Pushchairs and prams must be left outside the premises.</p><p>Director and screenwriter Greta Gerwig (Lady Bird) has made her own interpretation of the novel Little Women, basing the story on elements of Louisa May Alcott’s other works as well. In the film, the author’s alter ego Jo March reflects on her fictional life. In Gerwig’s version, the beloved story of the March sisters, in which four young women are determined to live their lives on their own terms, is both timeless and timely. Jo, Meg, Amy and Beth March are played by Saoirse Ronan, Emma Watson, Florence Pugh and Eliza Scanlen, respectively. Timothée Chalamet plays their neighbour Laurie, Laura Dern plays Marmee and Meryl Streep plays Aunt March.</p><p>Premiere: 31 January 2020<br>Age rating: suitable for all ages<br>Duration: 135 min<br>Directed by: Greta Gerwig<br>Written by: Greta Gerwig<br>Cast: Saoirse Ronan, Eliza Scanlon, Meryl Streep, Emma Watson, Chris Cooper, Laura Dern, Louis Garrel, Tracy Letts, James Norton, Bob Odenkirk, Florence Pugh, Timothée Chalamet</p>" }, "name": { "fi": "Vauvakino: Pikku naisia (S)", "sv": "Babybio: Unga kvinnor (S)", "en": "BabyKino: Little Women (S)" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68000/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68101", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494841, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-10T13:45:33.303788Z", "last_modified_time": "2026-02-10T13:45:33.303801Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783186.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494841/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-10T13:45:33.123195Z", "last_modified_time": "2026-03-20T01:13:25.540946Z", "date_published": null, "start_time": "2026-03-05T11:00:00Z", "end_time": "2026-03-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kulttuurikeskus Caisa täyttää 30 vuotta, ja merkkipaalun kunniaksi järjestämme juhlaseminaarin, joka tarkastelee moninaisuuden edistämistä kulttuurin keinoin kolmen vuosikymmenen ajalta.", "en": "Cultural Centre Caisa is celebrating its 30th anniversary, and to mark this milestone we are organising a seminar that looks at the promotion of diversity through culture over the past three decades." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FD2778FC43B0F7B34D94F07919304F6B/Caisan_juhlaseminaari_30_vuotta_moninaisuuden_edistamista_", "sv": "http://www.caisa.fi/sv/evenemang/event/FD2778FC43B0F7B34D94F07919304F6B/Caisan_juhlaseminaari_30_vuotta_moninaisuuden_edistamista_", "en": "http://www.caisa.fi/en/events/event/FD2778FC43B0F7B34D94F07919304F6B/Caisa_Anniversary_Seminar_30_Years_of_Promoting_Diversity" }, "description": { "fi": "<p>Kulttuurikeskus Caisa täyttää 30 vuotta, ja merkkipaalun kunniaksi järjestämme juhlaseminaarin, joka tarkastelee moninaisuuden edistämistä kulttuurin keinoin kolmen vuosikymmenen ajalta.</p><p>Seminaari tarjoaa näkökulmia Caisan pitkäjänteiseen työhön, sen vaikutuksiin ja tulevaisuuden suuntiin.</p><p>Päivän aikana kuullaan puheenvuoroja, keskusteluja ja esityksiä, joissa ääneen pääsevät sekä Caisan työntekijät, että yhteistyökumppanit eri vuosikymmeniltä. <br>Tilaisuus on avoin kaikille aiheesta kiinnostuneille, mutta vaatii ennakkoilmoittautumisen paikkamäärän rajallisuuden vuoksi.</p><p>Seminaarin juontaa Nosh A Lody, joka on Jäbät & Tunteet- ja SPRIG Co-perustaja (ent. Luokkakummit), musiikkialan toimija sekä yhteisö- ja kulttuuriarkkitehti.</p><p><b>Ohjelma:</b></p><p><b>13.00</b> Tervetuloa!<br>Caisan johtaja Cátia Suomalainen Pedrosa</p><p><b>13.05</b> Musiikkiesitys: Helsingin Queer-feministinen kuoro</p><p><b>13.15</b> Keskustelu: Caisan merkitys Helsingille <br>Keskustelijoina Helsingin kaupungin apulaispormestari Paavo Arhinmäki ja kulttuurijohtaja Mari Männistö</p><p><b>13.30</b> Keskustelu: Miten Caisa on 30 vuoden ajan ollut edistämässä moninaisuutta kulttuurin ja taiteen keinoin muuttuvassa yhteiskunnassa?<br>Keskustelemassa Caisan kulttuurituottajat Kitari Mayele, Teemu Savikurki, Faruk Lika sekä erityissuunnittelija Elisa Sarpo</p><p><b>14.00</b> Puheenvuoro: Caisa – syntyy marginaaleista <br>Caisan johtaja Cátia Suomalainen Pedrosa esittelee, mikä Caisa on nyt</p><p><b>14.20</b> Kahvitauko</p><p><b>14.40</b> Keskustelu: Caisan rooli taide- ja kulttuurikentällä <br>Keskustelemassa Caisan yhteistyökumppanit taiteilija Aino Laiho, muusikko Vasileios Katopodis ja Liikkeellä Marraskuussa -festivaalin taiteellinen johtaja Kerstin Schroth</p><p><b>15.20</b> Puheenvuoro: Tulevaisuudenkestävät <br>Taiteilijaprofessori ja vammaisaktivisti Jenni-Juulia Wallinheimo-Heimonen</p><p><b>15.50</b> Musiikkiesitys: Chiwalala & Saastamoinen</p><p><b>16.00–17.00</b> Verkostoitumista pienen purtavan äärellä <br> <br><b>Käytännön info</b></p><p>• Tilaisuus on maksuton.<br>•Paikkoja on rajoitetusti, joten ennakkoilmoittautuminen on pakollinen<br>•Ilmoittautuminen avautuu 11.2. ja sulkeutuu viimeistään 27.2., tai aiemmin, jos paikat täyttyvät<br>Ilmoittaudu lähettämällä sähköpostia: caisa.tiedotus@hel.fi ja huomioi alla olevat asiat</p><p>Ilmoittautumisen yhteydessä voit kertoa lyhyesti seuraavista asioista:<br>• tulkkauksen toiveesta (puhuttu suomi/englanti, suomalainen viittomakieli)<br>• pyörätuolin käytöstä, paikasta avustajalle tai opaskoiralle<br>• muita saavutettavuusjärjestelyjen toiveista <br>• Tarjoiluissa huomioidaan yleisimmät ruokarajoitteet (mm. laktoositon, gluteeniton, kasvis/vegaani). Ilmoita vain vakavat allergiat.</p><p><b>Kielet ja tulkkaus</b><br>• Seminaarin kielet ovat suomi ja englanti<br>• Tulkkaus on saatavilla suomeksi, englanniksi sekä suomalaisella <br>• Kerrothan ilmoittautumisen yhteydessä, mitä tulkkausta tarvitset</p><p><b>Kenelle seminaari sopii?</b><br>• Kaikille, jotka ovat kiinnostuneita taiteesta, kulttuurista ja moninaisuudesta</p><p><b>Tilan saavutettavuus</b><br>• Tilan valaistus saattaa olla melko himmeä, muttei täysin pimeä<br>• Tilassa on induktiosilmukka ja lainattavia kuulosuojaimia<br>• Caisassa on neljä sukupuolineutraalia wc-tilaa sekä samassa kerroksessa kiinteistön esteetön WC<br>• Caisa on pääosin fyysisesti esteetön. Lisätiedot löytyvät palvelukartasta: palvelukartta.hel.fi</p><p><b>Turvallisempi tila</b><br>Tilaisuus noudattaa Caisan turvallisemman tilan periaatteita.<br><u><a href=\"https://www.caisa.fi/fi/turvallisemman_tilan_periaatteet\">Lue Caisan turvallisemman tilan periaatteet</a></u></p><p><b>Tarjoilut</b><br>Seminaarissa on tarjolla kevyttä tarjoilua.<br>Huomioimme tarjoiluissa yleisimmät ruokarajoitteet, kuten laktoosittomat ja gluteenittomat vaihtoehdot sekä kasvis- ja vegaanitarjoilun.<br>Emme kerää ilmoittautumisen yhteydessä yksityiskohtaisia erikoisruokavalioita.</p><p>Jos sinulla on vakava allergia, josta meidän on hyvä olla tietoinen turvallisuussyistä, voit mainita siitä ilmoittautumisen yhteydessä.</p>", "en": "<p>Cultural Centre Caisa is celebrating its 30th anniversary, and to mark this milestone we are organising a seminar that looks at the promotion of diversity through culture over the past three decades.</p><p>The seminar offers perspectives on Caisa’s long-term work, its impact, and future directions.</p><p>Throughout the afternoon, the programme will include talks, discussions and performances featuring both Caisa’s staff and collaboration partners from different decades. The event is open to everyone interested but requires advance registration due to limited capacity.</p><p>The seminar is hosted by Nosh A. Lody, co‑founder of Jäbät & Tunteet and SPRIG (formerly Luokkakummit), music industry professional, and community and culture architect.</p><p><b>Programme</b></p><p>13:00 Welcome!<br>Cátia Suomalainen Pedrosa, Director of Caisa</p><p>13:05 Performance: Helsinki Queer-Feminist Choir</p><p>13:15 Discussion: The importance of Caisa to Helsinki<br>Participants: Deputy Mayor of the City of Helsinki Paavo Arhinmäki and Helsinki City’s Culture director Mari Männistö</p><p>13:30 Discussion: How has Caisa promoted diversity through culture and the arts over the past 30 years in a changing society?<br>Caisa’s cultural producers Kitari Mayele, Teemu Savikurki and Faruk Lika, together with special planner Elisa Sarpo</p><p>14:00 Presentation: Caisa – Originating from the margins<br>Caisa’s Director, Cátia Suomalainen Pedrosa, presents what Caisa is today</p><p>14:20 Coffee Break</p><p>14:40 Discussion: Caisa's role in the field of arts and culture<br>Participants: Caisa’s collaborators artist Aino Laiho, musician Vasileios Katopodis, and Kerstin Schroth, Artistic Director of the festival Moving in November.</p><p>15:20 Keynote: Future-resilient<br>Artist Professor and disability activist Jenni‑Juulia Wallinheimo‑Heimonen.</p><p>15.50 Music: Chiwalala & Saastamoinen</p><p>16:00–17:00 Networking with light refreshments</p><p><b>Practical Information</b></p><p>•The event is free of charge<br>•Capacity is limited, so advance registration is required<br>•Registration starts on the 11th and closes on 27th of February, or earlier if the event becomes fully booked</p><p>Please register by emailing caisa.tiedotus@hel.fi and include the information listed below.</p><p><b>When registering, you may briefly indicate about the following:</b></p><p>• interpreting (Finnish/English, Finnish Sign Language)<br>• a wheelchair space, seat for assistant, or accommodating guide/assistance dog<br>• other accessibility arrangements<br>• For catering, the most common dietary needs will be taken into account (e.g. lactose-free, gluten-free, vegetarian/vegan)</p><p>Please only state serious allergies that are relevant for safety.</p><p><b>Languages and Interpretation</b><br>• The seminar languages are Finnish and English<br>• Interpretation is available in Finnish, English and Finnish Sign Language <br>• Please indicate the type of interpretation you need when registering</p><p><b>Who is the seminar for?</b><br>• Anyone interested in art, culture and diversity.</p><p><b>Venue Accessibility</b><br>• Lighting in the space will be relatively dim but not fully dark.<br>• The venue is equipped with a hearing loop system and loanable hearing protectors.<br>• Caisa has four gender-neutral restrooms and an accessible restroom on the same floor.<br>• Caisa is largely physically accessible. More information can be found at: palvelukartta.hel.fi</p><p><b>Safer Space</b><br><u><a href=\"https://www.caisa.fi/en/principles_for_safer_space\">The event follows Caisa’s safer space principles</a></u></p><p><b>Catering</b><br>Light refreshments will be served at the seminar.<br>We will provide options that take into account the most common dietary needs, such as lactose-free, gluten-free, vegetarian and vegan choices.<br>We do not collect detailed individual dietary restrictions.</p><p>If you have a severe allergy that may affect safety, please mention this when registering.</p>" }, "name": { "fi": "Caisan juhlaseminaari – 30 vuotta moninaisuuden edistämistä", "sv": "Caisan juhlaseminaari – 30 vuotta moninaisuuden edistämistä", "en": "Caisa Anniversary Seminar – 30 Years of Promoting Diversity" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68111", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:733/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1495956, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-02T08:12:52.852184Z", "last_modified_time": "2026-03-02T08:12:52.852196Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785551.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1495956/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-02T08:12:52.673475Z", "last_modified_time": "2026-03-20T01:13:25.362265Z", "date_published": null, "start_time": "2026-03-05T11:00:00Z", "end_time": "2026-03-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kulttuurikeskus Caisa täyttää 30 vuotta, ja merkkipaalun kunniaksi järjestämme juhlaseminaarin, joka tarkastelee moninaisuuden edistämistä kulttuurin keinoin kolmen vuosikymmenen ajalta.", "en": "Cultural Centre Caisa is celebrating its 30th anniversary, and to mark this milestone we are organising a seminar that looks at the promotion of diversity through culture over the past three decades." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/C0FDD61923871B7565E37D380611CFF1/Caisan_juhlaseminaari_30_vuotta_moninaisuuden_edistamista", "sv": "http://www.caisa.fi/sv/evenemang/event/C0FDD61923871B7565E37D380611CFF1/Caisan_juhlaseminaari_30_vuotta_moninaisuuden_edistamista", "en": "http://www.caisa.fi/en/events/event/C0FDD61923871B7565E37D380611CFF1/Caisa_Anniversary_Seminar_30_Years_of_Promoting_Diversity" }, "description": { "fi": "<p>Kulttuurikeskus Caisa täyttää 30 vuotta, ja merkkipaalun kunniaksi järjestämme juhlaseminaarin, joka tarkastelee moninaisuuden edistämistä kulttuurin keinoin kolmen vuosikymmenen ajalta.</p><p>Seminaari tarjoaa näkökulmia Caisan pitkäjänteiseen työhön, sen vaikutuksiin ja tulevaisuuden suuntiin.</p><p>Päivän aikana kuullaan puheenvuoroja, keskusteluja ja esityksiä, joissa ääneen pääsevät sekä Caisan työntekijät, että yhteistyökumppanit eri vuosikymmeniltä.</p><p>Tilaisuus on avoin kaikille aiheesta kiinnostuneille, mutta vaatii ennakkoilmoittautumisen paikkamäärän rajallisuuden vuoksi.</p><p>Seminaarin juontaa Nosh A Lody, joka on Jäbät & Tunteet- ja SPRIG Co-perustaja (ent. Luokkakummit), musiikkialan toimija sekä yhteisö- ja kulttuuriarkkitehti.</p><p>Ohjelma:</p><p>13.00 Tervetuloa!<br>Caisan johtaja Cátia Suomalainen Pedrosa</p><p>13.05 Musiikkiesitys: Helsingin Queer-feministinen kuoro</p><p>13.15 Keskustelu: Caisan merkitys Helsingille <br>Keskustelijoina Helsingin kaupungin apulaispormestari Paavo Arhinmäki ja kulttuurijohtaja Mari Männistö</p><p>13.30 Keskustelu: Miten Caisa on 30 vuoden ajan ollut edistämässä moninaisuutta kulttuurin ja taiteen keinoin muuttuvassa yhteiskunnassa?<br>Keskustelemassa Caisan kulttuurituottajat Kitari Mayele, Teemu Savikurki, Faruk Lika sekä erityissuunnittelija Elisa Sarpo.</p><p>14.00 Puheenvuoro: Caisa – syntyy marginaaleista <br>Caisan johtaja Cátia Suomalainen Pedrosa esittelee, mikä Caisa on nyt.</p><p>14.20 Kahvitauko</p><p>14.40 Keskustelu: Caisan rooli taide- ja kulttuurikentällä <br>Keskustelemassa Caisan yhteistyökumppanit taiteilija Aino Laiho, muusikko Vasileios Katopodis ja Liikkeellä Marraskuussa -festivaalin taiteellinen johtaja Kerstin Schroth.</p><p>15.20 Puheenvuoro: Tulevaisuudenkestävät <br>Taiteilijaprofessori ja vammaisaktivisti Jenni-Juulia Wallinheimo-Heimonen.</p><p>15.50 Musiikkiesitys: Chiwalala & Saastamoinen</p><p>16.00–17.00 Verkostoitumista pienen purtavan äärellä <br> <br>Käytännön info</p><p>Ilmoittautuminen</p><p>•\tTilaisuus on maksuton.<br>•\tPaikkoja on rajoitetusti, joten ennakkoilmoittautuminen on pakollinen.<br>•\tIlmoittautuminen avautuu 11.2. ja sulkeutuu viimeistään 27.2., tai aiemmin, jos paikat täyttyvät.<br>\tIlmoittaudu suoraan osoitteeseen caisa.tiedotus@hel.fi ja huomioi alla olevat asiat.</p><p>-> Ilmoittautumisen yhteydessä voit kertoa lyhyesti seuraavista asioista:</p><p>•\ttulkkauksen toiveesta (puhuttu suomi/englanti, suomalainen tai englantilainen viittomakieli)<br>•\tpyörätuolin käytöstä, paikasta avustajalle tai opaskoiralle<br>•\tmuita saavutettavuusjärjestelyjen toiveista <br>•\tTarjoiluissa huomioidaan yleisimmät ruokarajoitteet (mm. laktoositon, gluteeniton, kasvis/vegaani). Ilmoita vain vakavat allergiat.<br>Kielet ja tulkkaus<br>•\tSeminaarin kielet ovat suomi ja englanti.<br>•\tTulkkaus on saatavilla suomeksi, englanniksi sekä suomalaisella ja englantilaisella viittomakielellä.<br>•\tKerrothan ilmoittautumisen yhteydessä, mitä tulkkausta tarvitset.</p><p>Kenelle seminaari sopii?</p><p>•\tKaikille, jotka ovat kiinnostuneita taiteesta, kulttuurista ja moninaisuudesta.<br>Tilan saavutettavuus<br>•\tTilan valaistus saattaa olla melko himmeä, muttei täysin pimeä.<br>•\tTilassa on induktiosilmukka ja lainattavia kuulosuojaimia.<br>•\tCaisassa on neljä sukupuolineutraalia wc-tilaa sekä samassa kerroksessa kiinteistön esteetön WC.<br>•\tCaisa on pääosin fyysisesti esteetön. Lisätiedot löytyvät palvelukartasta: palvelukartta.hel.fi</p><p>Turvallisempi tila</p><p>Tilaisuus noudattaa Caisan turvallisemman tilan periaatteita: Caisa – Turvallisemman tilan periaatteet.<br>https://www.caisa.fi/fi/turvallisemman_tilan_periaatteet</p><p>Tarjoilut</p><p>Seminaarissa on tarjolla kevyttä tarjoilua.<br>Huomioimme tarjoiluissa yleisimmät ruokarajoitteet, kuten laktoosittomat ja gluteenittomat vaihtoehdot sekä kasvis- ja vegaanitarjoilun.</p><p>Emme kerää ilmoittautumisen yhteydessä yksityiskohtaisia erikoisruokavalioita.</p><p>Jos sinulla on vakava allergia, josta meidän on hyvä olla tietoinen turvallisuussyistä, voit mainita siitä ilmoittautumisen yhteydessä.</p>", "en": "<p>Cultural Centre Caisa is celebrating its 30th anniversary, and to mark this milestone we are organising a seminar that looks at the promotion of diversity through culture over the past three decades.</p><p>The seminar offers perspectives on Caisa’s long-term work, its impact, and future directions.</p><p>Throughout the afternoon, the programme will include talks, discussions and performances featuring both Caisa’s staff and collaboration partners from different decades. The event is open to everyone interested but requires advance registration due to limited capacity.</p><p>The seminar is hosted by Nosh A. Lody, co‑founder of Jäbät & Tunteet and SPRIG (formerly Luokkakummit), music industry professional, and community and culture architect.</p><p>Programme</p><p>13:00 Welcome!<br>Cátia Suomalainen Pedrosa, Director of Caisa<br>13:05 Performance: Helsinki Queer-Feminist Choir<br>13:15 Discussion: The importance of Caisa to Helsinki<br>Participants: Deputy Mayor of the City of Helsinki Paavo Arhinmäki and Helsinki City’s Culture director Mari Männistö</p><p>13:30 Discussion: How has Caisa promoted diversity through culture and the arts over the past 30 years in a changing society?<br>Caisa’s cultural producers Kitari Mayele, Teemu Savikurki and Faruk Lika, together with special planner Elisa Sarpo</p><p>14:00 Presentation: Caisa – Originating from the margins<br>Caisa’s Director, Cátia Suomalainen Pedrosa, presents what Caisa is today</p><p>14:20 Coffee Break</p><p>14:40 Discussion: Caisa's role in the field of arts and culture<br>Participants: Caisa’s collaborators artist Aino Laiho, musician Vasileios Katopodis, and Kerstin Schroth, Artistic Director of the festival Moving in November.</p><p>15:20 Keynote: Future-resilient<br>Artist Professor and disability activist Jenni‑Juulia Wallinheimo‑Heimonen.</p><p>15.50 Music: Chiwalala & Saastamoinen</p><p>16:00–17:00 Networking with light refreshments</p><p>Practical Information</p><p>Registration</p><p>•\tThe event is free of charge.<br>•\tCapacity is limited, so advance registration is required.<br>•\tRegistration starts on the 11th and closes on 27th of February, or earlier if the event becomes fully booked.<br>-> Please register by emailing caisa.tiedotus@hel.fi and include the information listed below.<br>When registering, you may briefly indicate about the following:<br>•\tinterpreting (Finnish/English, Finnish Sign Language, or British Sign Language)<br>•\ta wheelchair space, seat for assistant, or accommodating guide/assistance dog<br>•\tother accessibility arrangements<br>•\tFor catering, the most common dietary needs will be taken into account (e.g. lactose-free, gluten-free, vegetarian/vegan).<br>Please only state serious allergies that are relevant for safety.<br>Languages and Interpretation<br>•\tThe seminar languages are Finnish and English.<br>•\tInterpretation is available in Finnish, English, Finnish Sign Language and British Sign Language.<br>•\tPlease indicate the type of interpretation you need when registering.</p><p>Who is the seminar for?<br>•\tAnyone interested in art, culture and diversity.</p><p>Venue Accessibility<br>•\tLighting in the space will be relatively dim but not fully dark.<br>•\tThe venue is equipped with a hearing loop system and loanable hearing protectors.<br>•\tCaisa has four gender-neutral restrooms and an accessible restroom on the same floor.<br>•\tCaisa is largely physically accessible. More information can be found at: palvelukartta.hel.fi</p><p>Safer Space<br>The event follows Caisa’s safer space principles: Caisa – Safer Space Guidelines.<br>https://www.caisa.fi/en/principles_for_safer_space</p><p>Catering</p><p>Light refreshments will be served at the seminar.<br>We will provide options that take into account the most common dietary needs, such as lactose-free, gluten-free, vegetarian and vegan choices.<br>We do not collect detailed individual dietary restrictions.<br>If you have a severe allergy that may affect safety, please mention this when registering.</p>" }, "name": { "fi": "Caisan juhlaseminaari – 30 vuotta moninaisuuden edistämistä", "sv": "Caisan juhlaseminaari – 30 vuotta moninaisuuden edistämistä", "en": "Caisa Anniversary Seminar – 30 Years of Promoting Diversity" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68111/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68122", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-18T13:13:30.651097Z", "last_modified_time": "2026-02-18T13:13:30.651124Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785670.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-18T13:13:30.515963Z", "last_modified_time": "2026-03-20T01:13:25.238349Z", "date_published": null, "start_time": "2026-03-05", "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, "short_description": { "fi": "Intersections on Alex Markwithin yksityisnäyttely, joka tarkastelee jännitettä ja päällekkäisyyttä abstraktin ja esittävän, digitaalisen ja fyysisen sekä rakenteiden ja hajoamisen välillä.", "en": "Where Painting Meets the Algorithm: Alex Markwith’s Intersections" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2F2DA2E0EB946290F707AC68B9D68900/_Alex_Markwith_Intersections", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2F2DA2E0EB946290F707AC68B9D68900/Alex_Markwith_Intersections", "en": "http://www.malmitalo.fi/en/events/event/2F2DA2E0EB946290F707AC68B9D68900/_Alex_Markwith_Intersections" }, "description": { "fi": "<p>Intersections on Alex Markwithin yksityisnäyttely, joka tarkastelee jännitettä ja päällekkäisyyttä abstraktin ja esittävän, digitaalisen ja fyysisen sekä rakenteiden ja hajoamisen välillä.</p><p>Maalaukset ovat kerroksellisia ja voimakkaasti teksturoituja, ja niissä näkyy usein repeämisen, eroosion ja rappeutumisen merkkejä. Markwithille kangas on samanaikaisesti kuvapinta, esine ja toiminnan näyttämö.</p><p>Geometriset ruudukot viittaavat logiikkaan tai rytmiin, joita rikkovat ilmaisulliset siveltimenvedot, valumat ja ajoittaiset viillot pinnan läpi. Kuvia ilmestyy lineaaristen matriisien sisälle tai niiden päälle siirrettyinä; teoksissa yhdistyvät ihmiskeho, psykologia ja arkkitehtuuri.</p><p>Toistuvat kuvalliset elementit, kuten shakkinappulat ja pääkallot, käsittelevät vallan, konfliktin, kuolevaisuuden ja muutoksen teemoja.</p><p>Markwith työskentelee kankaan ja tietokoneen välillä. Taiteilija on jo vuosia syöttänyt omia maalauksiaan tekoälylle, joka luo niistä uusia kuvia. Tämän jälkeen hän muokkaa yhteistyönä syntyneitä kuvia Photoshopissa. Nämä vääristyneet, kyberneettisesti muuntuneet visuaaliset kuvat tulostetaan paperille ja lisätään uusiin maalauksiin, joissa ne sulautuvat ekspressionistiseen sivellintyöskentelyyn, peittyvät sen alle tai hautautuvat sen kerroksiin. Maalaukset kehittyvät vähitellen. Sattumalla, spontaaniudella ja improvisaatiolla on keskeinen rooli jokaisessa työvaiheessa.</p><p>Valmis teos heijastaa maalaamisen käsintehtyä luonnetta ja korostaa taiteellisen toimijuuden merkitystä maailmassa, jota algoritmit hallitsevat yhä enemmän.</p><p>Miten tekoäly muokkaa tai vääristää taiteellista tarkoitusta? Mitä merkitsisi, jos tekoäly olisi aidosti luova? Markwith tarkastelee teknologian roolia luovassa työssä sekä siihen liittyviä laajempia filosofisia kysymyksiä, kuten tekijyyteen, etiikkaan ja kontrolliin liittyviä huolenaiheita digitaalisella aikakaudella.</p><p>Näyttelyn avajaiset järjestetään ke 4.3. klo 17 Malmitalon galleriassa.</p><p>Tervetuloa!</p>", "en": "<p>Where Painting Meets the Algorithm: Alex Markwith’s Intersections</p><p>Malmitalo Gallery presents Intersections, a solo exhibition by Helsinki-based visual artist Alex Markwith, on view March 5–28, 2026, at Cultural Center Malmitalo in Helsinki.</p><p>The opening reception will be held on Wednesday, March 4, from 5 to 7 PM.</p><p>Intersections explores the tension and overlap between digital and physical processes.</p><p>Markwith’s paintings are characterized by layered surfaces and textures suggesting damage, erosion and decay.</p><p>Geometric grids and linear structures are disrupted by expressive brushwork, drips, and incisions, creating dynamic compositions that combine abstraction and representation.</p><p>Recurring symbols such as chess pieces and skulls address themes of power, conflict, mortality, and transformation.</p><p>Central to Markwith’s practice is the dialogue between traditional painting and emerging technologies. At times, the artist feeds his own artwork to artificial intelligence to generate new images, which are digitally altered, printed, and physically incorporated into new paintings. The finished works celebrate the hand-made nature of painting and highlight the role of artistic agency in a world increasingly ruled by algorithms.</p><p>Alex Markwith is a visual artist based in Helsinki. Originally from the United States, he lived in New York City for ten years and holds a BFA from the Rhode Island School of Design. He is a member of the Finnish Painters’ Union, Helsinki Artists’ Association and Globe Art Point. His work has been shown in over 60 exhibitions internationally, including in Paris, Berlin, Helsinki, New York, Los Angeles, and Dubai and is included in the permanent collection of the Museum of Fine Arts, Houston, and numerous private collections.</p><p>The exhibition is produced in cooperation with Helsinki Artists’ Association with support from Taike and the City of Helsinki.</p><p>The exhibition opening will take place on Wednesday, March 4 at 5 PM at the Malmitalo Gallery. Welcome!</p>" }, "name": { "fi": "Alex Markwith: Intersections – Näyttely", "sv": "Alex Markwith: Intersections – Näyttely", "en": "Alex Markwith: Intersections – Näyttely" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68001", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494591, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T13:13:00.488754Z", "last_modified_time": "2026-01-21T13:13:00.488770Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778316.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494591/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T13:13:00.352196Z", "last_modified_time": "2026-03-20T01:13:24.363626Z", "date_published": null, "start_time": "2026-03-04T14:00:00Z", "end_time": "2026-03-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, "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." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DE1614583C5AB762B382F2B4C0F2FC12/Luova_hetki_-_avoin_taidepaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/DE1614583C5AB762B382F2B4C0F2FC12/Kreativ_stund_oppen_konstworkshop", "en": "http://www.vuotalo.fi/en/events/event/DE1614583C5AB762B382F2B4C0F2FC12/Creative_Moment_Open_Art_Workshop" }, "description": { "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Luodaan pieniä esineitä, esimerkiksi lasinalustoja tai kirjanmerkkejä, silittämällä yhteen tarpeettomia muovipusseja. Alle 8-vuotiaat yhdessä aikuisen kanssa.<br>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille. Työpajoja ohjaa Chloé Mahy-Hulkko.</p><p>Kevään ohjelma</p><p>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</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>Vi skapar små föremål, till exempel glasunderlägg eller bokmärken, genom att stryka ihop onödiga plastpåsar. Barn under 8 år tillsammans med en vuxen.</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>We will create small items, such as coasters or bookmarks, by ironing together unneeded plastic bags. Children under the age of 8 can participate with an adult.</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 workshops are led by Chloé Mahy-Hulkko.</p><p>Language: Finnish, English, French</p><p>The art workshops are free of charge!</p>" }, "name": { "fi": "Luova hetki - avoin taidepaja – Muovipussit uuteen käyttöön!", "sv": "Kreativ stund – öppen konstworkshop – Återanvänd plastpåsar!", "en": "Creative Moment – Open Art Workshop – New use for plastic bags!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68001/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67873", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494507, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T12:13:30.586782Z", "last_modified_time": "2026-01-16T12:13:30.586800Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780526.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494507/?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:30.463283Z", "last_modified_time": "2026-03-20T01:13:23.673349Z", "date_published": null, "start_time": "2026-03-04T08:00:00Z", "end_time": "2026-03-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, "short_description": { "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/88CD7CA5441838461183F2283A084BC4/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/88CD7CA5441838461183F2283A084BC4/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/88CD7CA5441838461183F2283A084BC4/Art_games_a_space_for_play" }, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor. <br>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>" }, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67873/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68137", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494930, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T06:12:59.784204Z", "last_modified_time": "2026-02-24T06:12:59.784216Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785137.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494930/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-24T06:12:59.617624Z", "last_modified_time": "2026-03-20T01:13:23.509628Z", "date_published": null, "start_time": "2026-03-04T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/3CC9665135B43787C8AD2CFC2A9403C4/Dagisbio_Solen_ar_en_gul_giraff", "sv": "http://www.vuotalo.fi/sv/evenemang/event/3CC9665135B43787C8AD2CFC2A9403C4/Dagisbio_Solen_ar_en_gul_giraff", "en": "http://www.vuotalo.fi/en/events/event/3CC9665135B43787C8AD2CFC2A9403C4/Dagisbio_Solen_ar_en_gul_giraff" }, "description": { "fi": "<p>Aurinko on keltainen kirahvi</p><p>Teksti: Jaana Wahlforss. Animaatio: Antonia Ringbom. Ohjaus: Jaana Wahlforss ja Antonia Ringbom. Musiikki: Tom Salomonsen. Kertoja: Asko Sarkola. Kesto 50 min. S. Kieli:ruotsi.</p><p>Vapaa pääsy mutta pakollinen paikanvaraus: Kultus.hel.fi</p>", "sv": "<p>Mikael Wahlforss har under årens lopp initierat och producerat animationsfilmer med tematiska innehåll. I mitten av 1990-talet beslöt han och Jaana Wahlforss att Epidem i fortsättningen skulle rikta in sig på produktion av tankeväckande animationsfilmer för barn. Idén var att utveckla koncept och idéer och sedan samproducera filmerna med olika finländska och internationella animationsstudior. Wahlforss producerade sammanlagt 36 kortfilmer om den Gula Giraffen (idé, manus och regi Jaana Wahlforss/grafik och regi Antonia Ringbom) där varje del innehöll en dikt, bla från Afrika och Asien, Syd- och Nord-Amerika samt olika Europeiska länder. Serien erhöll bl.a. internationella Unicefs pris.</p><p>Den här filmen från 1998 innehåller 10 st. 5 min. filmsnuttar, sammanlagd längd 50 min. Filmerna är; 1. Barnets dröm, 2. Trädet, 3. Oj, någonstans ifrån..., 4. Porträtt av en fågel, 5. Sam, 6. Bonguemba, 7. Mina pappa, din pappa, 8. De två systrarna, 9. Lekfulla moln, 10. Nocturne.</p><p>Text: Jaana Wahlforss. Animation: Antonia Ringbom. Regi: Jaana Wahlforss och Antonia Ringbom. Musik: Tom Salomonsen. Berättare: Asko Sarkola. Barntillåten. Språk: svenska.</p><p>Gratis deltagande men obligatorisk platsbokning via Kultus.hel.fi.</p>" }, "name": { "fi": "Dagisbio: Solen är en gul giraff", "sv": "Dagisbio: Solen är en gul giraff", "en": "Dagisbio: Solen är en gul giraff" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68117", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T11:13:19.918369Z", "last_modified_time": "2026-02-17T11:13:19.918389Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785600.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T11:13:19.785312Z", "last_modified_time": "2026-03-20T01:13:23.046820Z", "date_published": null, "start_time": "2026-03-03T15: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, "short_description": { "fi": "Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8773C15CCCCD5F736FA8CFA89AB25D4B/Eliokuntalaisten_manifesti_Espan_lavalla", "sv": "http://www.espanlava.fi/sv/evenemang/event/8773C15CCCCD5F736FA8CFA89AB25D4B/Eliokuntalaisten_manifesti_Espan_lavalla", "en": "http://www.espanlava.fi/en/events/event/8773C15CCCCD5F736FA8CFA89AB25D4B/Eliokuntalaisten_manifesti_Espan_lavalla" }, "description": { "fi": "<p>Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta.</p><p>Eliökuntalaisten manifesti kutsuu kaikenikäiset mukaan maksuttomiin tapahtumiin, esityksiin ja kohtaamisiin eri puolilla kaupunkia.</p><p>Kello 17.10 Eliökuntalaisten manifesti liikkuu kohti Espan lavaa Helsingin kaupunginmuseolta <b>Aura of Puppetsin</b> jättinukke Varpusen johdolla. Luvassa on liikkuva installaatio ja elegia uhanalaiselle varpuselle. Luvassa on liikkuva installaatio ja elegia uhanalaiselle varpuselle. Varpusta saattavat Teatterikoulu ILMI Ö:n taiteen perusopetuksen lapset ja nuoret. Perillä Espan lavalla ollaan noin kello 17.25.</p><p>Kello 17.15 alkaen Espan lavan läheisyydessä on Seikkailutaidekoulun työpaja, jossa tehdään postikortteja eliökuntalaisille.</p><p>Kello 17.30 nähdään Eliökuntalaisten manifestin loppuhuipennus Espan lavalla!<br>Tervetuliaispuhe: liito-oravat Papana ja Norkko<br>Manifestin tulkitsee näyttelijä <b>Seela Sella</b><br>Manifestin luovutus Helsingin kulttuurijohtaja<b>Mari Männistölle</b><br><b>Mimmit</b> esittää maistiaisia uudelta Luonnonsuojelun supersankarit -albumilta.<br>Harmonikkataiteilija, säveltäjä <b>Kimmo Pohjonen</b> esittää kappaleet Ahneuden humppa ja Luonnon voimaa.<br>Liito-oravat jututtavat Eliökuntalaisten manifestin kirjoittajaa, kirjailija Anni Kytömäkeä.<br>Seikkailutaidekoulun työpaja: Postikortti eliökuntalaisille <br>Vapaa pääsy</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>" }, "name": { "fi": "Eliökuntalaisten manifesti Espan lavalla", "sv": "Eliökuntalaisten manifesti Espan lavalla", "en": "Eliökuntalaisten manifesti Espan lavalla" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68117/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68080", "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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494796, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-09T07:13:06.767570Z", "last_modified_time": "2026-02-09T07:13:06.767584Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777513.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494796/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-09T07:13:06.623608Z", "last_modified_time": "2026-03-20T01:13:22.906203Z", "date_published": null, "start_time": "2026-03-03T12:00:00Z", "end_time": "2026-03-03T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule mukaan esitystaiteen työpajaan, jossa Eliökuntalaisten manifestin hengessä niin isot kuin pienetkin olevaiset koetaan yhdessä!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/43E5809674FFA297CEEF72AA2E5C5313/Eliokuntalaisten_tyopaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/43E5809674FFA297CEEF72AA2E5C5313/Eliokuntalaisten_tyopaja", "en": "http://www.vuotalo.fi/en/events/event/43E5809674FFA297CEEF72AA2E5C5313/Eliokuntalaisten_tyopaja" }, "description": { "fi": "<p>Tule mukaan esitystaiteen työpajaan, jossa Eliökuntalaisten manifestin hengessä niin isot kuin pienetkin olevaiset koetaan yhdessä!</p><p>Työpaja perustuu Toisissa tiloissa -ryhmän harjoitteisiin, joissa eläydytään yhdessä tehtävien kehollisten harjoitteiden avulla eliökuntalaisten maailmaan; millaista on uida kalaparvessa, kasvattaa juuret kuin puu tai olla yhteydessä rihmastojen kautta kuin sienet? Entä miten jäävuoret liikkuvat?</p><p>Harjoitteet perustuvat yksinkertaisiin ruumiintekniikoihin ja mielikuvitteluun. Työpajan lopuksi on pieni keskustelu.</p><p>Kenelle? Työpaja on suunnattu kaikenikäisille aikuisille ja yli 12-vuotiaille nuorille. Voit tulla sellaisena kuin olet; aikaisempaa kokemusta ryhmän työskentelystä ei tarvita.</p><p>Missä ja milloin? Vuotalon Vuosalissa 3.3.2026 klo 14–15.</p><p>Mitä mukaan? Päälle vaatteet, joissa on mukava liikkua.</p><p>Ilmoittaudu mukaan 26.2. mennessä salla.fornaro@hel.fi tai soita 040 537 1520!</p><p>Työpajan kieli: suomi</p><p>Hinta: 0 €</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><p>Lue lisää Toisissa tiloissa-ryhmästä: https://toisissatiloissa.net</p>" }, "name": { "fi": "Eliökuntalaisten työpaja", "sv": "Eliökuntalaisten työpaja", "en": "Eliökuntalaisten työpaja" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68080/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68115", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494882, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-17T07:13:22.886618Z", "last_modified_time": "2026-02-17T07:13:22.886633Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781393.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494882/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-17T07:13:22.700686Z", "last_modified_time": "2026-03-20T01:13:22.776419Z", "date_published": null, "start_time": "2026-03-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, "short_description": { "fi": "Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5FFB8E2ACD4180713ACF5AA049F08F6E/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5FFB8E2ACD4180713ACF5AA049F08F6E/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla", "en": "http://www.kanneltalo.fi/en/events/event/5FFB8E2ACD4180713ACF5AA049F08F6E/Eliokuntalaisten_manifesti_Matajoen_Mutterilaiturilla" }, "description": { "fi": "<p>Maailman luontopäivänä 3.3.2026 Helsingissä voi kokea taidetta, joka puhuu luonnon puolesta.</p><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>" }, "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, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68115/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67435", "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: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:733/?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: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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494075, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:12:56.390747Z", "last_modified_time": "2025-12-04T13:12:56.390762Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781254.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494075/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T13:12:56.259053Z", "last_modified_time": "2026-03-20T01:13:22.430513Z", "date_published": null, "start_time": "2026-03-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, "short_description": { "fi": "Tällä kertaa Kanneltalossa käydään paneelikeskustelu kirjailijan työstä kolmen kirjailijan kanssa.", "sv": "Den här gången blir det en paneldiskussion om författarens arbete med tre författare på Gamlasgården.", "en": "This time, Kanneltalo will host a panel discussion on the work of a writer with three authors." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/20DA99CE341C3CCA8C99BD60A7A5D1BB/Kirjailijavieraina_Juha_Itkonen_Helmi_Kekkonen_ja_Jani_Saxell", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/20DA99CE341C3CCA8C99BD60A7A5D1BB/Forfattarbesok_Juha_Itkonen_Helmi_Kekkonen_och_Jani_Saxell", "en": "http://www.kanneltalo.fi/en/events/event/20DA99CE341C3CCA8C99BD60A7A5D1BB/Guest_authors_Juha_Itkonen_Helmi_Kekkonen_and_Jani_Saxell" }, "description": { "fi": "<p>Tällä kertaa Kanneltalossa käydään paneelikeskustelu kirjailijan työstä kolmen kirjailijan kanssa.</p><p>Helmi Kekkonen ja Juha Itkonen keskustelevat Jani Saxellin johdolla. Helmi Kekkosen uusin teos Näin minä sen kirjoitin (2025), Juha Itkosen Kjell Westön kanssa yhteistyössä kirjoitettu 7 + 7 - Levottoman ajan kirjeitä (2019) sekä Jani Saxellin Aiheiden kirja (2024) ovat keskustelun ytimessä.</p><p>Juha Itkonen on yksi kotimaisen nykykirjallisuuden näkyvimmistä nimistä. Jo esikoisromaanillaan Myöhempien aikojen pyhiä (2003) lukijat valloittaneen kirjailijan tuotantoon kuuluu romaanien lisäksi mm. kirjeenvaihtokirja, näytelmiä ja audiodraama. Itkonen on saanut kirjallisuuden valtionpalkinnon, Kalevi Jäntin - ja Veijo Meri -palkinnon sekä ollut kaksi kertaa ehdolla Finlandia-palkinnon saajaksi. Kiitetyn kirjailijan ja aktiivisen yhteiskunnallisen keskustelijan Teoriani perheestä (2023) ilmestyi painetun kirjan lisäksi myös Itkosen itsensä lukemana äänikirjana. Sivuraide-audiodraama ilmestyi vuonna 2024.</p><p>Helmi Kekkonen on kirjailija, toimittaja ja luovan kirjoittamisen opettaja. Kekkonen on koulutukseltaan filosofian maisteri. Hän opiskeli pääaineena yleistä kirjallisuustiedettä ja sivuaineena luovaa kirjoittamista Turun yliopistossa. Kekkosen kolmas romaani Vieraat (2016) oli Runeberg-palkintoehdokkaana vuonna 2017. Hänen viides romaaninsa Liv! oli kaunokirjallisuuden Finlandia-palkintoehdokkaana vuonna 2024.</p><p>Jani Saxell on kirjailija, toimittaja ja kirjallisuuden opettaja. Hänen teoksilleen on ominaista yhteiskunnallisuus sekä mielikuvituksellisten ja todellisten tapahtumien taitava sekoittaminen. Hänen kolme romaaniaan Unenpäästäjä Florian (2010), Sotilasrajan unet (2014) ja Tuomiopäivän karavaani (2017) sijoittuivat pääasiassa entisen Jugoslavian maihin. Tuomiopäivän karavaani voitti vuoden 2018 Tähtivaeltaja-palkinnon. Helsinki Underground (2020) ja Uuden ihmisen kaupunki (2023) palaavat kirjailijan kotikaupunkiin.</p><p>Vapaa pääsy</p>", "sv": "<p>Den här gången blir det en paneldiskussion om författarens arbete med tre författare på Gamlasgården.</p><p>Helmi Kekkonen och Juha Itkonen diskuterar under ledning av Jani Saxell. Helmi Kekkonens senaste verk Näin minä sen kirjoitin (2025), Juha Itkonens 7 + 7 – Levottoman ajan kirjeitä (2019), som han skrev i samarbete med Kjell Westö, och Jani Saxells Aiheiden kirja (2024) står i centrum för samtalet.</p><p>Juha Itkonen är ett av de mest framträdande namnen i den finska samtidslitteraturen. Författaren, som fångade publiken redan med sin debutroman Myöhempien aikojen pyhiä (2003), har förutom romaner bland annat skrivit en brevväxlingsbok, pjäser och ett audiodrama. Itkonen har tilldelats statspriset för litteratur, Kalevi Jäntti-priset och Veijo Meri-priset samt varit nominerad till Finlandiapriset två gånger. Den hyllade författarens och aktiva samhällsdebattörens verk Teoriani perheestä (2023) gavs ut både som tryckt bok och som ljudbok inläst av Itkonen själv. Audiodramat Sivuraide kom år 2024.</p><p>Helmi Kekkonen är författare, journalist och lärare i kreativt skrivande. Till utbildningen är Kekkonen filosofie magister. Hon studerade allmän litteraturvetenskap som huvudämne och skrivande som biämne vid Åbo universitet. Kekkonens tredje roman Vieraat (2016) nominerades till Runebergspriset 2017. Hennes femte roman Liv! var nominerad till Finlandiapriset för skönlitteratur 2024.</p><p>Jani Saxell är författare, journalist och lärare i litteratur. Hans verk kännetecknas av en samhällelig dimension och en skicklig blandning av påhittade och verkliga händelser. Hans tre romaner Unenpäästäjä Florian (2010), Sotilasrajan unet (2014) och Tuomiopäivän karavaani (2017) utspelar sig huvudsakligen i det forna Jugoslavien. Tuomiopäivän karavaani vann Tähtivaeltaja-priset 2018. Helsinki Underground (2020) och Uuden ihmisen kaupunki (2023) återvänder till författarens hemstad.</p><p>Fritt inträde</p>", "en": "<p>This time, Kanneltalo will host a panel discussion on the work of a writer with three authors.</p><p>Helmi Kekkonen and Juha Itkonen will participate in the discussion with Jani Saxell. The discussion will be centred around Helmi Kekkonen’s latest work, ‘Näin minä sen kirjoitin’ (2025), Juha Itkonen’s ‘7 + 7 - Levottoman ajan kirjeitä’ (2019) written together with Kjell Westö and Jani Saxell’s ‘Aiheiden kirja’ (2024).</p><p>Juha Itkonen is one of the most prominent names in Finnish contemporary literature. The author, who already captivated readers with his debut novel Myöhempien aikojen pyhiä (2003), has written a book of correspondence, plays and an audio drama in addition to novels. Itkonen has been awarded the State Prize for Literature, the Kalevi Jäntti Prize and the Veijo Meri Prize, and he has been nominated for the Finlandia Prize twice. In addition to a printed book, Teoriani perheestä (2023), by the acclaimed author and active social debater, was also published as an audiobook read by Itkonen himself. The Sivuraide audio drama was released in 2024.</p><p>Helmi Kekkonen is a writer, journalist and creative writing teacher. Kekkonen has a Master's degree in philosophy. She majored in comparative literature, with a minor in creative writing at the University of Turku. Kekkonen's third novel Vieraat (2016) was nominated for the Runeberg Prize in 2017. Her fifth novel Liv! was a Finlandia Prize in Fiction nominee in 2024.</p><p>Jani Saxell is a writer, journalist and literature teacher. His works are characterised by their social nature and his skilful blending of imaginary and real events. His three novels Unenpäästäjä Florian (2010), Sotilasrajan unet (2014) and Tuomiopäivän karavaani (2017) were mainly set in the countries of the former Yugoslavia. Tuomiopäivän karavaani won the Tähtivaeltaja Award in 2018. Helsinki Underground (2020) and Uuden ihmisen kaupunki (2023) mark a return to the author’s hometown.</p><p>Free entry</p>" }, "name": { "fi": "Kirjailijavieraina Juha Itkonen, Helmi Kekkonen ja Jani Saxell – Maksuttomat maanantait", "sv": "Författarbesök: Juha Itkonen, Helmi Kekkonen och Jani Saxell – Avgiftsfria måndagar", "en": "Guest authors Juha Itkonen, Helmi Kekkonen and Jani Saxell – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67789", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-793/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T09:12:47.759674Z", "last_modified_time": "2026-01-26T09:12:47.759686Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777678.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494620/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T09:12:47.655750Z", "last_modified_time": "2026-03-20T01:13:22.310240Z", "date_published": null, "start_time": "2026-03-02T14:00:00Z", "end_time": "2026-03-02T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E58444A7FE7BE23A098566D7EB26F78B/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E58444A7FE7BE23A098566D7EB26F78B/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/E58444A7FE7BE23A098566D7EB26F78B/Afternoons_planned_by_young_people" }, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä.</p><p>Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67789/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68112", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494870, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-16T09:13:19.584980Z", "last_modified_time": "2026-02-16T09:13:19.584996Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785565.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494870/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-16T09:13:19.458797Z", "last_modified_time": "2026-03-20T01:13:22.179148Z", "date_published": null, "start_time": "2026-03-02", "end_time": "2026-03-31", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FD0870780D9E6602939DE519E304C79D/Haagan_Taideseura_Suvi_Innasen_teoksia_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FD0870780D9E6602939DE519E304C79D/Haagan_Taideseura_Suvi_Innasen_teoksia_", "en": "http://www.kanneltalo.fi/en/events/event/FD0870780D9E6602939DE519E304C79D/Haagan_Taideseura_Suvi_Innasen_teoksia_" }, "description": { "fi": "<p>Olen ollut Haagan Taideseuran jäsen vuodesta 1993. Alkuun maalasin temperaväreillä, joiden käyttöön ihastuin Tapio Tikkasen kurssilla. Nykyisin maalaan akvarelliväreillä. Usein teen näistä maalauksista soveltuvin osin metalligrafiikan työn.</p><p>Näyttelyni koostuu useiden vuosien aikana grafiikan eri tekniikoilla tehdyistä töistä. Haagan Taideseura viettää toimintansa kuudettakymmenettä vuotta. Ensimmäinen grafiikan kurssini aloitin vuonna 1996, eli vietän tuplajuhlavuotta.</p><p>Haagan Taideseura on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot Haagan Taideseura ry</p><p>Kahvilan vitriinit<br>Vapaa pääsy</p>" }, "name": { "fi": "Haagan Taideseura: Suvi Innasen teoksia", "sv": "Haagan Taideseura: Suvi Innasen teoksia", "en": "Haagan Taideseura: Suvi Innasen teoksia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68112/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67921", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494381, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T14:13:10.300653Z", "last_modified_time": "2026-01-05T14:13:10.300668Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780649.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494381/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T14:13:10.223981Z", "last_modified_time": "2026-03-20T01:13:21.569371Z", "date_published": null, "start_time": "2026-02-28T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.", "sv": "En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.", "en": "A performance about the weight of gratitude and feelings of inadequacy of a person who has fled." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F5333BE5B8004D6B2FE87411EBD25BAB/Saban_Ramadani_Ma_Lupaan_Ma_Vannon", "sv": "http://www.stoa.fi/sv/evenemang/event/F5333BE5B8004D6B2FE87411EBD25BAB/Saban_Ramadani_Jag_lovar_jag_svar_", "en": "http://www.stoa.fi/en/events/event/F5333BE5B8004D6B2FE87411EBD25BAB/Saban_Ramadani_Ma_Lupaan_Ma_Vannon" }, "description": { "fi": "<p>Performanssi pakoon lähteneen henkilön kiitollisuuden painosta ja riittämättömyyden tunteista.</p><p>Performanssiteoksessa nähdään henkilö pesemässä valkoisen tilan lattiaa lasisen sangon vedellä, katseen suunta on portaikon huipussa. Kertoja pyrkii ilmaisemaan kuuntelijalle kiitollisuutensa maahanmuutosta, siitä ihanasta uhrauksesta, jonka huostaan ottanut maa on tehnyt pakoon lähteneelle henkilölle. Narratiivissa kuitenkin piilee ihmisarvon toiseutta, tunteesta, että ei koskaan tule riittämään. Hän pesee, pesee, pesee lattiaa päänsä alas laittaa.</p><p>Kuin Sisyfoksen tavoin, kivi vierähtää alas ja kierre on loputon. Narraatiossa henkilö toivoisi sanovansa ääneen turhautumisensa riittämättömyydestä, mutta muistuttaa itseään kiitollisuudesta, sillä sitä toisen luokan kansalainen tekee, tai, ainakin näin oletetaan. Korottamalla ääntänsä hän saattaa vihdoinkin ottaa tilaa, mutta mitkä seuraamukset seuraavat perässä?</p><p>Kesto: n. 30 min, ei väliaikaa<br>Kieli: englanti</p><p>Vapaa pääsy</p><p><b>Työryhmä:</b><br>Taiteellinen työ, esiintyjä: Saban Ramadani<br>Tuottaja: Wisam Elfadl</p>", "sv": "<p>En performance om tyngden av tacksamhet och känslor av otillräcklighet hos en flykting.</p><p>I det här performanceverket får vi se en person som tvättar golvet i ett vitt rum med en vattenhink av glas, med blicken riktad mot trappans topp. Berättaren försöker uttrycka sin tacksamhet för migrationen, den underbara uppoffring som det mottagande landet har gjort för flyktingen. I narrativet döljer sig ändå ett utanförskap i människovärdet, en känsla av att aldrig kunna räcka till. Han tvättar, tvättar, tvättar golvet lägger ner sitt huvud.</p><p>Precis som för Sisyfos rullar stenen ner och spiralen är oändlig. Personen i berättelsen vill uttrycka sin frustration över otillräckligheten, men påminner sig själv om tacksamheten, för det gör en andra klassens medborgare, eller det är i alla fall vad man antar. Genom att höja sin röst kan han äntligen ta plats, men vilka konsekvenser får det?</p><p>Längd ca 30 min., ingen paus.<br>Språk: engelska</p><p>Fritt inträde</p><p>Arbetsgrupp:<br>Konstnärligt arbete, artist: Saban Ramadani<br>Producent: Wisam Elfadl</p>", "en": "<p>A performance about the weight of gratitude and feelings of inadequacy of a person who has fled.</p><p>In the performance, a person is washing the floor of a white space with water from a glass bucket, with their gaze directed at the top of a staircase. The narrator tries to express to the listener their gratitude for immigration, for the wonderful sacrifice made by the host country to the person who has fled. However, there is an otherness of human dignity in the narrative, a sense that they will never be enough. They wash, wash, wash the floor and put their head down.</p><p>The Sisyphean stone rolls down again and the spiral is endless. In the narrative, the person wishes they could express their frustration at their inadequacy out loud, but reminds themselves to be grateful, because that's what a second-class citizen does, or, at least, that's what is assumed. By raising their voice, they could finally make room for themselves, but what consequences would that have?</p><p>Duration approx. 30 min, no intermission<br>Language: English</p><p>Free entry!</p><p>Creative team:<br>Artistic work, performer: Saban Ramadani<br>Producer: Wisam Elfadl</p>" }, "name": { "fi": "Saban Ramadani: Mä Lupaan, Mä Vannon", "sv": "Saban Ramadani: ”Jag lovar, jag svär”", "en": "Saban Ramadani: Mä Lupaan, Mä Vannon" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67921/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67831", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494209, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-15T13:13:37.076458Z", "last_modified_time": "2025-12-15T13:13:37.076474Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779978.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494209/?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-15T13:13:36.920583Z", "last_modified_time": "2026-03-20T01:13:21.301205Z", "date_published": null, "start_time": "2026-02-28T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tämä koko perheen jazzkonsertti juhlistaa Kulttuurikeskus Caisan 30-vuotista historiaa – osuvasti Jazz Suomi 100 -juhlavuonna!", "sv": "Denna Jazzkonsert för hela familjen uppmärksammar kulturcentret Caisas 30-åriga historia – lämpligt nog under Jazz Finland 100-jubileumsåret.", "en": "In this solo concert, Battah invites the audience – especially children – to join her on a musical journey of rhythm, voice and imagination." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah", "sv": "http://www.caisa.fi/sv/evenemang/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah", "en": "http://www.caisa.fi/en/events/event/9D894178F4B27F20D90ECE12A84E31E3/Jazz_for_Kids_Nemat_Battah" }, "description": { "fi": "<p>Tämä koko perheen jazzkonsertti juhlistaa Kulttuurikeskus Caisan 30-vuotista historiaa – osuvasti Jazz Suomi 100 -juhlavuonna!</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella kulttuurikeskusten helposti saavutettavissa tiloissa.</p><p>Tässä Jazz for Kids-konsertissa <b>Nemat Battah</b> esittelee soolouransa alkuperäisiä sävellyksiä, joihin hän ammentaa vaikutteita myös Wishamalii-triostaan. Loopperin ja live-elektroniikan avulla hän luo intiimin äänimaiseman, jossa perinteinen kohtaa uuden ja ennakkoluulottoman. Hänen musiikkinsa yhdistää arabialaisen maqam-estetiikan ja jazzin improvisaation vapauden, luoden syvästi ilmaisuvoimaisen ja nykyaikaisen äänimaiseman.</p><p>Battah kutsuu yleisön – erityisesti lapset – mukaan rytmin, äänen ja mielikuvituksen matkalle! Leikkisän vuorovaikutuksen ja spontaanin luomisen kautta hän tutkii, miten ääni voi kertoa tarinoita ja yhdistää ihmisiä yli kulttuurirajojen. Esitys huokuu uteliaisuutta, lämpöä ja jazzin improvisaation henkeä, tarjoten elämyksen, joka koskettaa ja inspiroi kaikenikäisiä kuulijoita.<br>Nemat Battah – oud, laulu, live-elektroniikka & loopperi</p><p>Tilaisuuden kesto: 45 min. Artisti esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikkoa ja soitinta.</p><p>Kieli: englanti ja arabia</p><p>Paikat täytetään saapumisjärjestyksessä.</p><p>Vapaa pääsy!</p>", "sv": "<p>Denna Jazzkonsert för hela familjen uppmärksammar kulturcentret Caisas 30-åriga historia – lämpligt nog under Jazz Finland 100-jubileumsåret.</p><p>Jazz for Kids är en serie av högklassiga jazzkonserter för barn, där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga utrymmen.</p><p>I den här Jazz for Kids-konserten framför <b>Nemat Battah</b> originallåtar ur sin solokarriär, där även influenser från trion Wishamalii ingår. Med hjälp av en looper och liveelektronik skapar hon ett intimt ljudlandskap, där det traditionella möter det nya och fördomsfria. Hennes musik kombinerar arabisk maqam-estetik med friheten i jazzimprovisation, och skapar ett djupt uttrycksfullt och modernt ljudlandskap.</p><p>Battah bjuder in publiken – särskilt barnen – på en resa fylld av rytmer, ljud och fantasi! Genom lekfull interaktion och spontant skapande utforskar hon hur ljuden kan berätta historier och förena människor över kulturgränserna. Föreställningen andas nyfikenhet, värme och jazzimprovisation och bjuder på en upplevelse som berör och inspirerar lyssnare i alla åldrar.</p><p>Nemat Battah – oud, sång, liveelektronik och looper</p><p>Evenemangets längd: 45 minuter. Artisten uppträder i ca 35 minuter, varefter publiken kan hälsa på musikern och instrumentet.</p><p>Språk: engelska och arabiska<br>Fritt inträde!</p>", "en": "<p>In this solo concert, Battah invites the audience – especially children – to join her on a musical journey of rhythm, voice and imagination.</p><p>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandparents! Professional musicians perform their work at child-friendly volumes in the easily accessible facilities of the City’s cultural centres.</p><p>In this Jazz for Kids concert, Nemat Battah will perform original compositions from her solo career, also drawing influence from her Wishamalii trio. With the help of loopers and live electronics, she will create an intimate soundscape where the traditional meets the new and unprejudiced. Her music combines Arabic maqam aesthetics with the improvisational freedom of jazz, creating a deeply expressive and contemporary soundscape.</p><p>Battah invites the audience – especially children – to join her on a journey of rhythm, sound and imagination! Through playful interaction and spontaneous creation, she explores how sound can tell stories and connect people across cultural boundaries. The performance exudes curiosity, warmth and the improvisational spirit of jazz, providing an experience that will touch and inspire listeners of all ages.</p><p>Nemat Battah – oud, vocals, live electronics and looper</p><p>Event duration: 45 min. The artist will perform for roughly 35 minutes, after which the audience can come meet the musician and see the instruments used.</p><p>Language: English and Arabic</p><p>Free entry!</p>" }, "name": { "fi": "Jazz for Kids: Nemat Battah", "sv": "Jazz for Kids: Nemat Battah", "en": "Jazz for Kids: Nemat Battah" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67831/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67675", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493977, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:16.711059Z", "last_modified_time": "2025-12-01T13:14:16.711074Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782324.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493977/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:16.611353Z", "last_modified_time": "2026-03-20T01:13:21.197502Z", "date_published": null, "start_time": "2026-02-28T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6A538374AD8881FE92F5F52DB694E501/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/6A538374AD8881FE92F5F52DB694E501/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/6A538374AD8881FE92F5F52DB694E501/All_children_s_dance_class" }, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67675/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67449", "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: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: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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494073, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:12:55.557187Z", "last_modified_time": "2025-12-04T13:12:55.557203Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781375.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494073/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-04T13:12:55.448375Z", "last_modified_time": "2026-03-20T01:13:20.706968Z", "date_published": null, "start_time": "2026-02-28T10:00:00Z", "end_time": "2026-02-28T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Koko perheen viittomakielinen ilmaistapahtuma Helsingissä!", "sv": "Gratis evenemang på teckenspråk för hela familjen i Helsingfors!", "en": "A free event for the whole family in sign language in Helsinki!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Viittomakielinen_kulttuuritapahtuma", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Ett_kulturevenemang_pa_teckensprak", "en": "http://www.kanneltalo.fi/en/events/event/54DC97FDBB7DFBEFE1EBEF669E0B2672/HELsign_2026_Cultural_event_in_sign_language" }, "description": { "fi": "<p>Koko perheen viittomakielinen ilmaistapahtuma Helsingissä!</p><p>Tervetuloa viettämään hauska päivä 28.2.2026 klo 12–16 Kanneltalolle.</p><p>Luvassa on mielenkiintoista tekemistä ja ohjelmaa kaikenikäisille. Tule mukaan nauttimaan tunnelmasta ja keväisestä menosta!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Vapaa pääsy</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p>", "sv": "<p>Gratis evenemang på teckenspråk för hela familjen i Helsingfors!</p><p>Välkommen till en rolig dag på Gamlasgården den 28 februari 2026 kl. 12–16.<br>Där utlovas intressanta aktiviteter och program för alla åldrar. Kom med och njut av stämningen och våren!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p><p>Fritt inträde</p>", "en": "<p>A free event for the whole family in sign language in Helsinki!</p><p>Come along and spend a fun day on 28 February 2026 from 12.00–16.00 at Kanneltalo.<br>There will be interesting activities and a programme for all ages. Come along and enjoy the atmosphere and spring activities!</p><p>Kanneltalon ovet avataan klo 11.30 ja ohjelmaa on tarjolla klo 12–16</p><p>Saliohjelma<br>Klo 12.15 Miguel Peltomaa & Sara Väre - Live Podcast<br>Klo 13.00 Teatteriryhmä Valokalat<br>Klo 14.30 Deaf Lions haastattelu<br>Klo15.00 Tietovisa</p><p>Yhteistyössä Humak, Kanneltalo, Kuurojen Liittoja ja Viittovat perheet ry.</p><p>Free entry</p>" }, "name": { "fi": "HELsign 2026 – Viittomakielinen kulttuuritapahtuma", "sv": "HELsign 2026 – Ett kulturevenemang på teckenspråk", "en": "HELsign 2026 – Cultural event in sign language" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67449/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67497", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T08:13:00.233390Z", "last_modified_time": "2026-01-27T08:13:00.233410Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781604.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494645/?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-27T08:13:00.144327Z", "last_modified_time": "2026-03-20T01:13:20.595976Z", "date_published": null, "start_time": "2026-02-28T09:00:00Z", "end_time": "2026-02-28T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai_Nastat_kortit", "sv": "http://www.annantalo.fi/sv/evenemang/event/230927E0E7D4B562A3BD87B0143473B8/Annegardens_konstlordag", "en": "http://www.annantalo.fi/en/events/event/230927E0E7D4B562A3BD87B0143473B8/Annantalo_Art_Saturday_Pin_Me_a_Picture" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Nastat kortit</b></p><p>Pistele reikiä paperikorttiin luodaksesi kauniita pitsimäisiä kuvioita. Rauhallista ja piikikästä puuhaa!<br> <br>Alle kouluikäisille aikuisen kanssa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaa Chloé Mahy.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Gör hål i ett papperskort för att skapa vackra spetsliknande mönster. En rogivande och lite stickig aktivitet!<br> <br>För barn under 7 år i sällskap av en vuxen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen led av Chloé Mahy.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Pin Me a Picture</b></p><p>Punch holes on a paper card to create beautiful lacey patterns. Soothing and prickly business!</p><p>For kids under 7 with an adult.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by Chloé Mahy.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Nastat kortit", "sv": "Annegårdens konstlördag", "en": "Annantalo Art Saturday: Pin Me a Picture" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67957", "has_user_editable_resources": false, "location": null, "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: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/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494434, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-09T13:12:57.639011Z", "last_modified_time": "2026-01-09T13:12:57.639021Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783780.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494434/?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-09T13:12:57.498447Z", "last_modified_time": "2026-03-20T01:13:20.288726Z", "date_published": null, "start_time": "2026-02-28T08:30:00Z", "end_time": "2026-06-06T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu noin 5-6 v. lapsille oman aikuisen kanssa.", "sv": "Välkommen till en avkopplande stund med dans, lek och den lokala naturen!", "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Tanssi-_ja_luontotyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Dans-_och_naturverkstader", "en": "http://www.vuotalo.fi/en/events/event/2609E0526F6FA0AE1C7FA55D8A74EC29/Dance_and_nature_workshops" }, "description": { "fi": "<p>Tervetuloa viettämään kiireetöntä vapaa aikaa tanssin, leikin ja lähiluonnon parissa! Työpaja on suunnattu noin 5-6 v. lapsille oman aikuisen kanssa.</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään. Työpajat tarjoavat mahdollisuuden eri-ikäisille ihmisille, aikuisille ja lapsille, viettää kiireetöntä ja vapaata aikaa ja olla yhdessä tanssin, leikin ja lähiluonnon parissa.</p><p>Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa kehollisia, intuitiivisia ja kuvitteellisia tietämisen tapoja. Hanke kehittää demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi</p><p>Työpaja ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p>Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p>Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen<br>artofknowing2025@gmail.com</p><p>Ilmoittautumisen yhteydessä kerro:<br>Osallistujien nimi / nimet<br>Puhelinnumero<br>Ryhmä, johon osallistutaan</p><p>Vapaa pääsy</p><p>Työpajoja ohjaavat tanssitaiteilija-tanssipedagogi Jenni Koistinen ja tanssitaiteilija-koreografi Virva Talonen.</p><p>Tule mukaan lauantaisin klo 10.30–11.45!<br>Päivämäärät: 28.2., 7.3., 14.3., 21.3., 28.3., 11.4., 18.4., 25.4., 9.5., 16.5, 23.5 ja 6.6.2026.</p><p>HUOM! Kaikkien ryhmien yhteinen viimeinen kerta on poikkeuksellisesti la 6.6.26 klo 10.30–12.</p><p>Järjestämme tanssi- ja luontotyöpajoja myös 7-12-vuotiaille lapsille oman aikuisen kanssa torstaisin 26.2.–28.5. klo 17.30–18.15 sekä kaikenikäisille torstaisin 26.2.–28.5. klo 18.30-19.45.</p>", "sv": "<p>Välkommen till en avkopplande stund med dans, lek och den lokala naturen!</p><p>Mitt i vardagen kan det vara svårt att hitta stunder för att bara vara tillsammans och leka eller gå på upptäcktsfärd i den lokala skogen. Verkstäderna erbjuder en möjlighet för personer i olika åldrar, vuxna och barn, att umgås fritt och utan stress, dansa, leka och njuta av den lokala naturen.</p><p>I verkstäderna fokuserar vi särskilt på lek och att röra oss tillsammans genom dansuppgifter. Verkstädernas teman rör sig från fantasilekar till berättelser, spel, promenader i naturen och gemensamt utforskande.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Kone-stiftelsen och där vi utvecklar kroppsliga, intuitiva och tänkta sätt att veta i samarbete med forskare och danskonstnärer. Projektet utvecklar demokratiska och inkluderande metoder där lek, kroppslighet och natur är viktiga källor till kunskap.</p><p>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi <br>Kursen kräver ingen tidigare bakgrund inom dans eller erfarenhet av dans. Kursen leds på finska, och vid behov använder vi också svenska och engelska.</p><p>Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö.</p><p>De anmälda till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p>LEDARE FÖR VERKSTÄDERNA: Verkstäderna leds av danskonstnären och -pedagogen Jenni Koistinen samt danskonstnären och koreografen Virva Talonen.</p><p><b>Anmälan sker via e-post till adressen:</b> artofknowing2025@gmail.com</p><p>I samband med anmälan, vänligen uppge:<br>Deltagarens namn / deltagarnas namn<br>Telefonnummer<br>Den grupp som man anmäler sig till</p><p>Vi ordnar dans- och naturworkshops även för deltagare i alla åldrar på torsdagar 26.2.–28.5. kl. 18.30–19.45 samt för barn i åldern 5–6 år tillsammans med en egen vuxen på lördagar 28.2.–6.6. kl. 10.30–11.45.</p><p>OBS! Alla gruppers gemensamma sista träff hålls undantagsvis lördagen den 6.6.26 kl. 10.30–12.</p>", "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In the busyness of everyday life, it can be hard to find moments to just be together and play, or perhaps go explore the local forest. These workshops offer an opportunity for people of all ages, adults and children alike, to spend some unhurried and free time together, dancing, playing and enjoying the local nature.</p><p>The workshops will focus particularly on playing and moving together through dance-related activities. The workshop themes range from imagination play to stories, games, walking in the woods and exploring things together.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop bodily, intuitive and imaginary ways of knowing. The project develops democratic and participatory methods in which play, bodiliness and nature are important sources of knowing.</p><p>If you participate in the workshops, you can also take part in a survey if you wish. For more information on the survey, please contact: anna.rainio@helsinki.fi</p><p>No previous dance background or experience is required for attending the course. The course is instructed in Finnish, and we also speak Swedish and English where necessary.</p><p>The workshops will be held in the Small Hall room of Vuotalo and in the nearby forests of Vuosaari.</p><p>Those registered for the workshops will receive more information about the assembly places before the course starts.</p><p>WORKSHOP INSTRUCTORS: The workshops will be instructed by dance artist and educator Jenni Koistinen and dance artist and choreographer Virva Talonen.</p><p>Registration takes place by email to the following address:</p><p><b>When registering, please provide: </b><br>artofknowing2025@gmail.com</p><p>Participant’s name / participants’ names<br>Phone number<br>The group you are registering for</p><p>We also organise dance and nature workshops for all ages on Thursdays from 26 Feb to 28 May, from 6:30 pm to 7:45 pm, as well as workshops for 5–6-year-old children together with their own adult on Saturdays from 28 Feb to 6 June, from 10:30 am to 11:45 am.</p><p>NOTE! The final session for all groups will exceptionally be held together on Saturday 6 June 2026, from 10:30 am to 12:00 pm.</p>" }, "name": { "fi": "Tanssi- ja luontotyöpajat – Aikuiset ja n. 5-6 v.lapset", "sv": "Dans- och naturverkstäder – Vuxna och barn 5–6 år.", "en": "Dance and nature workshops – Adults and children aged 5–6" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67957/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67909", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494595, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T14:12:55.084754Z", "last_modified_time": "2026-01-21T14:12:55.084768Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777733.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494595/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-21T14:12:54.928362Z", "last_modified_time": "2026-03-20T01:13:20.147658Z", "date_published": null, "start_time": "2026-02-28", "end_time": "2026-05-23", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsingin kaupunginmuseon kierrätysnäyttely keikauttaa käsityksesi roskasta.", "sv": "Helsingfors stadsmuseums återvunna utställning utmanar uppfattningen om skräp.", "en": "The Helsinki City Museum recycled exhibition will challenge your notions on waste." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Roskaa_-_Mita_jatamme_jalkeemme", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Skrap_Det_vi_lamnar_efter_oss", "en": "http://www.vuotalo.fi/en/events/event/5FC47BFFD6FEE50D5FACB43F99C0060B/Trash_What_we_leave_behind" }, "description": { "fi": "<p>Helsingin kaupunginmuseon kierrätysnäyttely keikauttaa käsityksesi roskasta.</p><p>Mistä helsinkiläisten roskat muodostuvat, mihin ne päätyvät ja miten ne vaikuttavat ympäristöön?</p><p>Vuotaloon saapuu näyttely, joka haastaa pohtimaan omia kulutustottumuksia ja kannustaa kestävämpiin valintoihin. Kaupunginmuseon kierrätetty näyttely Roskaa! kutsuu kaupunkilaiset ihmettelemään kotitalousjätteiden kiertokulkua ja ympäristövastuun merkityksiä eri aikoina.</p><p>Näyttely esittelee Helsingin jätehuollon historiaa ja nykyhetkeä leikkimielisten tehtävien ja erilaisten teemojen avulla. Koti havainnollistaa kuluttamisen muutoksia, Viemäri paljastaa putkistojen salaisuudet, Jätehuolto näyttää jätteiden reitit kaupungissa ja Kierrätyspajassa vanha saa uuden elämän.</p><p>Pöntöt, pytyt ja putket, sekä Riku Ounaslehdon näyttelyä varten kuvittamat maskottihahmot – Herra Sumppi, Lörö, Voda, Kara ja Rööperi-Rotta – saavat kaikenikäiset hymyilemään.</p><p>Roskaa! toteutetaan yhteistyössä Helsingin seudun ympäristöpalvelujen kanssa. Näyttelyn tuottaja on museolehtori Magnus Rask.</p><p>Roskaa! – Mitä jätämme jälkeemme<br>28.2.–23.5.2026<br>Vuotalo <br>Vapaa pääsy</p>", "sv": "<p>Helsingfors stadsmuseums återvunna utställning utmanar uppfattningen om skräp.</p><p>Till Nordhuset kommer en utställning som utmanar till att tänka på ens egna konsumtionsvanor och uppmuntrar till hållbarare val. Stadsmuseets återvunna utställning Skräp! handlar om hushållsavfallets kretslopp i staden och människors miljöansvar under olika tidsperioder.</p><p>Hur uppstår helsingforsarnas avfall, vart hamnar det och hur påverkar det miljön?</p><p>Utställningen presenterar avfallshanteringens historia och nuläge i Helsingfors med hjälp av olika skojiga uppgifter och teman; Hemmet åskådliggör förändringar i konsumtionen, Avloppet avslöjar rörsystemens hemligheter, Avfallshanteringen visar avfallets rutter i staden och i Återvinningsverkstaden ger gamla saker ett nytt liv.</p><p>Pottor, byttor och rör, samt maskotarna Herr Sump, Klumpen, Vatu, Skrottet och råttan Rööperi designade av Riku Ounaslehto får vem som helst att dra på smilbanden</p><p>Utställningen Skräp! är ett samarbete mellan Helsingfors stadsmuseum och Helsingforsregionens miljötjänster. Utställningen produceras av museilektor Magnus Rask.</p><p>Skräp! – Det vi lämnar efter oss<br>28.2–23.5.2026<br>Nordhuset<br>Fritt inträde</p>", "en": "<p>The Helsinki City Museum recycled exhibition will challenge your notions on waste.</p><p>What does the trash of Helsinki residents consist of, where does it end up, and how does it impact the environment?</p><p>An exhibition is coming to Vuotalo, that challenges visitors to reflect on their own consumption habits and encourages to make more sustainable choices. The Helsinki City Museum recycled exhibition Trash! digs into the journey of household waste in the city and the significance of environmental responsibility in different times.</p><p>The exhibition showcases the history and present of waste management in Helsinki through playful tasks and diverse themes. Home illustrates changes in consumption, Sewer reveals the secrets of pipelines, Waste Management shows the routes of different waste types in the city, and Recycling Shop gives new life to old items.</p><p>Potties, bins and pipes, along with the mascot characters illustrated by Riku Ounaslehto for the exhibition – Mr. Sumppi, Lörö, Voda, Kara, and Rööperi the Rat – are sure to bring smiles to visitors of all ages.</p><p>Trash! is produced in collaboration with Helsinki Region Environmental Services Authority HSY. The exhibition is produced by museum educator Magnus Rask.</p><p>Trash! – What we leave behind<br>28.2–23.5.2026<br>Vuotalo<br>Free entry</p>" }, "name": { "fi": "Roskaa! - Mitä jätämme jälkeemme – Helsingin kaupunginmuseon kierrätysnäyttely", "sv": "Skräp! – Det vi lämnar efter oss – Helsingfors stadsmuseums återvunna utställning", "en": "Trash! – What we leave behind – A recycled exhibition by the Helsinki City Museum" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67909/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }