Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=11&weekday=6%2C7
{ "meta": { "count": 6964, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=12&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=10&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agpiyj2eoe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kpu/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2384926, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-03T05:52:39.972907Z", "last_modified_time": "2026-06-03T05:52:39.972923Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/08d940d8-d5cd-4562-bdd1-b1d09364b80e.png", "name": "", "cropping": "293,0,1707,1414", "photographer_name": "", "alt_text": "Haavepuisto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384926/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-03T05:55:31.559168Z", "last_modified_time": "2026-06-18T08:23:46.033401Z", "date_published": null, "start_time": "2026-06-20T05:00:00Z", "end_time": "2026-06-20T17: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, "name": { "fi": "Haavepuisto - kesähuone", "sv": "Haavepuisto - sommarrummet", "en": "Haavepuisto - summer room" }, "short_description": { "fi": "Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!", "sv": "Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto. Rita, skriv och odla tillsammans i drömmarnas park.", "en": "Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams." }, "description": { "fi": "<p>Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!</p>", "sv": "<p>Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto (fritt översatt Drömmarnas park). Rita, skriv och odla tillsammans i drömmarnas park.</p>", "en": "<p>Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams.</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Koivu", "sv": "Koivu", "en": "Koivu" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eoe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpiyj2kpu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?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, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2a7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2bvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2ce4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2csa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2c54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2djq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2dwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2eoe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2e2m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2fgu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2fsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2f6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2gki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2gwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2hc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2hpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2h4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2ija/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2iuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2i74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2jma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2jyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6ywa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6zlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6zwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc62ca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc62ni/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc62yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc63dm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc63pe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc633i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc64gu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc64sm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc645a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc65h4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc65ta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc655q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc66ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc66s4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc665m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc67ja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc67uu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc6774/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7ale/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7awu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7bbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7bl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7bwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7cbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7cmm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7cxe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7dbq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7dl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuc7dwu/?format=api" } ], "images": [ { "id": 2384926, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-03T05:52:39.972907Z", "last_modified_time": "2026-06-03T05:52:39.972923Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/08d940d8-d5cd-4562-bdd1-b1d09364b80e.png", "name": "", "cropping": "293,0,1707,1414", "photographer_name": "", "alt_text": "Haavepuisto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384926/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-03T05:55:29.285786Z", "last_modified_time": "2026-06-18T08:23:43.613360Z", "date_published": null, "start_time": "2026-06-18T05:00:00Z", "end_time": "2026-07-31T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haavepuisto - kesähuone", "sv": "Haavepuisto - sommarrummet", "en": "Haavepuisto - summer room" }, "short_description": { "fi": "Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!", "sv": "Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto. Rita, skriv och odla tillsammans i drömmarnas park.", "en": "Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams." }, "description": { "fi": "<p>Tänä kesänä Koivu-tila muuttuu kirjailija Eppu Nuotion luomaksi Haavepuistoksi. Tule kasvattamaan haaveiden puutarhaa kirjoittamalla tai piirtämällä!</p>", "sv": "<p>Den här sommaren har författaren Eppu Nuotio gjort om mötesrummet Koivu till sommarrummet Haavepuisto (fritt översatt Drömmarnas park). Rita, skriv och odla tillsammans i drömmarnas park.</p>", "en": "<p>Come visit a Haavepuisto (Dream garden) summer room at Tapiola library. Make the garden grow with your own written or drawn dreams.</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Koivu", "sv": "Koivu", "en": "Koivu" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiyj2kpu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67585", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/", "sv": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/", "en": "https://www.lippu.fi/event/ilkka-rantamaki-the-bluesbrokers-british-blues-night-malmitalo-21243436/" }, "price": { "fi": "22,80 € / 17,80 €", "sv": "22,80 € / 17,80 €", "en": "22,80 € / 17,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494624, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:54.544019Z", "last_modified_time": "2026-01-26T10:12:54.544033Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781972.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494624/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:54.439770Z", "last_modified_time": "2026-06-18T08:13:41.992618Z", "date_published": null, "start_time": "2026-09-19T16:00:00Z", "end_time": "2026-09-19T18: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, "name": { "fi": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night", "sv": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night", "en": "Ilkka Rantamäki $ The Bluesbrokers: British Blues Night" }, "short_description": { "fi": "Ilkka Rantamäki $ The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.", "sv": "Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!", "en": "Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!" }, "description": { "fi": "<p>Ilkka Rantamäki $ The Bluesbrokers tuo kaikuja 60-luvun puolivälin sumuisen Lontoon psykedeelisiltä klubeilta.</p><p>Yhtye soittaa aikakauden autenttisella soundilla ikonisten brittibluesbändien kuten John Mayall’s Bluesbreakersin, Peter Green’s Fleetwood Macin ja Juicy Lucyn tuotantoa. Setteihin on sulautettu myös muutama mainio pala John Hisemanin Tempest yhtyeen ensimmäiseltä levyltä.</p><p>Ilkka Rantamäki: kitara, lap-steel, laulu<br>Hannu Sorsa: urut, piano, laulu<br>Harri Vainikka: basso, laulu<br>Petteri Määttänen: rummut, laulu</p><p>Kesto: 2 t, sis. 20min väliajan</p>", "sv": "<p>Ilkka Rantamäki $ The Bluesbrokers tar sina åhörare till det dimmiga Londons psykedeliska klubbar i mitten av 60-talet!</p><p>Med sitt autentiska sound och grepp hämtar bandet tidsperiodens produktion av ikoniska brittiska bluesband, såsom John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac och Juicy Lucy till scenen i Malms kulturhus.</p><p><b>Ensemble</b><br>Ilkka Rantamäki: gitarr, lap-steel, sång<br>Hannu Sorsa: orgel, piano, sång<br>Harri Vainikka: bas, sång<br>Petteri Määttänen: trummor, sång</p><p>Längd: 2 h min., inklusive en paus på 20 minuter</p>", "en": "<p>Ilkka Rantamäki & The Bluesbrokers transport their audience to the psychedelic clubs of foggy late-1960s London!</p><p>With their authentic sound and style, the band brings the music of iconic British blues bands of the era – such as John Mayall’s Bluesbreakers, Peter Green’s Fleetwood Mac and Juicy Lucy – to the Malmitalo stage.</p><p><b>Ensemble:</b><br>Ilkka Rantamäki: guitar, lap-steel, vocals<br>Hannu Sorsa: organ, piano, vocals<br>Harri Vainikka: bass, vocals<br>Petteri Määttänen: drums, vocals</p><p>Duration: 2 h, includes 20 min intermission</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night", "en": "http://www.malmitalo.fi/en/events/event/BC2D3AE02DDF87525D54153A9E3E1014/Ilkka_Rantamaki_The_Bluesbrokers_British_Blues_Night" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68939", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T07:14:44.157657Z", "last_modified_time": "2026-06-18T07:14:44.157679Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792289.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-18T07:14:44.063981Z", "last_modified_time": "2026-06-18T07:14:44.289515Z", "date_published": null, "start_time": "2026-09-26T07:00:00Z", "end_time": "2026-09-26T15: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, "name": { "fi": "Nezumicon", "sv": "Nezumicon", "en": "Nezumicon" }, "short_description": { "fi": "Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä." }, "description": { "fi": "<p>Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä.</p><p>Tapahtuma on maksuton ja suunnattu nuorille.</p><p>Tapahtuman tuottamisessa nuoria auttaa Operaatio Pulssi! Pohjoinen, Malmitalo, Malmin kirjasto ja Malmin nuorisotyöyksikkö.</p><p>Vapaa pääsy</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon", "sv": "http://www.malmitalo.fi/sv/evenemang/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon", "en": "http://www.malmitalo.fi/en/events/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68939/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69135", "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:350/?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:747/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384808, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T13:14:33.379480Z", "last_modified_time": "2026-06-01T13:14:33.379502Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790406.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384808/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-01T13:14:33.245269Z", "last_modified_time": "2026-06-18T06:14:02.866167Z", "date_published": null, "start_time": "2026-09-14", "end_time": "2026-12-07", "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, "name": { "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen (FI/ENG/RU)", "sv": "Dans och lek – Verkstad för småbarn (1–3 år) och deras vuxna", "en": "Dance and play – Workshop for children aged 1.5–3, and their adults (FI/ENG)" }, "short_description": { "fi": "Tervetuloa tanssin ja leikin maailmaan Caisassa maanantaisin klo 9.15 ja 10.15!", "sv": "Välkommen till en värld av dans och lek på Caisa, måndagar kl. 9.15 och 10.15!", "en": "Welcome to the world of dance and play in Caisa on Mondays at 9:15 and 10:15!" }, "description": { "fi": "<p>Tervetuloa tanssin ja leikin maailmaan Caisassa maanantaisin klo 9.15 ja 10.15!</p><p><b>Työpajat maanantaisin 14.9.–7.12.<br>Työpaja 1: klo 9.15–10.00<br>Työpaja 2: klo 10.15–11.00</b><br>Työpajoja ei järjestetä syyslomaviikon maanantaina 12.10.</p><p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta. Työpaja on suunnattu 1–3-vuotiaille taaperoille ja heidän aikuisilleen. Taaperon tulisi osata jo kävellä. Sopii osallistujille erilaisilla kyvyillä, myös erityistarpeet huomioiden. Vanhemmat sisarukset ovat tervetulleita mukaan.</p><p>Työpajassa lapset leikkivät, kommunikoivat ja ilmaisevat itseään liikkeen ja tanssin kautta. Liike toimii kaikille yhteisenä kielenä. Työpajat on suunniteltu huomioimaan osallistujien yksilöllisiä tarpeita osana sosiaalista ryhmätilannetta. Tavoitteena on kehittää sosiaalisia suhteita ikätovereiden kanssa, sekä löytää uusia vuorovaikutuksen tapoja oman aikuisen kanssa. Turvallisessa ja ystävällisessä ilmapiirissä syntyvät positiiviset kokemukset edesauttavat osallistujia oppimaan uusia taitoja.</p><p>Työpajan ohjaa Vera Lapitskaya, tanssitaiteilija ja inklusiivinen tanssiohjaaja.</p><p>Opetuskieli: suomi (englanti, venäjä, espanja tarvittaessa)</p><p>Osallistuminen:</p><p>Työpajaan voi osallistua silloin kun se itselle sopii: kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista; paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä lasta aikuisen seurassa.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>", "sv": "<p>Välkommen till en värld av dans och lek på Caisa, måndagar kl. 9.15 och 10.15!</p><p><b>Verkstäder måndagar 14.9–7.12.<br>Verkstad 1: kl. 9.15–10.00<br>Verkstad 2: kl. 10.15–11.00</b><br>Vi anordnar inga verkstäder måndagen den 12.10 under höstlovsveckan.</p><p>Dans och lek-verkstaden introducerar barnen till dansens värld genom rörelse, musik och lek. Verkstaden riktar sig till barn i åldern 1–3 år och deras vuxna. Barnet behöver kunna gå. Passar för deltagare med olika förmågor, även sådana som har särskilda behov. Äldre syskon är välkomna att vara med.</p><p>I verkstaden får barnen leka, kommunicera och uttrycka sig genom rörelse och dans. Rörelsen fungerar som ett gemensamt språk för alla. Verkstäderna är planerade för att ta hänsyn till deltagarnas individuella behov som en del av en social gruppsituation. Målet är att utveckla de sociala relationerna med jämnåriga och att hitta nya sätt att samspela med den vuxna. Positiva upplevelser i en trygg och vänlig miljö hjälper deltagarna att lära sig nya färdigheter.</p><p>Verkstaden leds av Vera Lapitskaya, danskonstnär och inkluderande dansinstruktör.</p><p>Undervisningsspråk: finska (engelska, ryska, spanska vid behov)</p><p>Deltagande</p><p>Du kan delta i workshopen när det passar dig, alla gånger eller bara några av dem. Välj en tid som passar dig och kom i tid. Ingen förhandsanmälan, platserna fylls enligt ”först till kvarn”-principen. De 12 första barnen i sällskap med en vuxen får plats.</p><p>Frågor och förfrågningar: teemu.savikurki@hel.fi</p>", "en": "<p>Welcome to the world of dance and play in Caisa on Mondays at 9:15 and 10:15!</p><p><b>Workshops on Mondays, 14 September–7 December<br>Workshop 1: 9:15–10:00.<br>Workshop 2: 10:15–11:00</b><br>We will not be holding workshops on Monday, 12 October, during the autumn holiday week.</p><p>The dance and play workshops introduce children to the world of dance through movement, music and play. The workshop is aimed at toddlers aged 1–3 and their adults. Participating toddlers should be already able to walk. Suitable for participants with varied ableness, including those with special needs. Older siblings are welcome to join.</p><p>In the workshop, children play, communicate and express themselves through movement and dance. Movement acts as a common language for everyone. The workshops are designed to take into account the individual needs of the participants as part of a social group situation. The goal is to develop social relationships with their peers, and to find new ways of interacting with their own adult. The positive experiences created in a safe and friendly atmosphere help participants learn new skills.</p><p>The workshop is directed by Vera Lapitskaya, dance artist and inclusive dance instructor.</p><p>Language of instruction: Finnish (English, Russian, Spanish if necessary)</p><p>Participation:</p><p>The workshop is free of charge. You can participate in the workshop whenever it suits you: each time, or just sometimes. Choose a time that suits you and please arrive on time. No pre-registration necessary; places will be filled on a first-come, first-served basis. The first 12 children with an adult may join.</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/37A077C19A795C1F3A003FFE51535D21/Tanssi_ja_leikki", "sv": "http://www.caisa.fi/sv/evenemang/event/37A077C19A795C1F3A003FFE51535D21/Dans_och_lek", "en": "http://www.caisa.fi/en/events/event/37A077C19A795C1F3A003FFE51535D21/Dance_and_play" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68494", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824096, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-17T13:14:11.499294Z", "last_modified_time": "2026-04-17T13:14:11.499362Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786148.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-17T13:14:11.223722Z", "last_modified_time": "2026-06-18T06:13:53.526392Z", "date_published": null, "start_time": "2026-08-13", "end_time": "2026-08-22", "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, "name": { "fi": "Malmin tapahtumakesä 2026 – elokuun ohjelma", "sv": "Malms evenemangssommar 2026 – program för augusti", "en": "Malmi Summer of Events 2026 – August programme" }, "short_description": { "fi": "Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!", "sv": "Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!", "en": "The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!" }, "description": { "fi": "<p>Elokuun tapahtumakesä käynnistyy jyrisevästi herkkien melodioiden ja omaehtoisen indierockin parissa Ala Malmin torilla!</p><p>Tapahtumakesän elokuu täyttää Ala-Malmin torin upeilla keikoilla ja innostavilla työpajoilla. Tervetuloa nauttimaan loppukesän iloisista päivistä Malmille!</p><p>Malmin tapahtumakesä 2026 järjestetään uudessa tapahtumapaikassa Ala Malmin torilla, kun Ala-Malmin puistoa remontoidaan.</p><p>Malmin tapahtumakesän Konttilavalle nousee elokuun aikana mm. Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Aarne Alligaattori, Lyyti, Steve ‘n’ Seagulls, Antti Paalanen, Kukkatalo ja ANI ja muita huippuartisteja!</p><p>Konserttien lisäksi voit osallistua monipuolisiin ja inspiroiviin työpajoihin, joita järjestetään Ala-Malmin torin lisäksi Malmitalossa. Katso ohjelma alta.</p><p><b>Malmin tapahtumakesä 2026 elokuun ohjelma</b></p><p><b>Torstai 13.8. Teini-Pää ja pilvet pilvet</b><br>17.30–18.20 pilvet pilvet<br>19.00-20.00 Teini-Pää</p><p><b>Perjantai 14.8. The Ghost of Bruce Springsteen & The E Street Band</b><br>19.00-20.00 The Ghost of Bruce Springsteen & The E Street Band</p><p><b>Lauantai 15.8. Lasten lauantai: Aarne Alligaattori, Riemukas perhemuskari, työpajoja ja muuta puuhaa</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle<br>11.00-15.00 Lasten uimataidon edistäminen<br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori</p><p><b>Tiistai 18.8. Lyyti, Salaliitto ja Kaupunkitanssit</b><br>16.00–16.45 Kaupunkitanssit<br>17.30–18.20 Salaliitto <br>19.00–20.00 Lyyti</p><p><b>Keskiviikko 19.8. Steve ’n’ Seagulls, William Öster & the Moonliners</b> <br>17.30–18.20\tWilliam Öster & the Moonliners<br>19.00–20.00\tSteve 'n' Seagulls</p><p><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>16.00–19.00 Työväenopisto: Hippiäisestä muurahaisten poluille - maalaa elonkirjoa kasviväreillä!<br>16.00–19.00 Työväenopisto: Heijastintyöpaja<br>16.00–17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Perjantai 21.8. Aili Järvelä ja Antti Paalanen</b><br>17.00–18.00 Aili Järvelä <br>19.00–20.00 Antti Paalanen</p><p><b>Lauantai 22.8. ANI, kukkatalo, työpajoja ja muuta puuhaa</b> <br>14.00–18.00 Malmin nuorisotyöyksikön pop up - kahvila<br>14.00–18.00 Malmin nuorisotyöyksikön pop up – ulkonuta<br>14.00–16.00 Kukkatyöpaja<br>14.30–15.00 Will Funk for Food<br>16.00–17.00 Koristautumispaja<br>15.00–16.00 kukkatalo<br>17.00–18.00 ANI</p><p>Tapahtumiin on vapaa pääsy! Muutokset ovat mahdollisia. <br>Rankkasateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p>", "sv": "<p>Evenemangssommaren i augusti startar med buller på Nedre Malms torg med känsliga melodier och spontan indierock!</p><p>Evenemangssommarens augusti fyller Nedre Malms torg med fantastiska spelningar och inspirerande verkstäder. Välkommen att njuta av sensommarens glada dagar i Malm!</p><p>Malms evenemangssommar 2026 ordnas på den nya evenemangsplatsen på Nedre Malms torg, eftersom Nedre Malms park renoveras.</p><p>Under augusti stiger bland annat Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Arne Alligator, Lyyti, Steve ‘n’ Seagulls, Antti Paalanen, Kukkatalo och ANI samt andra toppartister upp på Containerscenen under Malms evenemangssommar!</p><p>Utöver konserterna kan du delta i mångsidiga och inspirerande verkstäder, som ordnas förutom på Nedre Malms torg också i Malms kulturhus. Se programmet nedan.</p><p>Malms evenemangssommar 2026: program för augusti</p><p>Torsdag 13.8 Teini-Pää och pilvet pilvet<br>17.30–18.20 pilvet pilvet<br>19.00–20.00 Teini-Pää<br>Se dagens program</p><p>Fredag 14.8 The Ghost of Bruce Springsteen & The E Street Band<br>19.00–20.00 The Ghost of Bruce Springsteen & The E Street Band<br>Se dagens program</p><p>Lördag 15.8 Barnens lördag: Arne Alligator, Glatt familjemusiklekis, verkstäder och annan sysselsättning<br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor<br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator<br>Se dagens program</p><p>Tisdag 18.8 Lyyti, Salaliitto och Stadsdans<br>16.00–16.45 Stadsdans<br>17.30–18.20 Salaliitto<br>19.00–20.00 Lyyti<br>Se dagens program</p><p>Onsdag 19.8 Steve ’n’ Seagulls, William Öster & the Moonliners<br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br>Se dagens program (på finska)</p><p>Torsdag 20.8 Konstens natt: Lala Salama, Juhlat och verkstäder<br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br>Se dagens program</p><p>Fredag 21.8 Aili Järvelä och Antti Paalanen<br>17.00–18.00 Aili Järvelä<br>19.00–20.00 Antti Paalanen<br>Se dagens program</p><p>Lördag 22.8 ANI och Kukkatalo<br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI<br>Se dagens program</p><p>Evenemangen har fritt inträde! Ändringar är möjliga.</p><p>Vid kraftigt regn ordnas evenemangen inomhus på Malms kulturhus.</p>", "en": "<p>The August of the Summer of Events will start with a bang, offering vulnerable melodies and uncompromising indie rock at Ala-Malmi Square!</p><p>The August of the Summer of Events brings great gigs and inspiring workshops to Ala-Malmi Square. Come and enjoy the happy days of late summer in Malmi!</p><p>Malmi Summer of Events 2026 will be held at a new venue on Ala-Malmi Square while Ala-Malmi Park is being renovated.</p><p>In August, the Container Stage of Malmi Summer of Events will host top acts such as Teini-Pää, The Ghost of Bruce Springsteen & The E Street Band, Arnie Alligator, Lyyti, Steve 'n' Seagulls, Antti Paalanen, Kukkatalo, ANI and many others!</p><p>In addition to enjoying the concerts, you can take part in a wide range of inspiring workshops in Ala-Malmi Square and at Cultural Centre Malmitalo. Please see the programme below.</p><p>Malmi Summer of Events 2026 August programme</p><p>Thu 13 August Teini-Pää and pilvet pilvet<br>17.30–18.20 pilvet pilvet<br>19.00–20.00 Teini-Pää<br>See the programme for the day</p><p>Friday 14 August The Ghost of Bruce Springsteen & The E Street Band<br>19.00–20.00 The Ghost of Bruce Springsteen & The E Street Band<br>See the programme for the day</p><p>Sat 15 August Children’s Saturday: Arnie Alligator, Joyful family music playschool, workshops and much more<br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>11.00–15.00: Promoting children's swimming skills<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars<br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator<br>See the programme for the day</p><p>Tue 18 August Lyyti, Salaliitto and Dancing in the City<br>16.00–16.45 Dancing in the City<br>17.30–18.20 Salaliitto<br>19.00–20.00 Lyyti<br>See the programme for the day</p><p>Wed 19 August: Steve ’n’ Seagulls, William Öster & the Moonliners<br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls<br>See the programme for the day (in Finnish)</p><p>Thu 20 August The Night of the Arts: Lala Salama, Juhlat and workshops<br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>17.00–18.00 Juhlat<br>19.00–20.00 Lala Salama<br>See the programme for the day</p><p>Fri 21 August Aili Järvelä and Antti Paalanen<br>17.00–18.00 Aili Järvelä<br>19.00–20.00 Antti Paalanen<br>See the programme for the day</p><p>Sat 22 August ANI and Kukkatalo<br>15.00–16.00 Kukkatalo<br>17.00–18.00 ANI<br>See the programme for the day</p><p>Entry to the events is free of charge! Changes are possible.</p><p>In the event of heavy rain, the events will be held inside Malmitalo.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F137D945311F42A01E82737A62AF349B/Malmin_tapahtumakesa_2026", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F137D945311F42A01E82737A62AF349B/Malms_evenemangssommar_2026", "en": "http://www.malmitalo.fi/en/events/event/F137D945311F42A01E82737A62AF349B/Malmi_Summer_of_Events_2026" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69124", "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:223/?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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:747/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?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:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384805, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-01T13:14:31.122910Z", "last_modified_time": "2026-06-01T13:14:31.122926Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790429.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384805/?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-06-01T13:14:30.977488Z", "last_modified_time": "2026-06-18T05:14:06.057796Z", "date_published": null, "start_time": "2026-09-01", "end_time": "2026-10-22", "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, "name": { "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen (FI/ENG)", "sv": "Konst för småbarn – Öppen konstverkstad för barn i åldern 1,5–3 år och deras vuxna (FI/ENG)", "en": "Art for Toddlers – Open art workshop for children aged 1.5–3, and their adults (FI/ENG)" }, "short_description": { "fi": "Caisan Taidetta taaperoille -työpajat tiistaisin ja torstaisin tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.", "en": "Caisa's Art for Toddlers workshops on Tuesdays and Thursdays introduce children to the world of visual arts through painting, colours and sculpting." }, "description": { "fi": "<p>Caisan Taidetta taaperoille -työpajat tiistaisin ja torstaisin tutustuttavat lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p><b>Tiistaisin 1.9.–22.12. klo 13.30–15.30</b>.<br><b>Torstaisin 3.9.–17.12. klo 10–12</b>.<br>Työpajoja ei järjestetä talvilomaviikolla tiistaina 13.10. ja torstaina 15.10.</p><p>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä.</p><p>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p>Opetuskielet: suomi ja englanti.</p><p>Osallistuminen</p><p>Työpaja on maksuton. Työpajaan voi osallistua silloin kun se itselle sopii: kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista; paikat täytetään saapumisjärjestyksessä.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>", "sv": "<p><b>Tisdagar 1 september–22 december kl. 13.30–15.30</b>.<br><b>Torsdagar 3 september–17 december kl. 10–12</b>.<br>Det hålls inga workshops under höstlovsveckan: tisdag 13.10 och torsdag 15.10.</p><p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim. <br> <br>Frågor och förfrågningar: teemu.savikurki@hel.fi</p><p>Åldersrekommendation: 1,5–3 år med en vuxen</p><p>Språk: engelska, finska</p><p>Fritt inträde</p>", "en": "<p>Caisa's Art for Toddlers workshops on Tuesdays and Thursdays introduce children to the world of visual arts through painting, colours and sculpting.</p><p><b>Tuesdays, 1 September–22 December, 13:30–15:30</b>.<br><b>Thursdays, 3 September–17 December, 10:00–12:00</b>.<br>There will be no workshops on Tuesday, 13 October, and Thursday, 15 October, during the autumn holiday week.</p><p>The workshops inspire and guide adults and children to make and experience art together. Together with their adult, children may get to know different art materials and techniques, which are placed in different points of the studio space. The space always has easels and the opportunity to sculpt. Children can work at their own pace and get to know the crafting points that change weekly.</p><p>The workshops aim to give children the opportunity to try their own art-making and develop social skills with other children. The attachment of child and adult is strengthened in a playful and creative environment.</p><p>The workshop is led by art educator Eungyung Kim.</p><p>Languages of instruction: Finnish and English.</p><p>Participation:</p><p>The workshop is free of charge. You can participate in the workshop whenever it suits you: each time, or just sometimes. Choose a time that suits you and please arrive on time. No pre-registration necessary; places will be filled on a first-come, first-served basis.</p><p>Inquiries and questions: teemu.savikurki@hel.fi</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/090BE058FE197926A7F00ACAA34B65A9/Taidetta_taaperoille", "sv": "http://www.caisa.fi/sv/evenemang/event/090BE058FE197926A7F00ACAA34B65A9/Konst_for_smabarn", "en": "http://www.caisa.fi/en/events/event/090BE058FE197926A7F00ACAA34B65A9/Art_for_Toddlers" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69124/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68347", "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:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385060, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T13:13:25.853383Z", "last_modified_time": "2026-06-10T13:13:25.853397Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787750.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385060/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T13:13:25.762173Z", "last_modified_time": "2026-06-17T14:14:10.848273Z", "date_published": null, "start_time": "2026-08-29T12:00:00Z", "end_time": "2026-08-29T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metsän suojassa – Katja Luhtala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille | Suomen luonnon päivä", "sv": "Metsän suojassa – Katja Luhtala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille | Suomen luonnon päivä", "en": "Metsän suojassa – Katja Luhtala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille | Suomen luonnon päivä" }, "short_description": { "fi": "Metsäsydän – Oodi lähimetsille on lempeä runoesitys, joka tarjoaa lepopaikan, jossa uppoutua runojen, orgaanisten äänten ja musiikin kautta lähimetsämuistoihin." }, "description": { "fi": "<p>Metsäsydän – Oodi lähimetsille on lempeä runoesitys, joka tarjoaa lepopaikan, jossa uppoutua runojen, orgaanisten äänten ja musiikin kautta lähimetsämuistoihin.</p><p>Esitys on yhteisöllinen, ryhmälähtöinen teos, joka sukeltaa henkilökohtaisiin ja kollektiivisiin lähimetsiin liittyviin muistoihin ja tunteisiin.</p><p>Esiintymässä:\u2028Anneli Johansson,\u2028Eeva Markkanen,\u2028Johanna Mikkonen,\u2028Katja Luhtala,\u2028Minna Inkeli,\u2028Outi Pirinen<br>Ohjaus ja dramaturgia: Katja Luhtala\u2028<br>Tekstit: työryhmä, Sari Lilja, Miianinna Auringonsilta\u2028<br>Musiikki, soittimet ja metsämateriaalit: työryhmä, kosketintaustat: Katja Luhtala, Tuutulaulu: Outi Pirinen ja Eeva Markkanen, Hulda: Minna Inkeli ja Katja Luhtala.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/212D5CD656446D01A7E305714A32FC31/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/212D5CD656446D01A7E305714A32FC31/Metsan_suojassa", "en": "http://www.kanneltalo.fi/en/events/event/212D5CD656446D01A7E305714A32FC31/Metsan_suojassa" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68346", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385059, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T13:13:25.426125Z", "last_modified_time": "2026-06-10T13:13:25.426140Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787749.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385059/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T13:13:25.274669Z", "last_modified_time": "2026-06-17T13:14:06.969373Z", "date_published": null, "start_time": "2026-08-29T10:00:00Z", "end_time": "2026-08-29T12: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, "name": { "fi": "Metsän suojassa – Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä", "sv": "Metsän suojassa", "en": "Metsän suojassa" }, "short_description": { "fi": "Pyöreän pöydän keskustelu Suomen luonnon päivänä 29.8.2026 on yksi Metsäkissa2044-hankkeen loppuhuipennuksen päätapahtumista." }, "description": { "fi": "<p>Pyöreän pöydän keskustelu Suomen luonnon päivänä 29.8.2026 on yksi Metsäkissa2044-hankkeen loppuhuipennuksen päätapahtumista.</p><p>Vetäjä: Jaana Kanninen<br>Osallistujat: Anni Kytömäki, Elisa Aaltola, Ilari Sääksjärvi, Jukka Ilmonen, Juha-Pekka Väisänen<br>Muut osallistujat tarkentuvat myöhemmin.<br> <br>Metsän suojassa -näyttely luo keskustelulle mystisen, metsän monista arvoista muistuttavan ympäristön. Keskusteluun on kutsuttu tieteen ja taiteen huippunimiä Suomesta. Mukaan ovat lupautuneet ainakin rakastettu kirjailija <b>Anni Kytömäki</b>, jonka teoksissa luonto ja sen kaikki eliöt ovat keskeisellä sijalla. Toinen eettisestä keskustelusta tuttu nimi on Eläinoikeusakatemian toiminnanjohtaja ja eläinfilosofi <b>Elisa Aaltola</b>, joka tunnetaan syvällisistä ajatuksistaan.</p><p>Turun yliopiston biodiversiteettitutkimuksen professori <b>Ilari Sääksjärvi</b> on Suomen Luontopaneelin varapuheenjohtaja ja palkittu yhteiskunnallinen vaikuttaja. Lisäksi keskustelijoiden joukossa on Metsäkissa2044 -hankkeen vetäjä, ”jokamiesjantuseksi” itsenään tituleeraava <b>Jukka Ilmonen</b>, jonka maailmankuva on räväkkä, radikaalikin. Joukko täydentyy vielä kohti elokuuta mentäessä.<br> <br>Jokainen osanottaja ilmaisee aluksi oman manifestinsa, josta käy ilmi, miten he hahmottavat hyvän tulevaisuuden, oman utopiansa. Myös Metsäkissa2044-ryhmän jäsen, käsitetaiteilija <b>Juha-Pekka Väisänen</b> osallistuu keskusteluun omalla manifestillaan, joka videoidaan suolta. Tästä alkaa syväluotaava keskustelu, jonka aikana hahmotellaan metsille ja kaikille sen asukkaille – ihmiskunta mukaan luettuna – hyvä tulevaisuus, joka osittain voi olla utopistinenkin. Tiedossa on keskustelu, jossa jokainen ruokkii toisensa näkemystä, sillä erilaisista dialogikeskusteluista niin tutuksi tullutta vastakkainasettelua ei nyt haeta.</p><p>Kaksivuotinen Metsäkissa2044-hanke huipentuu Kanneltalon tapahtumasarjaan. Se avataan yleisölle 14.8.2026 Metsän suojassa -näyttelyn muodossa, ja siitä alkaa tapahtumasarja, joka päättyy Suomen luonnon päivänä 29.8.2026. Väliin mahtuu metsäteatteria, metsään liittyviä ääniteoksia, luentoja ja työpajoja.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3EA7FF161BEC4E7C7B667EC2E4E066E3/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3EA7FF161BEC4E7C7B667EC2E4E066E3/Metsan_suojassa", "en": "http://www.kanneltalo.fi/en/events/event/3EA7FF161BEC4E7C7B667EC2E4E066E3/Metsan_suojassa" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68346/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68343", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385047, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T09:13:45.861798Z", "last_modified_time": "2026-06-10T09:13:45.861813Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787745.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385047/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T09:13:45.710483Z", "last_modified_time": "2026-06-17T13:14:04.238785Z", "date_published": null, "start_time": "2026-08-22T12:00:00Z", "end_time": "2026-08-22T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metsän suojassa – Taiteilijatapaaminen: Susu Rytteri", "sv": "Metsän suojassa", "en": "Metsän suojassa" }, "short_description": { "fi": "Kuvataiteilija ja biologi Susu Rytteri rakentaa Kanneltalon galleriaan monumentaalisen teoksen ”Utopia metsästä.”" }, "description": { "fi": "<p>Kuvataiteilija ja biologi Susu Rytteri rakentaa Kanneltalon galleriaan monumentaalisen teoksen ”Utopia metsästä.”</p><p>Teoksessa savilaastilla rapatun taustan halki lentää suuri parvi kevyitä pihlajaperhosia. Teoksen rinnalla nähdään sadan piirroksen sarja ”Elämän puu” sekä liikkuvaa kuvaa.</p><p>Metsän suojassa on elävä ja moniaistinen näyttelykokonaisuus, joka yhdistää visuaalisen taiteen, äänen, liikkeen ja osallistavat kokemukset. Näyttely kutsuu pohtimaan metsän arvoja ja merkityksiä sekä tarkastelemaan omaa metsäsuhdetta eri näkökulmista. Kokonaisuus on Koneen Säätiön rahoittaman kaksivuotisen Metsäkissa2044-hankkeen loppuhuipennus.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/21941A11E8D2C05578C8F4922C672182/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/21941A11E8D2C05578C8F4922C672182/Metsan_suojassa", "en": "http://www.kanneltalo.fi/en/events/event/21941A11E8D2C05578C8F4922C672182/Metsan_suojassa" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68343/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68342", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385044, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T08:13:22.741282Z", "last_modified_time": "2026-06-10T08:13:22.741296Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787744.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385044/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T08:13:22.656119Z", "last_modified_time": "2026-06-17T13:14:03.978745Z", "date_published": null, "start_time": "2026-08-22T10:00:00Z", "end_time": "2026-08-22T12: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, "name": { "fi": "Metsän suojassa – Metsäimprodialogi", "sv": "Utopiapedagogiikkaa: professori Antti Rajalan ja väitöskirjatutkija Aki Saariahon luento – Metsäimprodialogi", "en": "Utopiapedagogiikkaa: professori Antti Rajalan ja väitöskirjatutkija Aki Saariahon luento – Metsäimprodialogi" }, "short_description": { "fi": "Jukka IImosen metsädialogissa pyritään näkemään metsäasiat poikkeavin silmin, oudoin osallistujin." }, "description": { "fi": "<p>Jukka IImosen metsädialogissa pyritään näkemään metsäasiat poikkeavin silmin, oudoin osallistujin.</p><p>Metsädialogiin, jossa on vähemmän dialogia ja enemmän ristiriitoja, on ilmoittautunut jo mm. hömötiainen, kirjanpainaja, sijoitusrahaston edustaja Bostonista ja japanilainen ekoterroristi (jos ei ole telkien takana) sekä Virtaska, kärttyinen mökinomistaja. Luultavasti pari muutakin.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/88F5CE2B982FB968EAFDF2F6D36BA052/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/88F5CE2B982FB968EAFDF2F6D36BA052/Utopiapedagogiikkaa_professori_Antti_Rajalan_ja_vaitoskirjatutkija_Aki_Saariahon_luento", "en": "http://www.kanneltalo.fi/en/events/event/88F5CE2B982FB968EAFDF2F6D36BA052/Utopiapedagogiikkaa_professori_Antti_Rajalan_ja_vaitoskirjatutkija_Aki_Saariahon_luento" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68342/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68281", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1722082, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T13:14:02.943891Z", "last_modified_time": "2026-03-24T13:14:02.943908Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786645.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1722082/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-24T13:14:02.752434Z", "last_modified_time": "2026-06-17T13:14:01.205154Z", "date_published": null, "start_time": "2026-08-14", "end_time": "2026-08-29", "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, "name": { "fi": "Metsän suojassa – Moniaistinen näyttely- ja tapahtumakokonaisuus", "sv": "Metsän suojassa – I skydd av skogen – Multisensorisk utställnings- och evenemangsenhet", "en": "Metsän suojassa – In the Shelter of the Forest – Multi-sensory exhibition and event series" }, "short_description": { "fi": "Metsän suojassa on moniaistinen näyttely ja tapahtumakokonaisuus, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta.", "sv": "Metsän suojassa är en multisensorisk utställning och evenemangshelhet som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande.", "en": "In the Shelter of the Forest is a multi-sensory exhibition and event that invites you to reflect on the future of the forest through art, science and participation." }, "description": { "fi": "<p>Metsän suojassa on moniaistinen näyttely ja tapahtumakokonaisuus, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta.</p><p>Metsän suojassa on elävä ja moniaistinen näyttelykokonaisuus, joka yhdistää visuaalisen taiteen, äänen, liikkeen ja osallistavat kokemukset. Näyttely kutsuu pohtimaan metsän arvoja ja merkityksiä sekä tarkastelemaan omaa metsäsuhdetta eri näkökulmista. Kokonaisuus on Koneen Säätiön rahoittaman kaksivuotisen Metsäkissa2044-hankkeen loppuhuipennus.</p><p>Kuvataiteilija ja biologi <b>Susu Rytteri</b> rakentaa Kanneltalon galleriaan monumentaalisen teoksen ”Utopia metsästä”, jossa savilaastilla rapatun taustan halki lentää suuri parvi kevyitä pihlajaperhosia. Teoksen rinnalla nähdään sadan piirroksen sarja ”Elämän puu” sekä liikkuvaa kuvaa.</p><p>Muusikko <b>Katja Luhtala</b> luo näyttelyyn ääniteoksen ”Perhosten kieli”, joka rakentaa tilaan metsän mystisen ja moniulotteisen tunnelman.</p><p>Yleisö pääsee kokemaan metsän tunnelman sen eliöiden ja olentojen näkökulmasta sekä osallistumaan työpajoihin ja keskusteluihin. Taiteiden yönä 20.8. yleisö saa rakentaa savirapatuista levyistä yhteisötaideteoksen Metsänpohja, ja tuolloin on mahdollista myös silittää Metsäkissaa.</p><p><u><a href=\"https://www.metsakissa.fi/\">Tutustu Metsäkissa2044-hankkeen taiteellisiin ja journalistisiin sisältöihin</u></a>.</p><p>Näyttelyssä ovat esillä myös hankkeen muut osa-alueet: Legioonateatterin metsäteatterikollektiivi <b>Virpi Koskelan</b> johdolla, Luhtalan yhteisötaiteelliset ääniteokset, <b>Aki Saariahon</b> ja <b>Antti Rajalan</b> utopiapedagogiikka sekä <b>Jukka Ilmosen</b> improdialogi.</p><p><b>Metsän suojassa -tapahtumakokonaisuus</b></p><p><u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Metsän suojassa är en multisensorisk utställning och evenemangshelhet som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande.</p><p>Metsän suojassa är en levande och multisensorisk utställningshelhet som kombinerar visuell konst, ljud, rörelse och inkluderande upplevelser. Utställningen bjuder in oss att reflektera över skogens värden och betydelser och att granska vår egen relation till skogen ur olika perspektiv. Projektet är kulmen på det tvååriga projektet Metsäkissa2044, som finansierats av Konestiftelsen.</p><p>I Gamlasgårdens galleri bygger bildkonstnären och biologen Susu Rytteri det monumentala verket ”Utopia metsästä” (utopi av skog), där en stor flock lätta hagtornsfjärilar flyger genom en bakgrund rappad med lera. Vid sidan av verket ser vi serien ”Elämän puu” (livets träd) av hundra teckningar samt rörlig bild.</p><p>Till utställningen skapar också musikern Katja Luhtala ljudverket Metsän kieli (Skogens språk), som bygger upp en mystisk och flerdimensionell stämning i rummet.</p><p>Publiken får uppleva stämningen i skogen genom dess organismer och varelser och delta i verkstäder och diskussioner. Under konstens natt den 20 augusti får publiken bygga gemenskapkonstverket Metsänpohja (skogsmatta) av lerrappade skivor, och samtidigt får man också klappa Skogskatten. Under hela utställningstiden kan man bekanta sig med Metsäkissa2044-projektets konstnärliga och journalistiska mål på www.metsakissa.fi.</p><p>I utställningen ingår också andra delområden av projektet: Legioonateatteris skogsteaterkollektiv under ledning av Virpi Koskela, Luhtalas gemenskapkonstnärliga ljudverk, Antti Rajalas och Aki Saariahos utopipedagogik och Jukka Ilmonens improdialog.</p><p><b>Kringevenemang<br>lördag 15.8 </b><br>kl. 13-15<br>Jukka Ilmonen presenterar resultaten av projektet Metsäkissa2044</p><p><b>Torsdag 20.8 Konstens natt</b><br>klo 17-17.30 Metsä M – ett ljudverk med rörelse och poesi (Katja Luhtala & kollektiv)<br>klo 17.30-20 Metsänpohja – gemenskapkonstverk (Susu Rytteri)<br>Även möjlighet att klappa Skogskatten!</p><p><b>Fredag 21.8 </b><br>kl. 17-18<br>Skogshaikuverkstad (Katja Luhtala)</p><p><b>Lördag 22.8 </b><br>kl. 13-15 <br>Improviserad dialog (Jukka Ilmonen)<br>kl. 15-15.30 Konstnärsträff: Susu Rytteri</p><p><b>Torsdag 27.8 </b><br>kl. 17-18.30 Natursamarbetsworkshop (Virpi Koskela)</p><p><b>Fredag 28.8 </b><br>kl. 16-17.30 Antti Rajala och Aki Saariaho: Utopipedagogik <br>kl. 18-19.30 Skogsteaterföreställning i skogen (platsen preciseras senare) <br>Regissören och arbetsgruppen berättar om processen</p><p><b>Lördag 29.8 Finska naturens dag</b><br>kl. 13-15 Rundabordssamtal (Jaana Kanninen, med Anni Kytömäki m.fl.)<br>kl. 15-15.30 Metsäsydän – ode till närskogen (Katja Luhtala & kollektiv)</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemanget är fritt.</p>", "en": "<p>In the Shelter of the Forest is a multi-sensory exhibition and event that invites you to reflect on the future of the forest through art, science and participation.</p><p>In the Shelter of the Forest is a living and multi-sensory exhibition that combines visual art, sound, movement and participatory experiences. The exhibition invites you to reflect on the values and meanings of the forest, and to examine your own relationship with the forest from different perspectives. The project is the culmination of the two-year Metsäkissa2044 project funded by the Kone Foundation.</p><p>Visual artist and biologist Susu Rytteri builds a monumental work entitled Utopia metsästä (‘Utopia of a Forest’) in the Kanneltalo gallery, in which a swarm of lightweight black-veined white butterflies fly through a background plastered with clay. The work <br>will be accompanied by a series of 100 drawings entitled Elämän puu (‘The Tree of Life’) and moving images.</p><p>Musician Katja Luhtala creates an audio piece for the exhibition entitled Metsän kieli (‘Language of the Forest‘), building a mystical and multidimensional forest atmosphere.</p><p>The audience will have an opportunity to experience the atmosphere of the forest from the point of view of its creatures and organisms, and take part in workshops and discussions. On the Night of the Arts on 20 August, the audience will get to build a community artwork entitled Metsänpohja (‘Forest Floor’) from clay-plastered panels and have an opportunity to pet the Forest Cat. Throughout the exhibition, you can check out the artistic and journalistic content of the Metsäkissa2044 project at www.metsakissa.fi.</p><p>Other aspects of the project will also be on display in the exhibition: Legioonateatteri’s forest theatre collective led by Virpi Koskela, Luhtala’s community-based sound art performances, Antti Rajala´s and Aki Saariaho´s utopian pedagogy and Jukka Ilmonen’s improvisational dialogue.</p><p><b>Side events<br>Saturday 15 August </b><br>13.00-15.00<br>Jukka Ilmonen presents the results of the Metsäkissa2044 project</p><p><b>Thursday 20 August: Night of the Arts</b><br>17.00-17.30: Metsä M – a movement-based and poetic sound art performance (Katja Luhtala & collective)<br>17.30-20.00: Metsänpohja (‘Forest Floor’) – community artwork (Susu Rytteri)<br>The audience can also pet the Forest Cat!</p><p><b>Friday 21 August </b><br>17.00-18.00<br>Forest haiku workshop (Katja Luhtala)</p><p><b>Saturday 22 August </b><br>13.00-15.00 <br>Improvisation dialogue (Jukka Ilmonen)<br>15.00-15.30: Artist meeting: Susu Rytteri</p><p><b>Thursday 27 August </b><br>17.00-18.30: Nature connection workshop (Virpi Koskela)</p><p><b>Friday 28 August</b> <br>16-17.30 Antti Rajala and Aki Saariaho: Utopian pedagogy <br>18.00-19.30: Forest theatre performance in the woods (location to be specified later) <br>The director and the creative team will talk about the process</p><p><b>Saturday 29 August: Finnish Nature Day</b><br>13.00-15.00: Roundtable discussion (Jaana Kanninen, featuring Anni Kytömäki and others)<br>15.0-15.30: Metsäsydän (‘Forest Heart’) – an ode to the local forest (Katja Luhtala & collective)</p><p>The exhibition and events are part of the environmental programme of the City of Helsinki Cultural Services.</p><p>The exhibition and events are free of charge.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/BC3240580FEDA95831DF176E618667B2/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/BC3240580FEDA95831DF176E618667B2/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68281/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnlqpsaa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqplwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpmn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpmxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpnbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpnme/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpnvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpn7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpoja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpoue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpo6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqppii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpprq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpp3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpqfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpqpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpqzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqprda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqprmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqprv4/?format=api" } ], "images": [ { "id": 2385234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T12:40:37.016445Z", "last_modified_time": "2026-06-17T12:40:37.016459Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/10c6a4d5-064b-46e2-8f16-43e59bc4388c.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "graafinen kuva jossa nainen lukee kirjaa kahdelle lapselle. teksti: Ompun iltasatu", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-17T12:46:51.236674Z", "last_modified_time": "2026-06-17T12:46:51.236690Z", "date_published": null, "start_time": "2026-08-10T14:30:00Z", "end_time": "2026-12-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ompun Iltasatu", "sv": "Sagostund på finska på Iso Omena bibliotek ", "en": "Storytime in Finnish at the Iso Omena Library" }, "short_description": { "fi": "Satuhetki joka maanantai", "sv": "Sagostund varje måndag", "en": "Storytime every monday" }, "description": { "fi": "<p>Iltasatuhetkillä luetaan suomenkielisiä satuja ja tarinoita. Tulethan kuuntelemaan oman aikuisen kanssa. Satuhetki on tarkoitettu alle kouluikäisille lapsille. Tervetuloa mukaan!</p>", "sv": "<p>På våra kvällssagostunder läser vi sagor och berättelser på finska högt. Kom gärna och lyssna tillsammans med din egen vuxen. Sagostunden är avsedd för barn i före skol åldern. Varmt välkommen med!</p>", "en": "<p>At our evening storytimes, we read Finnish‑language stories and tales aloud. Please come and listen together with your accompanying adult. Storytime is intended for children under 7yrs. You are warmly welcome!</p>" }, "provider_contact_info": null, "info_url": null, "location_extra_info": { "fi": "Lasten alue", "sv": "Barnomrode", "en": "Children's area" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnlqpsaa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69450", "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:104/?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: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/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/borrowed-cities-kaupunkikaevely-4182198/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/borrowed-cities-kaupunkikaevely-4182198/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/borrowed-cities-kaupunkikaevely-4182198/" }, "price": { "fi": "10 €", "sv": "10 €", "en": "10 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385232, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T10:14:14.642106Z", "last_modified_time": "2026-06-17T10:14:14.642121Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794394.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385232/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T10:14:14.566607Z", "last_modified_time": "2026-06-17T11:14:00.109254Z", "date_published": null, "start_time": "2026-08-22T14:00:00Z", "end_time": "2026-08-22T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Shaghayegh Ansari: Borrowed Cities", "sv": "Shaghayegh Ansari: Borrowed Cities", "en": "Shaghayegh Ansari: Borrowed Cities" }, "short_description": { "fi": "Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.", "en": "Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki." }, "description": { "fi": "<p>Borrowed Cities (\"lainakaupungit\") on paikkasidonnainen audiokävely, joka johdattaa yleisönsä opastetulle kierrokselle Helsinkiin.</p><p>Esitys lähtee Kulttuurikeskus Caisasta, Leipätehtaan sisäpihalta osoitteessa Kaikukatu 4 B.</p><p>Teos käyttää itse kaupunkia näyttämönä, jolla se tutkii, kuinka ekologinen menetys ja muuttoliike horjuttavat tilakokemustamme. Heijastamalla uhanalaisten kaupunkien katkelmia Helsingin kaduille teos kyseenalaistaa ajatuksen, että kriisit kuuluisivat vain niiden syntypaikkoihin, ja esittää, kuinka kaupungit imevät itseensä tarinoita, suruja ja tulevaisuuksia myös pitkien matkojen takaa.</p><p>Kävelyä ohjaavat niiden kertomukset, joiden elämää ekologinen trauma on muokannut: paikallisten yhteisöjen, maahanmuuttajien ja muiden, joilla on omakohtaista kokemusta ympäristön epävakaudesta. Helsinki näyttäytyy heidän näkökulmastaan. Yhdessä kävelemällä teos pyrkii luomaan yhteisen tilan kuuntelemiselle, välittämiselle ja kulttuurienväliselle ymmärrykselle.</p><p>Mitä tarkoittaa kantaa useita alueita yhdessä ruumiissa? Miten muisti voi paljastaa ilmastoepäoikeudenmukaisuuden eriarvoiset todellisuudet?</p><p>Ohjaus: Shaghayegh Ansari, Aref Houshmandnia <br>Käsikirjoitus: Aref Houshmandnia <br>Esiintyjä: Shaghayegh Ansari <br>Äänisuunnittelu: Maija Suominen</p><p>Liput: 10 € osoitteesta lippu.fi<br>Taiteiden yönä 20.8. järjestetään kaksi maksutonta kävelyä klo 17 ja 20: ilmoittaudu sähköpostilla osoitteeseen caisa.tiedotus@hel.fi. Kullekin Taiteiden yön kävelylle otetaan mukaan 10 osallistujaa / kävely.</p><p>Esityksen kieli: englanti / farsi<br>Esityksen kesto: n. 1,5 t <br>Ikärajasuositus: 16-v. ja sitä vanhemmat</p>", "en": "<p>Borrowed Cities is a site-specific audio-walk that leads audiences on a guided tour through Helsinki.</p><p>The performance sets off from Cultural Centre Caisa on the courtyard of Kaikukatu 4 B.</p><p>The work uses the city itself as the stage for exploring how ecological loss and migration unsettle our sense of place. By projecting fragments of endangered cities onto the streets of Helsinki, the piece challenges the idea that crises belong only to their locations and suggests that cities absorb stories, griefs, and futures from far away.</p><p>The narratives of the ones whose lives have been shaped by ecological trauma – local communities, immigrants, and others with lived experience of environmental instability, guide the walk and allow Helsinki to be seen through their perspective. By walking together, the work tries to create a shared space of listening, care, and cross-cultural understanding.</p><p>What does it mean to carry multiple geographies within one body? How can memory reveal the uneven realities of climate injustice?</p><p>Director: Shaghayegh Ansari, Aref Houshmandnia <br>Writer: Aref Houshmandnia <br>Performer: Shaghayegh Ansari <br>Sound designer: Maija Suominen</p><p>Tickets: 10 euros, sold at lippu.fi.<br>On the Night of the Arts, two free-of-charge walks are held at 17.00 and 20.00: register via email at caisa.tiedotus@hel.fi. There is room for 10 participants per walk.</p><p>Performance language: English / Farsi<br>Age recommendation: 16 and older<br>Performance duration: 1.5 h</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BD819B9F78213BBF8F0A1002878717BB/Shaghayegh_Ansari_Borrowed_Cities_", "sv": "http://www.caisa.fi/sv/evenemang/event/BD819B9F78213BBF8F0A1002878717BB/Shaghayegh_Ansari_Borrowed_Cities_", "en": "http://www.caisa.fi/en/events/event/BD819B9F78213BBF8F0A1002878717BB/Shaghayegh_Ansari_Borrowed_Cities_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69450/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68629", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385224, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T09:14:56.484285Z", "last_modified_time": "2026-06-17T09:14:56.484301Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385224/?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-06-17T09:14:56.325910Z", "last_modified_time": "2026-06-17T09:14:56.688675Z", "date_published": null, "start_time": "2026-09-26T12:00:00Z", "end_time": "2026-09-26T15: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, "name": { "fi": "Yalla Disko", "sv": "Yalla Disko", "en": "Yalla Disko" }, "short_description": { "fi": "Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!", "sv": "Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!", "en": "Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!" }, "description": { "fi": "<p>Hypätään yhdessä värikkäälle tanssilattialle, missä arabihitit pauhaavat, ilmapallot lentelevät ja nauru raikaa!</p><p>Yalla Collectiven DJ pistää bileet käyntiin, Ramithawi tuo taian lavalle live-musiikillaan ja Mo-Clown hassuttelee. Leikit ja erilaiset taidetyöpajat tempaavat koko perheen mukaansa. Kasvomaalaus voi muuttaa sinut vaikka tiikeriksi. Nähdään tanssilattialla!</p><p>Kaikki ovat tervetulleita!</p><p>Yalla Disko on osa Nomads Festivaalia. Tapahtuman tuottaa Kulttuuriyhdistämö Interkult yhteistyössä Annantalon kanssa.</p>", "sv": "<p>Kom med på disko där arabiska hits spelas, ballonger svävar omkring och skrattet bubblar!</p><p>Yalla Collectives DJ sätter igång festen, Ramithawi bjuder på härlig livemusik, Mo-Clown skojar och hittar på bus, och det finns roliga lekar och kreativa verkstäder för alla. I ansiktsmålningen kan du till exempel bli en tiger!</p><p>Yalla Disko är en del av Nomads Festival och ordnas av Interkult tillsammans med Annegården.</p>", "en": "<p>Come join us on a colorful dance floor where Arabic hits are playing, balloons float around, and laughter fills the air!</p><p>Yalla Collective’s DJ gets the party started, Ramithawi brings magic to the stage with live music, Mo-Clown brings fun and silliness, and there are playful games and creative workshops for everyone. At the face painting station, you can even turn into a tiger!</p><p>Yalla Disco is part of the Nomads Festival and is produced by Interkult in collaboration with Annantalo.</p>", "ar": "<p><p lang=\"ar\" dir=\"rtl\"><br>انضموا إلينا إلى ساحة رقص مليئة بالألوان، حيث تُعزف أشهر الأغاني العربية، وتطفو البالونات في كل مكان، ويملأ الضحك الأجواء! يفتتح دي جي \"مجموعة يلا\" الحفلة، ويقدّم \"راميثاوي\" سحره على المسرح من خلال عرض موسيقي حي، بينما يضيف المهرّج \"مو\" أجواءً من المرح والضحك، كما تتوفر ألعاب ممتعة وورش إبداعية للجميع. وفي ركن رسم الوجوه، يمكنكِ حتى أن تتحول إلى نمر!<br></p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/BE35D2F857EBDD0FFBD4DD40CA65A393/Yalla_Disko", "sv": "http://www.annantalo.fi/sv/evenemang/event/BE35D2F857EBDD0FFBD4DD40CA65A393/Yalla_Disko", "en": "http://www.annantalo.fi/en/events/event/BE35D2F857EBDD0FFBD4DD40CA65A393/Yalla_Disko" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68629/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnjzzxby", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzowa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzpv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzqfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzqza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzrku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzr7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzsrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzztbq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzztui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzuia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzu2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzvl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzv6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzwra/?format=api" } ], "images": [ { "id": 1494535, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-22T12:19:48.420053Z", "last_modified_time": "2025-10-22T12:19:48.420073Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bd8f7a11-0cda-482e-81e2-eb23b6d0a979.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Nainen puhuu asiakkaalle älylaite kädessään. Tabletilla näkyy Espoon kaupungin logo. Piirroskuva.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494535/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:56:50.258209Z", "last_modified_time": "2026-06-17T08:56:50.258225Z", "date_published": null, "start_time": "2026-09-03T11:30:00Z", "end_time": "2026-12-17T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hello Espoo -info ja Liikkuva Espoo-info Entressen kirjastossa", "sv": "Hello Espoo-info och Mobila Esbo-info i Entressebiblioteket", "en": "Hello Espoo Info and Mobile Espoo Info at Entresse Library" }, "short_description": { "fi": "Tarjoamme neuvoja viranomaisasiointiin ja palveluihin liittyen sekä autamme digipalveluiden käytössä.", "sv": "Vi erbjuder rådgivning i olika myndighetsärenden och tjänster, och hjälper till med användningen av digitala tjänster.", "en": "We offer advice on different official matters and services, and help with the use of digital services." }, "description": { "fi": "<p>Tarjoamme neuvontaa erilaisista julkisista palveluista sekä tukea sähköiseen asiointiin. Ohjaamme tarvittaessa oikean palvelun piiriin.</p><p>Autamme myös löytämään tietoa esimerkiksi harrastuksista ja vapaa-ajan toiminnasta Espoossa.</p><p><strong>Palvelemme helpolla suomen kielellä, englanniksi ja puhelintulkin välityksellä.</strong></p><p>Tervetuloa!</p><ul><li><a href=\"https://www.espoo.fi/fi/hello-espoo-infon-tiedot-useilla-eri-kielilla\">Lue lisää Hello Espoo -infosta useilla kielillä.</a></li></ul><p>#HelloEspoo</p>", "sv": "<p>Vi erbjuder rådgivning om olika offentliga tjänster och stöd för att använda olika digitala tjänster. Vi vägleder dig till rätt tjänst.</p><p>Vi hjälper dig också att hitta information om hobbyer och fritidsaktiviteter i Esbo.</p><p><strong>Vi betjänar på lätt finska, engelska och via telefontolk.</strong></p><p>Välkommen!</p><ul><li><a href=\"https://www.espoo.fi/sv/hello-espoo-info-information-pa-olika-sprak\">Läs mer om Hello Espoo-info på olika språk.</a></li></ul><p>#HelloEspoo</p>", "en": "<p>We offer advice on various public services and support for using different digital services. We will guide you to the right service.</p><p>We also help you to find information about e.g hobbies and leisure activities in Espoo.</p><p><strong>We serve in easy Finnish, English and via telephone interpreter.</strong></p><p>Welcome!</p><ul><li><a href=\"https://www.espoo.fi/en/hello-espoo-info-information-several-languages\">Read more about Hello Espoo Info in different languages.</a></li></ul><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "location_extra_info": null, "provider": { "fi": "Elinkeino & Asiointipalvelut", "sv": "Näringar & Kundtjänsterna", "en": "Economic Development & Customer Service Unit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnjzzxby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68253", "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:351/?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:51/?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:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-elama-on-taikaa-kanneltalo-21472096/", "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-elama-on-taikaa-kanneltalo-21472096/", "en": "https://www.lippu.fi/event/jokeri-pokeri-box-elama-on-taikaa-kanneltalo-21472096/" }, "price": { "fi": "19,80 €", "sv": "19,80 €", "en": "19,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:45.951154Z", "last_modified_time": "2026-06-17T08:14:45.951169Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786496.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385213/?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-06-17T08:14:45.816786Z", "last_modified_time": "2026-06-17T08:14:46.144358Z", "date_published": null, "start_time": "2026-09-26T12:00:00Z", "end_time": "2026-09-26T13: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, "name": { "fi": "Jokeri Pokeri Box – Elämä on taikaa! – Taikuri Simo Aallon 50-vuotisjuhlakiertue", "sv": "Jokeri Pokeri Box – Elämä on taikaa!", "en": "Jokeri Pokeri Box – Elämä on taikaa!" }, "short_description": { "fi": "Simon pitkää ja menestyksekästä taikurin uraa on seurannut jo kaksi sukupolvea ja meno vaan paranee!" }, "description": { "fi": "<p>Simon pitkää ja menestyksekästä taikurin uraa on seurannut jo kaksi sukupolvea ja meno vaan paranee!</p><p>Juhlakiertueellaan Simo ja avustajavaimonsa Kirsti tarjoavat korkeatasoista, iloista ja hämmästyttävää taikuutta paketoituna sopivaksi koko perheelle ja kaikenikäisille katsojille. Show yhdistää klassisen taikuuden, visuaaliset efektit ja vuorovaikutteisuuden upeaksi kokemukseksi. Mukana ovat tietysti kivat eläinystävät!</p><p>Lasten apua toki tempuissa tarvitaan ja tällä kertaa mukaan otetaan myös aikuiset avustamaan taikuria.</p><p>Luvassa on siis taattua Jokeri Pokeri Box -laatua ja riemukasta taikuutta!</p><p>Kesto: 1 t, ei väliaikaa<br>Liput: 19,80 €, maks. 4 hengen ryhmälippu 69,6 €, alle 2-vuotiaat maksutta</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/74806463FABA7B736E311ED61B549E23/Jokeri_Pokeri_Box_Elama_on_taikaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/74806463FABA7B736E311ED61B549E23/Jokeri_Pokeri_Box_Elama_on_taikaa_", "en": "http://www.kanneltalo.fi/en/events/event/74806463FABA7B736E311ED61B549E23/Jokeri_Pokeri_Box_Elama_on_taikaa_" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68253/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69094", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/", "sv": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/", "en": "https://www.lippu.fi/artist/duocasten/laulun-virta-inkeristae-karjalaan-4170920/" }, "price": { "fi": "19 / 15 €", "sv": "19 / 15 €", "en": "19 / 15 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T07:14:21.337411Z", "last_modified_time": "2026-06-17T07:14:21.337426Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793203.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T07:14:21.223595Z", "last_modified_time": "2026-06-17T07:14:21.469906Z", "date_published": null, "start_time": "2026-09-19T14:00:00Z", "end_time": "2026-09-19T16:10: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, "name": { "fi": "Laulun virta – Inkeristä Karjalaan – DuoCasten & Rinne feat. Artemius | Sattuma Duo | Anne-Mari Kivimäki", "sv": "Laulun virta – Inkeristä Karjalaan", "en": "Laulun virta – Inkeristä Karjalaan" }, "short_description": { "fi": "Inkeriläis-karjalainen teemakonsertti tarjoaa kuulijoilleen itäisen rajaseudun harvinaisia helmiä kolmelta eri artistiryhmältä." }, "description": { "fi": "<p>Inkeriläis-karjalainen teemakonsertti tarjoaa kuulijoilleen itäisen rajaseudun harvinaisia helmiä kolmelta eri artistiryhmältä.</p><p>Inkeriläis-karjalainen teemakonsertti tarjoaa kuulijoilleen itäisen rajaseudun harvinaisia helmiä. Konsertti tuo lavalle kolme eri artistikokoonpanoa – DuoCasten & Rinne feat. Artemius, Sattuma Duo ja Anne-Mari Kivimäki – sekä tanssijat Minna Karttusen ja Jyrki Haapalan. Osassa lauluista artistit yhdistävät voimansa, joten konsertista ei tunnelmaa puutu!</p><p>Illan esiintyjiä yhdistää into välittää karjalaista ja inkeriläistä henkistä pääomaa yleisöilleen sekä seuraaville sukupolville. Esitettävät laulut kumpuavat sekä perinteestä että nykyajasta.</p><p>Konsertti yhdistää tekijöitä niin samoista kuin eri taustoista – mm. Nina Castén, Arto ja Eila Rinne ovat kotoisin Itä-Karjalasta. Laulun virta – Inkeristä Karjalaan tarjoaa lämminhenkisen illan, jossa kuulijat voivat tuntea yhteyttä juuriinsa, tarinaansa ja toisiinsa. Konsertti se on mahtava tilaisuus tutustua inkeriläis- ja karjalaismusiikkiin sekä harvemmin esitettävään kansanperinteeseen.</p><p>***</p><p>Muusikko, säveltäjä <b>Anne-Mari Kivimäki</b> on mainittu yhdeksi tämän hetken kiinnostavimmaksi kansanmusiikin tekijäksi, joka on kehittänyt oman soittotyylin, haitaritrancen. Kivimäki esiintyy ja kiertää soolona sekä Suistamon Sähkön kanssa Suomessa ja kansainvälisillä estradeilla.</p><p>Konsertissa Kivimäki esittää Emma-ehdokkuuden saaneen <i>Kotiin</i>-albumin kappaleita ja maistiaisia myös uudesta musiikista. Yleisöllä on lupa tanssia, laittaa silmät kiinni ja lähteä mukaan hypnoottiseen haitaritranceen ja arkistonauhojen rahiseviin tunnelmiin.</p><p>Konsertissa kahdessa eri kokoonpanossa esiintyvä folk-rock-muusikkona tunnettu Arto Rinne on levittänyt karjalaismusiikin ilosanomaa jo yli 40 vuoden ajan. <b>Sattuma duo (Arto ja Eila Rinne)</b> perustuu Rinteen ja hänen tyttärensä yhteistyöhön, jossa he esittävät karjalaista ja suomalaista kansanmusiikkia sekä omia, perinteeseen pohjautuvia kappaleitaan laulukielinään karjalan eri murteet ja suomi.</p><p>Duo on osa jo vuonna 2003 Petroskoissa perustettua Sattuma-yhtyettä, ja sen ohjelmistossa on poimintoja yhtyeen laajasta repertuaarista. Mukana on mm. jouhikkosäveliä, vienalaisia loitsuja sekä inkerinsuomalaisia röntysköjä.</p><p>Laulaja muusikot Arto Rinne ja Nina Castén perustivat vuonna 2025 Kouvolassa <b>Duo Casten & Rinne -kokoonpanon</b>, joka esiintyy myös Triona muiden muusikkojen kanssa. Artistit esittävät karjalaista, inkeriläistä ja suomenkielistä kansanmusiikkia, jonka juuret ulottuvat heidän synnyinseudulleen Venäjän Karjalaan. Inkeriläistaustainen Castén on profiloitunut maailmanmusiikin tummaäänisenä ja vivahteikkaana esittäjänä.</p><p>Viulisti-monitaituri <b>Artemius</b> tuo yhtyeeseen oman virtuoottisen panoksensa. Luvassa on sekä uudelleensovitettua perinnettä että omia sävellyksiä; niin räiskyvää iloa kuin kaihon sävyjä. Konsertissa esitetään myös yhtyeen uutuusteos: Duon upouusi musiikkivideo!</p><p>Yleisöä viihdyttävät myös tanssijat <b>Minna Karttunen</b> ja <b>Jyrki Haapala</b>, jotka ovat vuosikymmenten ajan toteuttaneet kansainvälisiä esittävän taiteen teoksia ja työskennelleet karjalaisen kulttuuriperinnön parissa.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan", "en": "http://www.kanneltalo.fi/en/events/event/CA710C9D59613A3BC342BB8253912A2D/Laulun_virta_Inkerista_Karjalaan" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69094/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68466", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816475, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T11:25:37.121476Z", "last_modified_time": "2026-04-14T11:25:37.121504Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786151.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816475/?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-04-14T11:25:36.894687Z", "last_modified_time": "2026-06-17T07:14:12.242236Z", "date_published": null, "start_time": "2026-08-15T08:00:00Z", "end_time": "2026-08-15T11: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, "name": { "fi": "Lasten lauantai: Aarne Alligaattori & Viidakkorumpu, Riemukas perhemuskari ja muuta puuhaa – Malmin tapahtumakesä 2026", "sv": "Barnens lördag: Arne Alligator, Den Glada familjmusiklekisen och annan sysselsättning – Malms evenemangssommar 2026", "en": "Children’s Saturday: Arnie Alligator, Joyful family music playschool and other activities – Malmi Summer of Events 2026" }, "short_description": { "fi": "Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!", "sv": "Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!", "en": "Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!" }, "description": { "fi": "<p>Lasten lauantai kutsuu perheet puuhastelemaan! Luvassa luontoaiheista tekemistä, kirjoja, muskaria, työpajoja ja lasten lemppari: Aarne Alligaattori & Viidakkorumpu!</p><p><b>Aikataulu</b><br>11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle<br>11.00-15.00 Lasten uimataidon edistäminen<br>Klo 11–14.45 Hyvän arjen rakentajat: Mitä kivaa syksyn perhearkeen?<br>klo 12.30–12.45 Just Dance -katutanssishow <br>12.00–14.00 Yksin hanke: Minikirjoja ja matariki-tähtien punontaa <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Aarne Alligaattori & Viidakkorumpu</p><p><b>Päivän ohjelma</p><p>klo 11.00–14.00 Malmin Varustamo: Luontopiste pikkuväelle</b><br>Luontopiste kutsuu perheen pienimmät tutkimaan ja ihmettelemään luontoa monipuolisten tehtävien ja materiaalien parissa.</p><p><b> klo 11.00–15.00 Lasten uimataidon edistäminen</b><br>Lasten uimataidon edistäminen<br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.</p><p><b> klo 11–14.45 Hyvän arjen rakentajat: Mitä kivaa syksyn perhearkeen?</b><br>Kuka on teidän perheen maalikuningas tai tuleva taiteilija? Tutustu Hyvän arjen rakentajien toimintaan ja löydä uusia ideoita syksyn arkeen ja harrastuksiin!<br>Luvassa liikunnan iloa, luovaa tekemistä sekä hattaraa isoille ja pienille arjen sankareille.</p><p><b>klo 12.30–12.45 Just Dance -katutanssishow</b><br>Tule mukaan ja anna rytmin viedä!</p><p><b>klo 12.00–14.00 Yksin-hanke: Minikirjoja ja matariki tähtien punontaa</b><br>Työpajassa askarrellaan omia minikirjoja ja punotaan matariki tähtiä yhdessä luovan tekemisen hengessä.</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br>”Pyöri kuin pyörre veden pinnalla!<br>Leiju kuin pilvi taivaan kannella!”</p><p>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki, tuttu Henna ja Supersankarit yhtyeestä.</p><p><b>klo 14.00–14.45 Aarne Alligaattori & Viidakkorumpu</b><br>Ihastuttava ja halattava Aarne Alligaattori saapuu lavalle yhdessä safariasuisten ystäviensä Tobben ja Jocken kanssa. Aarne hassuttelee, keksii kepposia ja soittaa viidakkorumpuja ratkiriemukkaassa esityksessä koko perheelle.</p><p>Aarne Alligaattoria on katsottu YouTubessa yli 400 miljoonaa kertaa, ja hänen musiikkinsa on myynyt useita platina ja kultalevyjä eri maissa.</p><p>Kaikkiin tapahtumiin on vapaa pääsy, tervetuloa koko perhe!</p>", "sv": "<p>Barnens lördag bjuder in familjerna till sysselsättning! Sysselsättning med naturtema, böcker, musiklekis, verkstäder och barnens favorit: Arne Alligator & Viidakkorumpu!</p><p><b>Tidtabell</b><br>11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta<br>11.00–15.00 Främjande av barns simkunskaper<br>12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor <br>13.00–13.30 Glatt familjemusiklekis<br>14.00–14.45 Arne Alligator & Viidakkorumpu</p><p><b>Dagens program</p><p>kl. 11.00–14.00 Varustamo-livsrummet i Malm: En naturpunkt för de minsta</b><br>Naturpunkten bjuder in familjens minsta att undersöka och beundra naturen med hjälp av mångsidiga uppgifter och material.</p><p><b> kl. 11.00–15.00 Främjande av barns simkunskaper</b><br>Kom och diskutera barns simkunskaper medan de minsta i familjen får hoppa i bollhavet.<br>Medverkar gör Helsingfors stads fostrans- och utbildningssektorn, Fimu ry och Monaliiku ry.</p><p><b>klo 12.00–14.00 Yksin-projektet: Miniböcker och flätning av matariki-stjärnor</b><br>I verkstaden pysslar vi egna miniböcker och flätar matariki-stjärnor tillsammans i en kreativ anda.</p><p><b>klo 13.00–13.30 Glatt musiklekis</b><br>”Snurra som en virvel på vattenytan!<br>Sväva som ett moln på himlen!”</p><p>I det glada familjemusiklekiset får vi sjunga, leka och musicera i somrig stämning. Musiklekiset leds av Henna-Maija Kuki, barnmusiker med magisterexamen i musik, som är känd från bandet Henna ja Supersankarit.</p><p><b>klo 14.00–14.45 Arne Alligator& Viidakkorumpu</b><br>Bedårande och kramgoa Arne Arne Alligator intar scenen tillsammans med sina safariklädda vänner Tobbe och Jocke. Aarne skämtar, busar och spelar djungeltrummor i en hysteriskt rolig show för hela familjen.</p><p>Arne Alligator har setts på YouTube mer än 400 miljoner gånger och hans musik har sålt flera platina- och guldskivor i olika länder.</p><p>Alla evenemang har fritt inträde, vi önskar hela familjen välkommen!</p>", "en": "<p>Children's Saturday invites families to have fun! The programme of the day offers nature-themed activities, books, music playschool, workshops and the children's absolute favourite: Arnie Alligator & Viidakkorumpu!</p><p><b>Schedule</b><br>11.00–14.00 Malmin Varustamo parish: Nature activity point for young ones<br>11.00–15.00 Promoting children's swimming skills<br>12.00–14.00: The Yksin (‘Alone’) project: Miniature books and weaving matariki stars <br>13.00–13.30 Joyful family music playschool<br>14.00–14.45 Arnie Alligator & Viidakkorumpu</p><p><b>Programme of the day</p><p>11.00–14.00 Malmin Varustamo: Nature activity point for young ones</b><br>The nature activity point invites the youngest in the family to explore and wonder at nature through a range of activities and materials.</p><p><b>11.00–15.00 Promoting children's swimming skills</b><br>Come discuss children’s swimming skills while the little ones take a dip in the ball pit.<br>Together with the Education Division of the City of Helsinki, Fimu ry, and Monaliiku ry.</p><p><b>12.00–14.00: Yksin (‘Alone’) project: Miniature books and weaving matariki stars</b><br>In this workshop you get to craft your own miniature books and weave matariki stars, letting your creativity fly together.</p><p><b>13.00–13.30: Joyful family music playschool</b><br>“Spin like a whirlpool – on the surface of the water!<br>Float like a cloud – up in the sky!\"</p><p>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led byChildren’s Musician Henna-Maija Kuki, who has a master’s degree in music and is best known from her Henna ja Supersankarit band.</p><p><b>14.00–14.45 Arnie Alligator & Viidakkorumpu</b><br>The adorable and huggable Arnie Alligator will be taking to the stage with his friends Tobbe and Jocke, who are always dressed for a safari. Arnie will play jokes, pranks and jungle drums in this hilarious performance for the whole family.</p><p>Arnie Alligator has received over 400 million views on YouTube and his music has sold platinum and gold records in several countries.</p><p>Free entry to all events, the whole family is welcome!</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/09855A8A174C6429C6717B077141CD98/Lasten_lauantai_Aarne_Alligaattori_Viidakkorumpu_Riemukas_perhemuskari_ja_muuta_puuhaa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/09855A8A174C6429C6717B077141CD98/Barnens_lordag_Arne_Alligator_Den_Glada_familjmusiklekisen_och_annan_sysselsattning", "en": "http://www.malmitalo.fi/en/events/event/09855A8A174C6429C6717B077141CD98/Children_s_Saturday_Arnie_Alligator_Joyful_family_music_playschool_and_other_activities" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68466/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/rajaton/rajaton-lempilauluja-4171708/", "sv": "https://www.lippu.fi/artist/rajaton/rajaton-lempilauluja-4171708/", "en": "https://www.lippu.fi/artist/rajaton/rajaton-lempilauluja-4171708/" }, "price": { "fi": "28 / 24,80 €", "sv": "28 / 24,80 €", "en": "28 / 24,80 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385203, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T06:14:02.698557Z", "last_modified_time": "2026-06-17T06:14:02.698573Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793528.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385203/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T06:14:02.621372Z", "last_modified_time": "2026-06-17T06:14:02.792544Z", "date_published": null, "start_time": "2026-09-12T15:00:00Z", "end_time": "2026-09-12T17: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, "name": { "fi": "Rajaton: Lempilauluja", "sv": "Rajaton: Lempilauluja", "en": "Rajaton: Lempilauluja" }, "short_description": { "fi": "Tervetuloa kuulemaan Rajattoman lempilauluja ja lauluja lemmestä!" }, "description": { "fi": "<p>Tervetuloa kuulemaan Rajattoman lempilauluja ja lauluja lemmestä!</p><p>Tässä rakkaudentäyteisessä konsertissa Lauluyhtye Rajaton tarttuu lempilauluihinsa. Konserttiin on koottu yhtyeen lähes 30-vuotisen uran aikana kertyneet suosikkilaulut ja teokset, joihin Rajattoman jäsenillä on erityinen suhde. Myös yleisöllä on ollut mahdollisuus vaikuttaa konsertin ohjelmistoon, ja Rajaton on valinnut mukaan yleisön äänestämiä suosikkikappaleita. Konsertin teema – rakkaus ja ystävyys – heijastuu monipuolisesti sekä ohjelman sisältöön että konsertin tunnelmaan. <br> <br>Suomalaisen a cappella -musiikin kruununjalokivi, lauluyhtye Rajaton tunnetaan taidokkaista sovituksistaan, omaleimaisesta soinnistaan ja musiikillisesta taituruudestaan. Yhtye esiintyy säännöllisesti ulkomailla ja on saavuttanut vankan aseman kansainvälisillä konserttilavoilla.<br> <br>Tervetuloa konserttiin – ääni on Rajaton!<br> <br>Rajaton:<br>Essi Wuorela<br>Aili Ikonen<br>Soila Sariola<br>Antti Annola<br>Ahti Paunu<br>Jussi Chydenius</p><p>Kesto: 2 t (sis. väliaika)</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EB36594AA1C62726F8F62EAEE9FC339C/Rajaton_Lempilauluja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EB36594AA1C62726F8F62EAEE9FC339C/Rajaton_Lempilauluja", "en": "http://www.kanneltalo.fi/en/events/event/EB36594AA1C62726F8F62EAEE9FC339C/Rajaton_Lempilauluja" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }