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&hide_super_event=true&page=126
{ "meta": { "count": 35920, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=127", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=125" }, "data": [ { "id": "espoo_le:agp5cb53ra", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:agggfz66qa/?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:p2787/?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:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-05T07:48:37.070848Z", "last_modified_time": "2026-08-05T07:54:47.327763Z", "date_published": null, "start_time": "2026-10-06T11:00:00Z", "end_time": "2026-10-06T12: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb53ra/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb54ju", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:agggfz66qa/?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:p2787/?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:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-05T07:48:37.179373Z", "last_modified_time": "2026-08-05T07:54:47.284691Z", "date_published": null, "start_time": "2026-10-20T11:00:00Z", "end_time": "2026-10-20T12: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb54ju/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb55cy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:agggfz66qa/?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:p2787/?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:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-05T07:48:37.284382Z", "last_modified_time": "2026-08-05T07:54:47.243245Z", "date_published": null, "start_time": "2026-11-03T12:00:00Z", "end_time": "2026-11-03T13: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb55cy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb5544", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:agggfz66qa/?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:p2787/?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:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-05T07:48:37.394817Z", "last_modified_time": "2026-08-05T07:54:47.198454Z", "date_published": null, "start_time": "2026-11-17T12:00:00Z", "end_time": "2026-11-17T13: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb5544/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb56xi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:agggfz66qa/?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:p2787/?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:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-05T07:48:37.503058Z", "last_modified_time": "2026-08-05T07:54:47.156021Z", "date_published": null, "start_time": "2026-12-02T12:00:00Z", "end_time": "2026-12-02T13: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb56xi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb57sm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:agggfz66qa/?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:p2787/?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:agp5cb6ala/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493990, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T12:09:04.698885Z", "last_modified_time": "2025-12-02T12:09:04.698902Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c7d9463d-5783-40a5-b7df-7619becba8fa.jpg", "name": "", "cropping": "213,0,1067,854", "photographer_name": "", "alt_text": "Kuvassa on kyniä ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493990/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-08-05T07:48:37.611821Z", "last_modified_time": "2026-08-05T07:54:47.109649Z", "date_published": null, "start_time": "2026-12-15T12:00:00Z", "end_time": "2026-12-15T13: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, "location_extra_info": { "fi": "Kajuutta (poikkeuksellisesti Paja 6.10., 20.10., 17.11. & 15.12.)", "sv": "Kajuutta ( undantagsvis Paja 6.10., 20.10., 17.11. & 15.12.)", "en": "Kajuutta (exceptionally Paja 6.10., 20.10., 17.11. & 15.12.)" }, "provider": { "fi": "Lippulaivan kirjasto", "sv": "Lippulaiva biblioteket", "en": "Lippulaiva library" }, "name": { "fi": "Luovan kirjoittamisen ryhmä senioreille : “Kirjoitan, siis olen ja hengitän.”", "sv": "Kreativ skrivargrupp för äldre: ”Jag skriver, alltså finns jag och andas.” (evenemanget hålls på finska)", "en": "Creative writing group for the senior citizens: “I write, therefore I am and I breathe.” (the event is in finnish)" }, "description": { "fi": "<p>Heittäydy kokeilemaan luovia kirjoitusharjoituksia hauskassa ja kannustavassa ilmapiirissä!</p><p>Luovan kirjoittamisen ryhmäkokoontumiset senioreille jatkuvat</p><p>Lippulaivan kirjastossa syksyllä 2026 joka toinen tiistai kl 14.00-15.30.</p><p><br></p><p>Tulevat kerrat:</p><p>1 1 . 8 . K A J U U T T A</p><p>2 5 . 8 . K A J U U T T A</p><p>8 . 9 . K A J U U T T A</p><p>2 2 . 9 . K A J U U T T A</p><p>6 . 1 0 . P A J A</p><p>2 0 . 1 0 . P A J A</p><p>3 . 1 1 . K A J U U T T A</p><p>1 7 . 1 1 . P A J A</p><p>2 . 1 2 . K A J U U T T A</p><p>1 5 . 1 2 . P A J A</p><p><br></p><p>Voit tulla kesken kauden tai käydä vaikka vain kerran kokeilemassa luovia, hauskoja harjoituksia.</p><p>Lämpimästi tervetuloa! Aiempaa kirjoittamiskokemusta ei tarvita, vain utelias ja avoin mieli.</p><p>P.S. jumpparyhmäläiset voivat liittyä seuraan heti jumpan jälkeen</p>", "sv": "<p>Kom och prova på övningar i kreativt skrivande i en rolig och stödjande miljö!</p><p>Gruppträffarna i kreativt skrivande för seniorer fortsätter på Lippulaiva-biblioteket under hösten 2026, varannan tisdag kl. 14.00–15.30.</p><p>Du är välkommen att hoppa in mitt i terminen eller till och med bara titta in en gång för att prova på dessa kreativa och roliga övningar.</p><p>Ett varmt välkomnande till er alla! Ingen tidigare skriv erfarenhet krävs – bara nyfikenhet och ett öppet sinne.</p><p>P.S. Deltagare i övningsgruppen är välkomna att stanna kvar direkt efter sitt möte.</p><p>Evenemanget hålls på finska.</p>", "en": "<p>Come along and give creative writing exercises a go in a fun and supportive atmosphere!</p><p>Creative writing group sessions for seniors are continuing at Lippulaiva Library in autumn 2026, every other Tuesday from 2.00 pm to 3.30 pm.</p><p>You’re welcome to join mid-term or even just pop in once to try out these creative, fun exercises.</p><p>A warm welcome to you all! No previous writing experience is needed, just a curious and open mind.</p><p>P.S. Members of the tuolijumppa are welcome to join us straight after their session.</p><p>The event is in finnish.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa senioreiden luovan kirjoittamisen ryhmään 11.8. alkaen. Ryhmä kokoontuu joka toinen tiistai klo 14.00 - 15.30 Kajuutassa.", "sv": "Välkommen till skrivargruppen för seniorer, som startar den 11 augusti. Gruppen träffas varannan tisdag kl. 14.00–15.30 på Kajuutta.", "en": "Welcome to the creative writing group for senior citizens, starting on 11 August. The group meets every other Tuesday from 2.00 pm to 3.30 pm at Kajuutta." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb57sm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5cb6bfe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:mellstenintie_12_espoo/?format=api" }, "keywords": [ { "@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:p11617/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385696, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T07:17:38.731644Z", "last_modified_time": "2026-08-05T07:17:38.731660Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b307aaa6-d59e-4752-843a-5372e5565cd3.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Tausta: Rudecatstudio Cieszyn/Wirestock Creators", "alt_text": "Piirroskuva kirjastoauto Välkystä, taustalla mäntymetsä, sekä hiekkainen merenranta.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385696/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-08-05T07:39:20.503085Z", "last_modified_time": "2026-08-05T07:39:20.503104Z", "date_published": null, "start_time": "2026-08-27T14:00:00Z", "end_time": "2026-08-27T16: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, "location_extra_info": { "fi": "Haukilahden satama", "sv": "Gäddvikshamnen", "en": "Haukilahti Harbour" }, "provider": { "fi": "Espoon Merenkävijät", "sv": "Espoon Merenkävijät", "en": "Espoon Merenkävijät" }, "name": { "fi": "Välkky Haukilahden sataman Itämeripävässä", "sv": "Välkky på Östersjödagen i Gäddviks småbåtshamn", "en": "Välkky on Baltic Sea Day at Haukilahti Harbour " }, "description": { "fi": "<p><strong>Espoon kaupungin Kirjasto- ja kulttuuriauto Välkky Haukilahden sataman Itämeripäivässä 27.8. klo 17-19:00. </strong></p><p>Pidä pieni tauko hulinasta ja tule käymään Välkyssä! Kirjastoautosta löydät Itämeriaiheisia kirjoja, mutta myös muuta luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p><strong>Esbo stads biblioteks- och kulturbuss Välkky på Östersjödagen i Gäddvikshamnen den 27.8 kl. 17.00-19.00</strong></p><p>Ta en liten paus från vimlet och kom och besök Välkky! I biblioteksbussen hittar du böcker med Östersjötema, men också annan läsning för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p>#HelloEspoo</p>", "en": "<p><strong>The City of Espoo Library and Culture Bus Välkky at Baltic Sea Day in Haukilahti Harbour on 27 August from 5:00 p.m. to 7:00 p.m.</strong></p><p>Take a short break from the bustle and come visit Välkky! The mobile library offers books related to the Baltic Sea, as well as other reading materials for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "https://itameripaiva.fi/tapahtumat/2026/haukilahdensatama/", "sv": "https://itameripaiva.fi/tapahtumat/2026/haukilahdensatama/", "en": "https://itameripaiva.fi/tapahtumat/2026/haukilahdensatama/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5cb6bfe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5buch6i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:67737/?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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:56:29.085591Z", "last_modified_time": "2026-08-05T06:56:29.085606Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/24af695c-3b06-4799-ac7f-12de133eb4c7.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Tausta: Dmitry Rukhlenko", "alt_text": "Piirroskuva Kirjastoauto Välkystä, taustana valaistu jalkapallokenttä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385694/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-08-05T07:14:25.000123Z", "last_modified_time": "2026-08-05T07:14:25.000139Z", "date_published": null, "start_time": "2026-08-23T07:00:00Z", "end_time": "2026-08-23T11: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, "location_extra_info": { "fi": " Löydät meidät Ilmatar Areenan eteläpuolelta.", "sv": "Du hittar oss söder om Ilmatar Arena.", "en": "You can find us on the south side of Ilmatar Arena." }, "provider": { "fi": "Etelä-Espoon pallo", "sv": "Etelä-Espoon pallo", "en": "Etelä-Espoon pallo" }, "name": { "fi": "Välkky EsPa-turnauksessa", "sv": "Välkky på EsPa-turnering", "en": "Välkky on EsPa tournament" }, "description": { "fi": "<p><strong>Espoon kaupungin Kirjasto- ja kulttuuriauto Välkky EsPa-turnauksessa 15.-16.8. ja 22.-23.8. klo 10-14:00. Löydät meidät Ilmatar Areenan eteläpuolelta.</strong></p><p>Jos maltat pitää tauon pelaamisesta ja pelien katsomisesta, tule käymään Välkyssä! Kirjastoautosta löydät erityisesti jalkapallosta kiinnostuneille sopivia kirjoja, mutta myös muuta luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p><strong>Esbo stads bok- och kulturbuss Välkky på EsPa-turneringen 15-16.8 och 22-23.8 kl. 10.00-14.00. Du hittar oss söder om Ilmatar Arena.</strong></p><p>Om du kan ta en paus från spelandet och matchtittandet, kom gärna och besök Välkky! I biblioteksbussen hittar du böcker som passar särskilt för fotbollsintresserade, men också annan läsning för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>The City of Espoo Library and Culture Bus Välkky at the EsPa Tournament on 15-16 August and 22-23 August from 10:00 a.m. to 2:00 p.m.. You can find us on the south side of Ilmatar Arena.</strong></p><p>If you can spare a break from playing and watching the matches, come and visit Välkky! The mobile library offers books especially suited to football enthusiasts, as well as other reading materials for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "https://www.etelaespoonpallo.fi/espa-turnaus", "sv": "https://www.etelaespoonpallo.fi/espa-turnaus", "en": "https://www.etelaespoonpallo.fi/espa-turnaus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5buch6i/?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: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": [], "description": null, "price": null, "info_url": 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-08-05T07:14:13.651860Z", "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, "location_extra_info": null, "provider": 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 – I skydd av skogen – Katja Luhtala och kollektivet Metsä M: Metsäsydän – Ode till närskogen | Finska naturens dag", "en": "Metsän suojassa – In the Shelter of the Forest – Katja Luhtala and the Metsä M collective: Metsäsydän – Ode to Local Forests | Finnish Nature Day" }, "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 Luhtala 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äsydän (Skogshjärta) – Ode till närskogen är en stillsam poesiföreställning som erbjuder en plats för vila, där man kan fördjupa sig i minnen från närskogen genom dikter, naturliga ljud och musik.</p><p>Föreställningen är ett gemenskapligt, gruppbaserat verk som dyker ner i personliga och kollektiva minnen och känslor kopplade till närskogar.</p><p>Medverkande:\u2028Anneli Johansson,\u2028Eeva Markkanen,\u2028Johanna Mikkonen,\u2028Katja Luhtala,\u2028Minna Inkeli,\u2028Outi Pirinen<br>Regi och dramaturgi: Katja Luhtala\u2028<br>Texter: arbetsgrupp, Sari Lilja, Miianinna Auringonsilta\u2028<br>Musik, instrument och skogsmaterial: arbetsgrupp; klaviatur: Katja Luhtala; vaggvisa: Outi Pirinen och Eeva Markkanen, Hulda: Minna Inkeli och Katja Luhtala.</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>Metsäsydän – Oodi lähimetsille (‘Forest Heart – Ode to Local Forests’) is a gentle poetry performance that offers a place of respite where you can immerse yourself in memories of local forests through poetry, organic sounds and music.</p><p>The performance is a communal, group-based work that delves into personal and collective memories and emotions related to local forests.</p><p>Performers:\u2028Anneli Johansson,\u2028Eeva Markkanen,\u2028Johanna Mikkonen,\u2028Katja Luhtala,\u2028Minna Inkeli,\u2028Outi Pirinen<br>Direction and dramaturgy: Katja Luhtala\u2028<br>Texts: creative team, Sari Lilja, Miianinna Auringonsilta\u2028<br>Music, instruments and forest materials: creative team. Keyboard backgrounds: Katja Luhtala. Lullaby: Outi Pirinen and Eeva Markkanen. Hulda: Minna Inkeli and Katja Luhtala.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "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.", "sv": "Metsäsydän (Skogshjärta) – Ode till närskogen är en stillsam poesiföreställning som erbjuder en plats för vila, där man kan fördjupa sig i minnen från närskogen genom dikter, naturliga ljud och musik.", "en": "Metsäsydän – Oodi lähimetsille (‘Forest Heart – Ode to Local Forests’) is a gentle poetry performance that offers a place of respite where you can immerse yourself in memories of local forests through poetry, organic sounds and music." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/212D5CD656446D01A7E305714A32FC31/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/212D5CD656446D01A7E305714A32FC31/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/212D5CD656446D01A7E305714A32FC31/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5buci5y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:67737/?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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:56:29.085591Z", "last_modified_time": "2026-08-05T06:56:29.085606Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/24af695c-3b06-4799-ac7f-12de133eb4c7.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Tausta: Dmitry Rukhlenko", "alt_text": "Piirroskuva Kirjastoauto Välkystä, taustana valaistu jalkapallokenttä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385694/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-08-05T07:14:13.165090Z", "last_modified_time": "2026-08-05T07:14:13.165108Z", "date_published": null, "start_time": "2026-08-22T07:00:00Z", "end_time": "2026-08-22T11: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, "location_extra_info": { "fi": " Löydät meidät Ilmatar Areenan eteläpuolelta.", "sv": "Du hittar oss söder om Ilmatar Arena.", "en": "You can find us on the south side of Ilmatar Arena." }, "provider": { "fi": "Etelä-Espoon pallo", "sv": "Etelä-Espoon pallo", "en": "Etelä-Espoon pallo" }, "name": { "fi": "Välkky EsPa-turnauksessa", "sv": "Välkky på EsPa-turnering", "en": "Välkky on EsPa tournament" }, "description": { "fi": "<p><strong>Espoon kaupungin Kirjasto- ja kulttuuriauto Välkky EsPa-turnauksessa 15.-16.8. ja 22.-23.8. klo 10-14:00. Löydät meidät Ilmatar Areenan eteläpuolelta.</strong></p><p>Jos maltat pitää tauon pelaamisesta ja pelien katsomisesta, tule käymään Välkyssä! Kirjastoautosta löydät erityisesti jalkapallosta kiinnostuneille sopivia kirjoja, mutta myös muuta luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p><strong>Esbo stads bok- och kulturbuss Välkky på EsPa-turneringen 15-16.8 och 22-23.8 kl. 10.00-14.00. Du hittar oss söder om Ilmatar Arena.</strong></p><p>Om du kan ta en paus från spelandet och matchtittandet, kom gärna och besök Välkky! I biblioteksbussen hittar du böcker som passar särskilt för fotbollsintresserade, men också annan läsning för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>The City of Espoo Library and Culture Bus Välkky at the EsPa Tournament on 15-16 August and 22-23 August from 10:00 a.m. to 2:00 p.m.. You can find us on the south side of Ilmatar Arena.</strong></p><p>If you can spare a break from playing and watching the matches, come and visit Välkky! The mobile library offers books especially suited to football enthusiasts, as well as other reading materials for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "https://www.etelaespoonpallo.fi/espa-turnaus", "sv": "https://www.etelaespoonpallo.fi/espa-turnaus", "en": "https://www.etelaespoonpallo.fi/espa-turnaus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5buci5y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68348", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385056, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T12:14:40.387962Z", "last_modified_time": "2026-06-10T12:14:40.387979Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787751.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385056/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T12:14:40.258328Z", "last_modified_time": "2026-08-05T07:14:12.501399Z", "date_published": null, "start_time": "2026-08-28T15:00:00Z", "end_time": "2026-08-28T16: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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa", "sv": "Metsän suojassa – I skydd av skogen – Legioonateatteris skogsteaterkollektiv: Niin metsä vastaa", "en": "Metsän suojassa – In the Shelter of the Forest – Legioonateatteri’s forest theatre collective: Niin metsä vastaa" }, "description": { "fi": "<p>Tunnin mittainen esitys toteutuu ulkona Kannelmäen asukkaille tutulla metsä-/puistoalueella.</p><p>Ohjaaja ja näyttelijät johdattelevat yleisön Kanneltalolta aulasta metsäiselle näyttämölle klo 18 alkaen.</p><p>Niin metsä vastaa -esitys tutkii metsän monimuotoisuutta fyysisen teatterin, huumorin ja runouden keinoin. Esitys toteutetaan ulkona metsässä ilman mitään sähköisiä tehosteita, käytössä ovat vain luonnolliset ihmiskehot ja -äänet.</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 Luhtala 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>Den en timme långa föreställningen äger rum utomhus i ett skogs- och parkområde som är välbekant för invånarna i Gamlas.</p><p>Regissören och skådespelarna leder publiken från Gamlasgårdens entréhall till en scen i skogen med start klockan 18.</p><p>Föreställningen Så svarar skogen utforskar skogens mångfald genom fysisk teater, humor och poesi. Föreställningen spelas utomhus i skogen utan några elektroniska effekter; endast människokroppar och mänskliga röster används.</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>This one-hour performance takes place outdoors in a forest/park area familiar to the residents of Kannelmäki.</p><p>The director and the actors lead the audience from the lobby of Kanneltalo to a forest stage from 18.00 onwards.</p><p>The performance Niin metsä vastaa (‘So Does the Forest Answer’) explores the diversity of the forest through physical theatre, humour and poetry. The performance takes place outdoors in the woods without any electronic effects; only natural human bodies and voices are used.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Tunnin mittainen esitys toteutuu ulkona Kannelmäen asukkaille tutulla metsä-/puistoalueella.", "sv": "Den en timme långa föreställningen äger rum utomhus i ett skogs- och parkområde som är välbekant för invånarna i Gamlas.", "en": "This one-hour performance takes place outdoors in a forest/park area familiar to the residents of Kannelmäki." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1BDCADF931DF1D97960037C4A7149DD5/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1BDCADF931DF1D97960037C4A7149DD5/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/1BDCADF931DF1D97960037C4A7149DD5/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68348/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68345", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385048, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T09:13:47.523436Z", "last_modified_time": "2026-06-10T09:13:47.523449Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787747.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385048/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T09:13:47.421396Z", "last_modified_time": "2026-08-05T07:14:11.626456Z", "date_published": null, "start_time": "2026-08-27T14:00:00Z", "end_time": "2026-08-27T15: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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Luontoyhteystyöpaja", "sv": "Metsän suojassa – I skydd av skogen – Verkstad om samarbete med naturen", "en": "Metsän suojassa – In the Shelter of the Forest – Nature connection workshop" }, "description": { "fi": "<p>Työpajassa Virpi Koskela alustaa luontoyhteyden kokonaisvaltaisesti tervehdyttävästä ja elvyttävästä vaikutuksesta mieleen, kehoon, jaksamiseen ja luovuuteen.</p><p>Alustuksen jälkeen tehdään aiheeseen liittyviä harjoituksia, joiden antamia kokemuksia jaetaan yhdessä keskustellen.</p><p>Harjoitukset ja keskustelut toteutetaan auditorion tuoleissa istuen turvallisemman ja luottamuksellisen tilan periaatteita noudattaen.</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 Luhtala 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>På verkstaden ger Virpi Koskela en introduktion till den helhetsfrämjande och vitaliserande effekten som kontakten med naturen har på sinnet, kroppen, välbefinnandet och kreativiteten.</p><p>Efter introduktionen genomförs övningar med anknytning till ämnet, och de erfarenheter som dessa ger diskuteras gemensamt.</p><p>Övningarna och diskussionerna genomförs sittande på stolarna i auditoriet, i enlighet med principerna om tryggare och förtroligare rum.</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>In this workshop, Virpi Koskela introduces the comprehensively healing and revitalising effects of connecting with nature on the mind, the body, wellbeing and creativity.</p><p>Following the introduction, we perform exercises related to the topic, and then discuss the insights gained from them together.</p><p>The exercises and discussions take place whilst seated in the auditorium, in accordance with the principles of a safe and confidential space.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Työpajassa Virpi Koskela alustaa luontoyhteyden kokonaisvaltaisesti tervehdyttävästä ja elvyttävästä vaikutuksesta mieleen, kehoon, jaksamiseen ja luovuuteen.", "sv": "På verkstaden ger Virpi Koskela en introduktion till den helhetsfrämjande och vitaliserande effekten som kontakten med naturen har på sinnet, kroppen, välbefinnandet och kreativiteten.", "en": "In this workshop, Virpi Koskela introduces the comprehensively healing and revitalising effects of connecting with nature on the mind, the body, wellbeing and creativity." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F6AA33660122344520E39144F2120A8C/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F6AA33660122344520E39144F2120A8C/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/F6AA33660122344520E39144F2120A8C/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68345/?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": [], "description": null, "price": null, "info_url": 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-08-05T07:14:09.369428Z", "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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Taiteilijatapaaminen: Susu Rytteri", "sv": "Metsän suojassa – I skydd av skogen – Konstnärsmöte: Susu Rytteri", "en": "Metsän suojassa – In the Shelter of the Forest – Meet the Artist: Susu Rytteri" }, "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 Luhtala 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>I Gamlasgårdens galleri bygger bildkonstnären och biologen Susu Rytteri det monumentala verket Utopia metsästä (Utopi av skogen).</p><p>I verket flyger en stor flock lätta hagtornsfjärilar över en bakgrund rappad med lera. Vid sidan av verket ser vi serien Elämän puu (Livets träd), som består av hundra teckningar, samt rörlig bild.</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 samt 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>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>Visual artist and biologist Susu Rytteri builds a monumental work entitled Utopia metsästä (‘Utopia of a Forest’) in the Kanneltalo gallery.</p><p>In the work, a swarm of lightweight black-veined white butterflies fly through a background plastered with clay. The work will be accompanied by a series of 100 drawings entitled Elämän puu (‘The Tree of Life’) and moving images.</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>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Kuvataiteilija ja biologi Susu Rytteri rakentaa Kanneltalon galleriaan monumentaalisen teoksen ”Utopia metsästä.”", "sv": "I Gamlasgårdens galleri bygger bildkonstnären och biologen Susu Rytteri det monumentala verket Utopia metsästä (Utopi av skogen).", "en": "Visual artist and biologist Susu Rytteri builds a monumental work entitled Utopia metsästä (‘Utopia of a Forest’) in the Kanneltalo gallery." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/21941A11E8D2C05578C8F4922C672182/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/21941A11E8D2C05578C8F4922C672182/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/21941A11E8D2C05578C8F4922C672182/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@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": [], "description": null, "price": null, "info_url": 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-08-05T07:14:09.065949Z", "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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Metsäimprodialogi", "sv": "Metsän suojassa – I skydd av skogen – Metsäimprodialogi – Skogsimprovisationsdialog", "en": "Metsän suojassa – In the Shelter of the Forest – Metsäimprodialogi – Forest improv dialogue" }, "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 Luhtala 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>I Jukka Ilmonens skogsdialog strävar vi efter att betrakta skogsfrågor ur ett annorlunda perspektiv, med ovanliga deltagare.</p><p>Till skogsdialogen, med mindre dialog och mer motsättningar, har bland annat en talltita, en granbarkborre, en representant för en investeringsfond från Boston och en japansk ekoterrorist (om hen inte sitter bakom galler) samt Virtaska, en vresig stugägare, anmält sig. Och förmodligen några till.</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>Jukka Ilmonen’s forest dialogue aims to view forest-related matters through a different lens, with peculiar participants.</p><p>The forest dialogue – an event featuring less dialogue and more conflict – has already attracted participants such as a willow tit, a European spruce bark beetle, a representative of an investment fund from Boston and a Japanese eco-terrorist to take part (if not behind bars at the time), as well as Virtaska, a grumpy cottage owner. Probably a couple others as well.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Jukka IImosen metsädialogissa pyritään näkemään metsäasiat poikkeavin silmin, oudoin osallistujin.", "sv": "I Jukka Ilmonens skogsdialog strävar vi efter att betrakta skogsfrågor ur ett annorlunda perspektiv, med ovanliga deltagare.", "en": "Jukka Ilmonen’s forest dialogue aims to view forest-related matters through a different lens, with peculiar participants." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/88F5CE2B982FB968EAFDF2F6D36BA052/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/88F5CE2B982FB968EAFDF2F6D36BA052/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/88F5CE2B982FB968EAFDF2F6D36BA052/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68342/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68341", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385043, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T08:13:22.178556Z", "last_modified_time": "2026-06-10T08:13:22.178570Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787743.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385043/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T08:13:22.087011Z", "last_modified_time": "2026-08-05T07:14:08.485836Z", "date_published": null, "start_time": "2026-08-21T14:00:00Z", "end_time": "2026-08-21T15: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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Metsähaikutyöpaja", "sv": "Metsän suojassa – I skydd av skogen – Verkstad om skogshaikun", "en": "Metsän suojassa – In the Shelter of the Forest – Forest haiku workshop" }, "description": { "fi": "<p>Haikutyöpajassa pääset kokeilemaan metsäaatoksien kirjoittamista haikumittaan.</p><p>Haiku on japanista lähtöisin oleva 17-tavuinen runo. Tavut jaetaan säkeiksi suhteessa 5–7–5. Haikuissa on usein luontoteema, ja tätä tutkimme työpajassa. Ohjaajana musiikintekijä, teatteri-ilmaisun ohjaaja 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 Luhtala 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>I haikuverkstaden får du prova på att skriva om skogen i haikuform.</p><p>En haiku är en kortdikt med 17 stavelser som kommer från Japan. Stavelserna delas upp i rader i förhållandet 5–7–5. Haikudikter har ofta naturen som tema, och detta undersöker vi under verkstaden. Instruktör är musikskaparen och teaterregissören Katja Luhtala.</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>In this haiku workshop, you get to try your hand at expressing your musings about the forest in the form of a haiku.</p><p>A haiku is a 17-syllable poem originating from Japan. The syllables are divided into lines in a 5-7-5 pattern. Haiku often have a nature theme, and this is what we explore in the workshop. The workshop is instructed by musician and theatre expression instructor Katja Luhtala.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Haikutyöpajassa pääset kokeilemaan metsäaatoksien kirjoittamista haikumittaan.", "sv": "I haikuverkstaden får du prova på att skriva om skogen i haikuform.", "en": "In this haiku workshop, you get to try your hand at expressing your musings about the forest in the form of a haiku." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/20B09D0F2B0F9C8F4734BEDA3A8719CE/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/20B09D0F2B0F9C8F4734BEDA3A8719CE/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/20B09D0F2B0F9C8F4734BEDA3A8719CE/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68341/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68340", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385042, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T08:13:21.521714Z", "last_modified_time": "2026-06-10T08:13:21.521729Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787742.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385042/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T08:13:21.410011Z", "last_modified_time": "2026-08-05T07:14:07.611481Z", "date_published": null, "start_time": "2026-08-20T14:30:00Z", "end_time": "2026-08-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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Metsänpohja – yhteisötaideteos | Taiteiden yö", "sv": "Metsän suojassa – I skydd av skogen – Metsänpohja: gemenskapskonstverk | Konstens natt", "en": "Metsän suojassa – In the Shelter of the Forest – Metsänpohja – a community artwork | Night of the Arts" }, "description": { "fi": "<p>Tapahtumassa pääset kuvataiteilija ja biologi Susu Rytterin ohjauksessa valmistamaan Metsän pohja -savilaastiteosta.</p><p>Pohdimme taiteen tekemisen kautta ihmisen ja metsän välistä suhdetta. Savilaasti on yhtä aikaa ikivanha, unohdettu ja tulevaisuuden rakennusmateriaali. Taiteellisen työskentelyn lomassa kuulet, millaisia terveys- ja ympäristövaikutuksia raakasavella ja savilaastiin sekoitetulla metsämikrobiuutteella on. Tapahtuma sopii kaikenikäisille osallistujille, jotka haluavat työntää kädet saveen. Valmis teos tulee osaksi Kanneltalon galleriassa esillä olevaa Metsän suojassa -näyttelyä.</p><p>Tapahtumassa on lisäksi mahdollisuus silittää Metsäkissaa!</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 Luhtala 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>Under evenemanget får du under ledning av bildkonstnären och biologen Susu Rytter tillverka ett verk av lera med namnet Metsänpohja – Skogsmark.</p><p>Genom vårt konstnärliga skapande reflekterar vi över relationen mellan människan och skogen. Lera är på samma gång ett uråldrigt, bortglömt och framtidsinriktat byggmaterial. Under det konstnärliga arbetet får du höra vilka effekter rålera och mikroextrakt från skogen blandat i lera har på hälsa och miljö. Evenemanget passar deltagare i alla åldrar som vill prova på att arbeta med lera. Det färdiga verket kommer att ingå i utställningen Metsän suojassa, som visas i Gamlasgårdens galleri.</p><p>Under evenemanget finns också möjlighet att klappa Skogskatten!</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>At this event, you get to take part in creating a clay plaster sculpture entitled Metsänpohja (‘Forest Floor’) under the guidance of visual artist and biologist Susu Rytteri.</p><p>Through our art, we will explore the relationship between humankind and the forest. Clay plaster is a building material that is simultaneously ancient and forgotten and a material of the future. Whilst engaging in the artistic work, you may learn about the health-related and environmental impacts of raw clay and forest microbe extract mixed into clay plaster. The event is suitable for participants of all ages who want to stick their hands into clay. The finished work will be featured in the <i>In the Shelter of the Forest</i> exhibition on display in the Kanneltalo gallery.</p><p>You also have an opportunity to pet the Forest Cat at the event!</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Tapahtumassa pääset kuvataiteilija ja biologi Susu Rytterin ohjauksessa valmistamaan Metsän pohja -savilaastiteosta.", "sv": "Under evenemanget får du under ledning av bildkonstnären och biologen Susu Rytter tillverka ett verk av lera med namnet Metsänpohja – Skogsmark.", "en": "At this event, you get to take part in creating a clay plaster sculpture entitled Metsänpohja (‘Forest Floor’) under the guidance of visual artist and biologist Susu Rytteri." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3887B27A9B0C15826E97D33F57D5DE30/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3887B27A9B0C15826E97D33F57D5DE30/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/3887B27A9B0C15826E97D33F57D5DE30/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68340/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68339", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385038, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T07:13:46.906222Z", "last_modified_time": "2026-06-10T07:13:46.906245Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787741.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385038/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T07:13:46.797134Z", "last_modified_time": "2026-08-05T07:14:07.294733Z", "date_published": null, "start_time": "2026-08-20T14:00:00Z", "end_time": "2026-08-20T14: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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Katja Luhtala & kollektiivi: Metsä M – liikkeellinen ja runollinen ääniteos | Taiteiden yö", "sv": "Metsän suojassa – I skydd av skogen – Katja Luhtala & kollektiivi: Metsä M – ett ljudverk med rörelse och poesi | Konstens natt", "en": "Metsän suojassa – In the Shelter of the Forest – Katja Luhtala & collective: Metsä M – a movement-based and poetic sound art performance | Night of the Arts" }, "description": { "fi": "<p>Metsä M -esitys on fyysinen esitys metsän olemuksesta ja metsätunteistamme.</p><p>Se on yhteisöllinen, ryhmälähtöinen teos. Metsä M -kollektiivi koostuu kymmenestä metsäaktiivista, joihin kuuluu sekä taiteen että muiden alojen ammattilaisista. Menimme luonnontilaiseen metsään ja painauduimme vasten runkoja ja sammalia. Kuuntelimme metsää. Sen ääniä ja omia ääniämme. Tuotimme musiikkia ja ääntä metsästä ja sen kanssa. Kirjoitimme metsätunteitamme ja ajatuksiamme, tutkimme aihetta kokonaisvaltaisesti ja Katja Luhtala ohjasi ja sävelsi yhteisestä matkastamme tämän esityksen. Esitys eri muodoissaan ja eri kokoonpanoilla, sen rönsyt elävät ja tuovat metsän sinne missä sitä ei ole.</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 Luhtala 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ä M är en fysisk föreställning om skogens väsen och våra upplevelser av skogen.</p><p>Det är ett gemenskapligt och grupporienterat verk. Kollektivet Metsä M består av tio skogsaktivister, däribland både konstnärer och yrkesverksamma inom andra områden. Vi gick in i en orörd skog och tryckte oss mot trädstammar och mossa. Vi lyssnade på skogen. Dess ljud och våra egna ljud. Vi skapade musik och ljud från skogen och tillsammans med den. Vi skrev ner våra skogsupplevelser och tankar, utforskade ämnet ur ett helhetsperspektiv, och Katja Luhtala regisserade och komponerade denna föreställning utifrån vår gemensamma resa. Föreställningen i olika former och med olika ensembler – dess förgreningar lever och för med sig skogen dit där den inte finns.</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>‘Metsä M’ is a physical performance exploring the essence of the forest and our feelings on forests.</p><p>The work is communal and group-based. The Metsä M collective consists of ten forest activists, including professionals from both the arts and other fields. We went into an unspoilt forest and pressed ourselves against the tree trunks and the moss. We listened to the forest. Its sounds and our own voices. We created music and sound from the forest and with it. We wrote down our forest feelings and thoughts, explored the subject comprehensively, and then Katja Luhtala directed and composed this performance based on our shared journey. A performance in various forms and with different ensembles; its branches live and bring the forest to places where it is absent.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Metsä M -esitys on fyysinen esitys metsän olemuksesta ja metsätunteistamme.", "sv": "Metsä M är en fysisk föreställning om skogens väsen och våra upplevelser av skogen.", "en": "‘Metsä M’ is a physical performance exploring the essence of the forest and our feelings on forests." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/ABD377128EE805E1A899FABCD5C19822/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/ABD377128EE805E1A899FABCD5C19822/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/ABD377128EE805E1A899FABCD5C19822/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68339/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68338", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385036, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T06:14:00.118281Z", "last_modified_time": "2026-06-10T06:14:00.118318Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385036/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T06:13:59.995184Z", "last_modified_time": "2026-08-05T07:14:04.810439Z", "date_published": null, "start_time": "2026-08-15T10:00:00Z", "end_time": "2026-08-15T12: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, "location_extra_info": null, "provider": null, "name": { "fi": "Metsän suojassa – Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia", "sv": "Metsän suojassa – I skydd av skogen – Jukka Ilmonen presenterar resultaten av projektet Metsäkissa2044", "en": "Metsän suojassa – In the Shelter of the Forest – Jukka Ilmonen presents the results of the Metsäkissa2044 project" }, "description": { "fi": "<p>Metsäkissa2044-hankkeen vetäjä Jukka Ilmonen esittelee kaksivuotisen hankkeen tuloksia. Mitä olemme saaneet aikaan?</p><p>Hankkeen keskiössä ovat ihmisten utopiat, joita pyrimme hahmottamaan nykyisen, lähes dystopiaa muistuttavan ekologisen kriisin sijaan. Kahden vuoden aikana Metsäkisssa2044-hankkeeseen osallistuneet ovat tuottaneet metsään liittyviä utopiatekstejä. Niitä on päivitetty prosessin aikana, ja pyritty katsomaan, millä tavoin taiteellisiin tuotantoihin osallistuminen on muuttanut utopioita. Tekstejä on saatu Metsäteatteriin ja ääniteoksiin osallistuneilta.<br> <br>Myös muut metsäkissalaiset esittelevät omaa työtään. Esillä ovat niin journalismi, kuvataide, teatteri kuin musiikkikin. <u><a href=\"https://www.metsakissa.fi/\">Tutustu Metsäkissa2044-hankkeen taiteellisiin ja journalistisiin sisältöihin</u></a>.</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 Luhtala 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>Jukka Ilmonen, projektledare för Metsäkissa2044, presenterar resultaten från det tvååriga projektet. Vad har vi åstadkommit?</p><p>I centrum för projektet står människors utopier, som vi strävar efter att skildra i stället för den nuvarande ekologiska krisen, som nästan påminner om en dystopi. Under två års tid har deltagarna i projektet Metsäkissa2044 skrivit utopiska texter med skogen som tema. De har uppdaterats under processens gång, och man har försökt undersöka på vilket sätt deltagandet i konstnärliga produktioner har förändrat utopierna. Texterna har skapats av personer som deltagit i Metsäteatteri och ljudproduktioner.</p><p>Också andra deltagare i Metsäkissa presenterar sina arbeten. Utställningen omfattar både journalistik, bildkonst, teater och musik. <u><a href=https://www.metsakissa.fi/>Arbetet presenteras i sin helhet på metsäkissa.fi (på finska)</u></a>.</p><p>Språk: finska</p><p>Evenemanget är en del av den multisensoriska utställningen och evenemangshelheten <i>Metsän suojassa</i>, som bjuder in oss att reflektera över skogens framtid genom konst, vetenskap och deltagande. <u><a href=\"https://kanneltalo.fi/sv/evenemangen/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Läs mer om evenemanget</u></a>.</p><p>Utställningen och evenemangen är en del av Helsingfors stads kulturtjänsters miljöprogram.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>Jukka Ilmonen, leader of the Metsäkissa2044 project, presents the findings of the two-year project. What have we achieved?</p><p>At the heart of the project are people’s utopian visions, which we sought to outline as an alternative to the current ecological crisis verging on dystopia. Over the past two years, participants in the Metsäkissa2044 project produced utopian texts on the theme of the forest. The texts were updated during the process, the aim being to see how participation in artistic productions transformed these utopian visions. Contributions were received from those taking part in the Metsäteatteri group and audio works.<br> <br>Other Metsäkissa2044 project participants also showcase their own work. The exhibition features journalism, visual arts, theatre and music alike. The work as a whole is presented on the website www.metsakissa.fi.</p><p>The event is part of the multi-sensory <i>In the Shelter of the Forest</i> exhibition and event series that invites you to reflect on the future of the forest through art, science and participation. <u><a href=\"https://kanneltalo.fi/en/events/event/BC3240580FEDA95831DF176E618667B2/Susu_Rytteri_ja_ryhm__Mets_kissa2044__Mets_n_suojassa\">Learn more about the event series</u></a>.</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, "short_description": { "fi": "Metsäkissa2044-hankkeen vetäjä Jukka Ilmonen esittelee kaksivuotisen hankkeen tuloksia. Mitä olemme saaneet aikaan?", "sv": "Jukka Ilmonen, projektledare för Metsäkissa2044, presenterar resultaten från det tvååriga projektet. Vad har vi åstadkommit?", "en": "Jukka Ilmonen, leader of the Metsäkissa2044 project, presents the findings of the two-year project. What have we achieved?" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3593C370EABD0DD19E28ECEF8218CA1A/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3593C370EABD0DD19E28ECEF8218CA1A/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/3593C370EABD0DD19E28ECEF8218CA1A/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68338/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5bucjvy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:67737/?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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:56:29.085591Z", "last_modified_time": "2026-08-05T06:56:29.085606Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/24af695c-3b06-4799-ac7f-12de133eb4c7.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Tausta: Dmitry Rukhlenko", "alt_text": "Piirroskuva Kirjastoauto Välkystä, taustana valaistu jalkapallokenttä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385694/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-08-05T07:13:59.031305Z", "last_modified_time": "2026-08-05T07:13:59.031322Z", "date_published": null, "start_time": "2026-08-16T07:00:00Z", "end_time": "2026-08-16T11: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, "location_extra_info": { "fi": " Löydät meidät Ilmatar Areenan eteläpuolelta.", "sv": "Du hittar oss söder om Ilmatar Arena.", "en": "You can find us on the south side of Ilmatar Arena." }, "provider": { "fi": "Etelä-Espoon pallo", "sv": "Etelä-Espoon pallo", "en": "Etelä-Espoon pallo" }, "name": { "fi": "Välkky EsPa-turnauksessa", "sv": "Välkky på EsPa-turnering", "en": "Välkky on EsPa tournament" }, "description": { "fi": "<p><strong>Espoon kaupungin Kirjasto- ja kulttuuriauto Välkky EsPa-turnauksessa 15.-16.8. ja 22.-23.8. klo 10-14:00. Löydät meidät Ilmatar Areenan eteläpuolelta.</strong></p><p>Jos maltat pitää tauon pelaamisesta ja pelien katsomisesta, tule käymään Välkyssä! Kirjastoautosta löydät erityisesti jalkapallosta kiinnostuneille sopivia kirjoja, mutta myös muuta luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p><strong>Esbo stads bok- och kulturbuss Välkky på EsPa-turneringen 15-16.8 och 22-23.8 kl. 10.00-14.00. Du hittar oss söder om Ilmatar Arena.</strong></p><p>Om du kan ta en paus från spelandet och matchtittandet, kom gärna och besök Välkky! I biblioteksbussen hittar du böcker som passar särskilt för fotbollsintresserade, men också annan läsning för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>The City of Espoo Library and Culture Bus Välkky at the EsPa Tournament on 15-16 August and 22-23 August from 10:00 a.m. to 2:00 p.m.. You can find us on the south side of Ilmatar Arena.</strong></p><p>If you can spare a break from playing and watching the matches, come and visit Välkky! The mobile library offers books especially suited to football enthusiasts, as well as other reading materials for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "https://www.etelaespoonpallo.fi/espa-turnaus", "sv": "https://www.etelaespoonpallo.fi/espa-turnaus", "en": "https://www.etelaespoonpallo.fi/espa-turnaus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5bucjvy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp5bucknu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:67737/?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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-05T06:56:29.085591Z", "last_modified_time": "2026-08-05T06:56:29.085606Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/24af695c-3b06-4799-ac7f-12de133eb4c7.jpeg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Tausta: Dmitry Rukhlenko", "alt_text": "Piirroskuva Kirjastoauto Välkystä, taustana valaistu jalkapallokenttä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385694/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-08-05T07:12:00.908234Z", "last_modified_time": "2026-08-05T07:13:25.680066Z", "date_published": null, "start_time": "2026-08-15T07:00:00Z", "end_time": "2026-08-15T11: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, "location_extra_info": { "fi": " Löydät meidät Ilmatar Areenan eteläpuolelta.", "sv": "Du hittar oss söder om Ilmatar Arena.", "en": "You can find us on the south side of Ilmatar Arena." }, "provider": { "fi": "Etelä-Espoon pallo", "sv": "Etelä-Espoon pallo", "en": "Etelä-Espoon pallo" }, "name": { "fi": "Välkky EsPa-turnauksessa", "sv": "Välkky på EsPa-turnering", "en": "Välkky on EsPa tournament" }, "description": { "fi": "<p><strong>Espoon kaupungin Kirjasto- ja kulttuuriauto Välkky EsPa-turnauksessa 15.-16.8. ja 22.-23.8. klo 10-14:00. Löydät meidät Ilmatar Areenan eteläpuolelta.</strong></p><p>Jos maltat pitää tauon pelaamisesta ja pelien katsomisesta, tule käymään Välkyssä! Kirjastoautosta löydät erityisesti jalkapallosta kiinnostuneille sopivia kirjoja, mutta myös muuta luettavaa lapsiperheille. Mukana on myös pieni aikuisten kokoelma.</p><p>Voit istahtaa hetkeksi lukemaan, lainata aineistoa helmet-kirjastokortilla tai tulla vain kurkkaamaan, miltä kirjastoautossa näyttää. Kirjastoautosta lainatut kirjat voi palauttaa mihin tahansa Helmet-kirjastoon.</p><p>Mikäli sinulla ei vielä ole kirjastokorttia, voit hankkia sen samalla käynnillä. Ota mukaan tällöin henkilöllisyystodistus.</p><p>#HelloEspoo</p><p>#Kirjastoauto</p>", "sv": "<p><strong>Esbo stads bok- och kulturbuss Välkky på EsPa-turneringen 15-16.8 och 22-23.8 kl. 10.00-14.00. Du hittar oss söder om Ilmatar Arena.</strong></p><p>Om du kan ta en paus från spelandet och matchtittandet, kom gärna och besök Välkky! I biblioteksbussen hittar du böcker som passar särskilt för fotbollsintresserade, men också annan läsning för barnfamiljer. Vi har även med ett mindre urval för vuxna.</p><p>Du kan slå dig ner en stund och läsa, låna material med ett Helmet-bibliotekskort eller bara titta in för att se hur biblioteksbussen ser ut. Böcker som lånats från biblioteksbussen kan återlämnas till vilket Helmet-bibliotek som helst.</p><p>Om du ännu inte har ett bibliotekskort kan du skaffa ett vid samma besök. Ta då med dig en giltig legitimation.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>The City of Espoo Library and Culture Bus Välkky at the EsPa Tournament on 15-16 August and 22-23 August from 10:00 a.m. to 2:00 p.m.. You can find us on the south side of Ilmatar Arena.</strong></p><p>If you can spare a break from playing and watching the matches, come and visit Välkky! The mobile library offers books especially suited to football enthusiasts, as well as other reading materials for families with children. A small selection for adults is also available.</p><p>You are welcome to sit down and read for a while, borrow items with a Helmet library card, or simply stop by to see what the library bus looks like. Books borrowed from the mobile library can be returned to any Helmet library.</p><p>If you do not yet have a library card, you can get one during your visit. Please bring a valid form of identification.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "https://www.etelaespoonpallo.fi/espa-turnaus", "sv": "https://www.etelaespoonpallo.fi/espa-turnaus", "en": "https://www.etelaespoonpallo.fi/espa-turnaus" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp5bucknu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }