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_recurring_children=true&page=2
{ "meta": { "count": 23121, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=3", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true" }, "data": [ { "id": "espoo_le:agp2phrgdq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phq7my/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phraee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrari/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phra6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrbkm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrbya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrcfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrctm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrdai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrdnu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrd2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phreha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phreta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phre7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrfky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrfxu/?format=api" } ], "images": [ { "id": 150449, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-15T08:45:00.440809Z", "last_modified_time": "2024-03-15T08:45:00.440832Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/espanjan-kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kahvikuppi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150449/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-28T06:59:16.465873Z", "last_modified_time": "2026-07-28T06:59:16.465889Z", "date_published": null, "start_time": "2026-09-03T14:00:00Z", "end_time": "2026-12-17T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hablamos Español! Tule puhumaan espanjaa!", "sv": "Hablamos Español! Kom och prata spanska!", "en": "Hablamos Español! Come and speak Spanish!" }, "location_extra_info": { "fi": "Elina", "sv": "Elina", "en": "Elina" }, "provider": null, "short_description": { "fi": "Ryhmässä keskustellaan espanjan kielellä arkipäivän asioista. ", "sv": "Gruppen diskuterar vardagsfrågor på spanska.", "en": "The group discusses everyday issues in Spanish." }, "info_url": null, "description": { "fi": "<p>Ryhmässä keskustellaan espanjan kielellä arkipäivän asioista. Tervetuloa mukaan!</p><p><br></p><p>El grupo está dirigido a personas que les interesa el español, este grupo es de discusión informal, con temas de uso cotidiano. No se necesita ningún nivel, podemos empezar desde el inicio juntos.</p><p>No es necesario registrarse.</p><p>¡Bienvenidos a disfrutar de un tiempo divertido!</p>", "sv": "<p>Gruppen diskuterar vardagsfrågor på spanska.</p>", "en": "<p>The group discusses everyday issues in Spanish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2phrgdq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69624", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385647, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-28T06:14:49.109028Z", "last_modified_time": "2026-07-28T06:14:49.109046Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796108.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385647/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-28T06:14:48.902719Z", "last_modified_time": "2026-07-28T06:14:49.416598Z", "date_published": null, "start_time": "2026-08-03T05:00:00Z", "end_time": "2026-08-30T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haagan Taideseura: Tiia Bhandarin luontokuvia keväästä ja kesästä 2026", "sv": "Haagan Taideseura: Tiia Bhandarin luontokuvia keväästä ja kesästä 2026", "en": "Haagan Taideseura: Tiia Bhandarin luontokuvia keväästä ja kesästä 2026" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Luontokuvia keväästä ja kesästä 2026 on Haagan Taideseuran jäsenen Tiia Bhandarin (os. Mustonen) valokuvanäyttely." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/90B9674D695AB212C3564A519CD47FFA/Haagan_Taideseura_Tiia_Bhandarin_luontokuvia_kevaasta_ja_kesasta_2026", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/90B9674D695AB212C3564A519CD47FFA/Haagan_Taideseura_Tiia_Bhandarin_luontokuvia_kevaasta_ja_kesasta_2026", "en": "http://www.kanneltalo.fi/en/events/event/90B9674D695AB212C3564A519CD47FFA/Haagan_Taideseura_Tiia_Bhandarin_luontokuvia_kevaasta_ja_kesasta_2026" }, "description": { "fi": "<p>Luontokuvia keväästä ja kesästä 2026 on Haagan Taideseuran jäsenen Tiia Bhandarin (os. Mustonen) valokuvanäyttely.</p><p>Näyttelyssä on esillä 15 valokuvaa Suomen luonnosta parhaimmillaan, ja ne on otettu näyttelyn nimen mukaisesti kevään ja kesän aikana vuonna 2026. <br> <br>Bhandari on vuonna 1989 syntynyt vapaa taiteilija ja valokuvaaja. Hän on ollut Haagan Taideseuran jäsen kesästä 2019 alkaen. <br> <br>Lämpimästi tervetuloa!</p><p>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69624/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2hctsm4", "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:agggfz66mq/?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:p2149/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctotu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctp7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctq2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctrua/?format=api" } ], "images": [ { "id": 2385645, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-27T11:26:53.293907Z", "last_modified_time": "2026-07-27T11:26:53.293926Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e2447947-54da-43b4-9403-d80eee525fcf.jpg", "name": "Tomaattipiirakka", "cropping": "0,70,3000,3070", "photographer_name": "Photo by LUM3N on Unsplash", "alt_text": "Tomaattipiirakka", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T11:50:24.947809Z", "last_modified_time": "2026-07-27T11:50:24.947825Z", "date_published": null, "start_time": "2026-09-14T08:00:00Z", "end_time": "2026-12-15T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kokataan kasvislounas", "sv": "Vi lagar en vegetarisk lunch", "en": "Let's Cook a Vegetarian Lunch" }, "location_extra_info": { "fi": "Kapyysi", "sv": "Kapyysi", "en": "Kapyysi" }, "provider": null, "short_description": { "fi": "Valmistamme yhdessä herkullisen kasvislounaan vaihtuvan teeman mukaan. Maksuton tapahtuma aikuisille – aiempaa ruoanlaittokokemusta ei tarvita.", "sv": "Vi lagar en god vegetarisk lunch tillsammans med ett nytt tema varje gång. Gratis evenemang för vuxna. Inga förkunskaper behövs.", "en": "Cook a delicious vegetarian lunch together inspired by a different theme each time. Free event for adults. No previous cooking experience needed." }, "info_url": null, "description": { "fi": "<p><strong>Tule valmistamaan herkullinen kasvislounas rennossa ja hyväntuulisessa seurassa! Jokaisella kerralla kokkaamme eri teeman inspiroiman aterian alkuruoasta jälkiruokaan. Et tarvitse aiempaa kokemusta ruoanlaitosta – tapahtuma sopii niin aloittelijoille kuin kokeneemmillekin kotikokeille.</strong></p><p>Tapahtumasarja on maksuton, avoin kaikille ja suunnattu aikuisille. Mukaan mahtuu 12 ensimmäistä osallistujaa saapumisjärjestyksessä.</p><p>Tapahtumapäivät:</p><p>14.9. kello 11.00-14.00 </p><p>12.10. kello 11.00-14.00 </p><p>9.11. kello 11.00-14.00</p><p>15.12. kello 11.00-14.00</p>", "sv": "<p><strong>Kom och laga en god vegetarisk lunch i en avslappnad och trevlig atmosfär! Varje träff har ett nytt tema, och tillsammans lagar vi en hel måltid från förrätt till efterrätt. Du behöver inga tidigare erfarenheter av matlagning – evenemanget passar både nybörjare och mer erfarna hemmakockar.</strong></p><p>Evenemangsserien är gratis, öppen för alla och riktar sig till vuxna. De 12 första deltagarna får plats enligt ankomstordning.</p><p>Datum för evenemangen:</p><p>14 september kl. 11.00–14.00</p><p>12 oktober kl. 11.00–14.00</p><p>9 november kl. 11.00–14.00</p><p>15 december kl. 11.00–14.00</p>", "en": "<p><strong>Come and prepare a delicious vegetarian lunch in a relaxed and friendly atmosphere! Each session features a different theme, and together we'll cook a complete meal from starter to dessert. No previous cooking experience is needed – the event is suitable for both beginners and more experienced home cooks.</strong></p><p>The event series is free, open to everyone, and intended for adults. The first 12 participants will be admitted on a first-come, first-served basis.</p><p>Event dates:</p><p>14 September, 11:00 AM–2:00 PM</p><p>12 October, 11:00 AM–2:00 PM</p><p>9 November, 11:00 AM–2:00 PM</p><p>15 December, 11:00 AM–2:00 PM</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctsm4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2hctwpy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hcttga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctua4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctu5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctvvy/?format=api" } ], "images": [ { "id": 2385645, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-27T11:26:53.293907Z", "last_modified_time": "2026-07-27T11:26:53.293926Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e2447947-54da-43b4-9403-d80eee525fcf.jpg", "name": "Tomaattipiirakka", "cropping": "0,70,3000,3070", "photographer_name": "Photo by LUM3N on Unsplash", "alt_text": "Tomaattipiirakka", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385645/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T11:45:12.206002Z", "last_modified_time": "2026-07-27T11:45:12.206018Z", "date_published": null, "start_time": "2026-09-07T08:00:00Z", "end_time": "2026-12-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kokataan kasvislounas", "sv": "Vi lagar en vegetarisk lunch", "en": "Let's Cook a Vegetarian Lunch" }, "location_extra_info": { "fi": "Jukeboksi-tila", "sv": "Jukeboksi utrymme", "en": "Jukeboksi venue" }, "provider": null, "short_description": { "fi": "Valmistamme yhdessä herkullisen kasvislounaan vaihtuvan teeman mukaan. Maksuton tapahtuma aikuisille – aiempaa ruoanlaittokokemusta ei tarvita.", "sv": "Vi lagar en god vegetarisk lunch tillsammans med ett nytt tema varje gång. Gratis evenemang för vuxna. Inga förkunskaper behövs.", "en": "Cook a delicious vegetarian lunch together inspired by a different theme each time. Free event for adults. No previous cooking experience needed." }, "info_url": null, "description": { "fi": "<p><strong>Tule valmistamaan herkullinen kasvislounas rennossa ja hyväntuulisessa seurassa! Jokaisella kerralla kokkaamme eri teeman inspiroiman aterian alkuruoasta jälkiruokaan. Et tarvitse aiempaa kokemusta ruoanlaitosta – tapahtuma sopii niin aloittelijoille kuin kokeneemmillekin kotikokeille.</strong></p><p>Tapahtumasarja on maksuton, avoin kaikille ja suunnattu aikuisille. Mukaan mahtuu 12 ensimmäistä osallistujaa saapumisjärjestyksessä.</p><p>Tapahtumapäivät:</p><p>7.9. klo 11.00–14.00</p><p>19.10. klo 11.00–14.00</p><p>2.11. klo 11.00–14.00</p><p>14.12. klo 11.00–14.00</p>", "sv": "<p><strong>Kom och laga en god vegetarisk lunch i en avslappnad och trevlig atmosfär! Varje träff har ett nytt tema, och tillsammans lagar vi en hel måltid från förrätt till efterrätt. Du behöver inga tidigare erfarenheter av matlagning – evenemanget passar både nybörjare och mer erfarna hemmakockar.</strong></p><p>Evenemangsserien är gratis, öppen för alla och riktar sig till vuxna. De 12 första deltagarna får plats enligt ankomstordning.</p><p>Datum för evenemangen:</p><p>7 september kl. 11.00–14.00</p><p>19 oktober kl. 11.00–14.00</p><p>2 november kl. 11.00–14.00</p><p>14 december kl. 11.00–14.00</p>", "en": "<p><strong>Come and prepare a delicious vegetarian lunch in a relaxed and friendly atmosphere! Each session features a different theme, and together we'll cook a complete meal from starter to dessert. No previous cooking experience is needed – the event is suitable for both beginners and more experienced home cooks.</strong></p><p>The event series is free, open to everyone, and intended for adults. The first 12 participants will be admitted on a first-come, first-served basis.</p><p>Event dates:</p><p>7 September, 11:00 AM–2:00 PM</p><p>19 October, 11:00 AM–2:00 PM</p><p>2 November, 11:00 AM–2:00 PM</p><p>14 December, 11:00 AM–2:00 PM</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2hctwpy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2guhigy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhfei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhgje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhg5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhhsq/?format=api" } ], "images": [ { "id": 2385643, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-27T10:34:03.853809Z", "last_modified_time": "2026-07-27T10:34:03.853829Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1f6a5e1d-b364-423f-a0c3-92c84d9b7c83.jpg", "name": "Kirjoja ja ruokaa", "cropping": "696,0,2724,2029", "photographer_name": "Photo by reza Shayestehpour on Unsplash", "alt_text": "Sohvalla avonainen kirja, hedelmävati ja tyyny", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385643/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T11:15:02.199425Z", "last_modified_time": "2026-07-27T11:15:02.199447Z", "date_published": null, "start_time": "2026-09-17T13:30:00Z", "end_time": "2026-12-10T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjoja ja ruokaa", "sv": "Böcker och Mat", "en": "Books and Foods" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": null, "short_description": { "fi": "Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ", "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.", "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures." }, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 12 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p><br></p><p><strong>📅 Ajankohdat ja teemat:</strong></p><p><br></p><p>17.9. kello 16.30–19.30</p><p>Teema: Itä-Afrikka</p><p>Paikka: Entressen kirjasto, Jukeboksi</p><p><br></p><p>22.10. kello 16.30–19.30</p><p>Teema: Majakat ja varautuminen</p><p>Paikka: Entressen kirjasto, Jukeboksi</p><p><br></p><p>12.11. kello 16.30–19.30</p><p>Teema: Pimeyttä vastaan!</p><p>Paikka: Entressen kirjasto, Jukeboksi</p><p><br></p><p>10.12. kello 16.30–19.30</p><p>Teema: Kreikka</p><p>Paikka: Entressen kirjasto, Jukeboksi</p>", "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 12 deltagare. Evenemangets språk är finska.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p><br></p><p><strong>📅 Datum & teman:</strong></p><p><br></p><p>17 september kl. 16.30–19.30</p><p>Tema: Östafrika</p><p>Plats: Entresse bibliotek, Jukeboksi</p><p><br></p><p>22 oktober kl. 16.30–19.30</p><p>Tema: Fyrar och beredskap</p><p>Plats: Entresse bibliotek, Jukeboksi</p><p><br></p><p>12 november kl. 16.30–19.30</p><p>Tema: Mot mörkret!</p><p>Plats: Entresse bibliotek, Jukeboksi</p><p><br></p><p>10 december kl. 16.30–19.30</p><p>Tema: Grekland</p><p>Plats: Entresse bibliotek, Jukeboksi</p>", "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 12 attendees. The language of the event is Finnish.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p><br></p><p><strong>📅 Dates & Themes:</strong></p><p><br></p><p>17 September, 4:30–7:30 PM</p><p>Theme: East Africa</p><p>Location: Entresse Library, Jukeboksi</p><p><br></p><p>22 October, 4:30–7:30 PM</p><p>Theme: Lighthouses and Preparedness</p><p>Location: Entresse Library, Jukeboksi</p><p><br></p><p>12 November, 4:30–7:30 PM</p><p>Theme: Against the Darkness!</p><p>Location: Entresse Library, Jukeboksi</p><p><br></p><p>10 December, 4:30–7:30 PM</p><p>Theme: Greece</p><p>Location: Entresse Library, Jukeboksi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhigy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2guhlvq", "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: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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhi6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhjui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhkji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhlaq/?format=api" } ], "images": [ { "id": 2385643, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-27T10:34:03.853809Z", "last_modified_time": "2026-07-27T10:34:03.853829Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1f6a5e1d-b364-423f-a0c3-92c84d9b7c83.jpg", "name": "Kirjoja ja ruokaa", "cropping": "696,0,2724,2029", "photographer_name": "Photo by reza Shayestehpour on Unsplash", "alt_text": "Sohvalla avonainen kirja, hedelmävati ja tyyny", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385643/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T11:02:43.839474Z", "last_modified_time": "2026-07-27T11:02:43.839489Z", "date_published": null, "start_time": "2026-09-10T13:30:00Z", "end_time": "2026-12-02T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjoja ja ruokaa", "sv": "Böcker och Mat", "en": "Books and Foods" }, "location_extra_info": { "fi": "Yhteisökeittiö Kapyysi", "sv": "Kapyysi, Lippulaivabibliotekets gemenskapskök", "en": "Kapyysi Community Kitchen" }, "provider": null, "short_description": { "fi": "Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ", "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.", "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures." }, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 12 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p><br></p><p><strong>📅 Ajankohdat ja teemat:</strong></p><p><br></p><p>10.9. kello 16.30–19.30</p><p>Teema: Itä-Afrikka </p><p>Paikka: Lippulaivan kirjaston yhteisökeittiö Kapyysi</p><p><br></p><p>14.10. kello 16.30–19.30</p><p>Teema: Majakat ja varautuminen</p><p>Paikka: Lippulaivan kirjaston yhteisökeittiö Kapyysi</p><p><br></p><p>5.11. kello 16.30–19.30</p><p>Teema: Pimeyttä vastaan!</p><p>Paikka: Lippulaivan kirjaston yhteisökeittiö Kapyysi</p><p><br></p><p>2.12. kello 16.30–19.30</p><p>Teema: Kreikka</p><p>Paikka: Lippulaivan kirjaston yhteisökeittiö Kapyysi</p>", "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 12 deltagare. Evenemangets språk är finska.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p><br></p><p><strong>📅 Datum & teman:</strong></p><p><br></p><p>10 september kl. 16.30–19.30</p><p> Tema: Östafrika</p><p> Plats: Kapyysi, Lippulaivabiblioteket</p><p><br></p><p>14 oktober kl. 16.30–19.30</p><p>Tema: Fyrar och beredskap</p><p>Plats: Kapyysi, Lippulaivabiblioteket</p><p><br></p><p>5 november kl. 16.30–19.30</p><p>Tema: Mot mörkret!</p><p>Plats: Kapyysi, Lippulaivabiblioteket</p><p><br></p><p>2 december kl. 16.30–19.30</p><p>Tema: Grekland</p><p>Plats: Kapyysi, Lippulaivabiblioteket</p>", "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 12 attendees. The language of the event is Finnish.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p><br></p><p><strong>📅 Dates & Themes:</strong></p><p><br></p><p>10 September, 4:30–7:30 PM</p><p>Theme: East Africa</p><p>Location: Kapyysi Community Kitchen, Lippulaiva Library</p><p><br></p><p>14 October, 4:30–7:30 PM</p><p>Theme: Lighthouses and Preparedness</p><p>Location: Kapyysi Community Kitchen, Lippulaiva Library</p><p><br></p><p>5 November, 4:30–7:30 PM</p><p>Theme: Against the Darkness!</p><p>Location: Kapyysi Community Kitchen, Lippulaiva Library</p><p><br></p><p>2 December, 4:30–7:30 PM</p><p>Theme: Greece</p><p>Location: Kapyysi Community Kitchen, Lippulaiva Library</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhlvq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2guhnya", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhmmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhmwy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhm6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhngi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhnqa/?format=api" } ], "images": [ { "id": 2385644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-27T10:18:42.019228Z", "last_modified_time": "2026-07-27T10:18:42.019249Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aebf2e05-bf61-4705-b9ed-858ffa4ca155.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tialisuuden mainos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T10:19:30.626874Z", "last_modified_time": "2026-07-27T10:19:30.626894Z", "date_published": null, "start_time": "2026-07-30T13:30:00Z", "end_time": "2026-08-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Roda ry Vertaistuki", "sv": "Roda ry Kamratstöd", "en": "Roda ry Peer support" }, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "provider": { "fi": "Roda ry", "sv": "Roda ry", "en": "Roda ry" }, "short_description": { "fi": "Roda ry Vertaistuki", "sv": "Roda ry Kamratstöd", "en": "Roda ry Peer support" }, "info_url": null, "description": { "fi": "<p>Roda ry Vertaistuki</p>", "sv": "<p>Roda ry Kamratstöd</p>", "en": "<p>Roda ry Peer support</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2guhnya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp2fyy4de", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyyybq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyyyt4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyyy4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyyzeu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyyzoy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyyzwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy2ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy2iy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy2qy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy2yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy3be/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy3ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy3s4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy33e/?format=api" } ], "images": [ { "id": 150453, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-07T11:30:54.908155Z", "last_modified_time": "2025-12-01T09:54:37.517785Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/luetaanyhdess%C3%A4.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "valokuva kädestä, muistilapusta ja suomenkielen oppikirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-27T09:13:57.908754Z", "last_modified_time": "2026-07-27T09:13:57.908774Z", "date_published": null, "start_time": "2026-09-22T11:00:00Z", "end_time": "2026-12-22T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luetaan yhdessä", "sv": "Vi läser tillsammans", "en": "Let's Read Together" }, "location_extra_info": { "fi": "Akseli tai Elina", "sv": "Akseli eller Elina", "en": "Akseli or Elina" }, "provider": null, "short_description": { "fi": "Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.\n\nOpettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.", "sv": "Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!", "en": "Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!" }, "info_url": null, "description": { "fi": "<p>Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.</p><p>Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter, diskuterar olika ämnen och övar på att skriva varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp.</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts, discuss different topics and practice writing every time. It's not necessary to register in advance, you can just show up.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp2fyy4de/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpzj6reom", "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:agggfz66i4/?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:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385640, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-24T15:29:44.787642Z", "last_modified_time": "2026-07-24T15:29:44.787656Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b8dd64b-5f40-41d4-b501-360712d937c2.jpg", "name": "Näyttelyn valokuvat otti Tuomo Olkkonen 60 vuotta sitten Sandvikin entisellä kalastajatilalla Laurinlahdessa 29.-30.5.1966 vain 15-vuotiaana tapiolalaisnuorena", "cropping": "168,0,1176,1008", "photographer_name": "Tuomo Olkkonen", "alt_text": "Helsinki Folk Festival 66'n sanomalehtimainos vanhantyyppisellä kirjasinmerkeillä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385640/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-24T15:46:26.847468Z", "last_modified_time": "2026-07-24T15:46:26.847485Z", "date_published": "2026-07-24T15:48:00Z", "start_time": "2026-08-02T07:00:00Z", "end_time": "2026-08-29T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tuomo Olkkosen valokuvanäyttely - Helsinki Folk Festival 66" }, "location_extra_info": { "fi": "Salonki" }, "provider": null, "short_description": { "fi": "Valokuvanäyttely on kokoelma Tuomo Olkkosen 60 vuotta sitten Helsinki Folk Festival 66:sta ottamista kuvista" }, "info_url": null, "description": { "fi": "<p>Valokuvanäyttely on kokoelma Tuomo Olkkosen 60 vuotta sitten Helsinki Folk Festival 66:sta ottamista kuvista.</p><p><br></p><p>Näyttelyn järjestelyjä tukee Laurinlahden Yhdyskunta - Larsviks Samhälle ry.</p><p><br></p><p>Avajaiset pidetään sunnuntaina 2.8.2026 klo 16-17:45 Lippulaivan kirjaston Salongissa (Espoonlahdenkatu 8, 02320 ESPOO)</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpzj6reom/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpzihwyya", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385639, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-24T12:15:15.791375Z", "last_modified_time": "2026-07-24T12:15:15.791392Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1a117fdd-3298-4366-af63-993e10b88eeb.jpg", "name": "Maria Ulvinen: Let's celebrate", "cropping": "163,0,813,650", "photographer_name": "", "alt_text": "Maria Ulvinen: Let's celebrate (maalaus)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385639/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-24T12:27:04.530379Z", "last_modified_time": "2026-07-24T12:28:52.984589Z", "date_published": "2026-07-24T12:00:00Z", "start_time": "2026-07-30T07:00:00Z", "end_time": "2026-08-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Maria Ulvinen: Joy In Between -taidenäyttely", "sv": "Maria Ulvinen: Joy In Between -konstutställning", "en": "Maria Ulvinen: Joy In Between - art exhibition" }, "location_extra_info": { "fi": "Galleria Betoni", "sv": "Galleri Betoni", "en": "Gallery Betoni" }, "provider": null, "short_description": { "fi": "Joy In Between -näyttelyn teokset liikkuvat juhlan, läheisyyden ja keveyden äärellä. ", "sv": "Verken i utställningen ”Joy In Between” rör sig i gränslandet mellan fest, närhet och lätthet.", "en": "The works in the ‘Joy In Between’ exhibition explore themes of celebration, intimacy and light-heartedness." }, "info_url": { "fi": "https://www.mariasusannaart.com/", "sv": "https://www.mariasusannaart.com/", "en": "https://www.mariasusannaart.com/" }, "description": { "fi": "<p>Ilo ei useinkaan ole äänekästä. Se löytyy yhteisistä hetkistä, hiljaisista hengähdyksistä, valosta ja näkymättömästä tilasta, joka yhdistää ihmisiä.</p><p><em>Joy In Between</em> -näyttelyn teokset liikkuvat juhlan, läheisyyden ja keveyden äärellä. Jokainen maalaus kertoo omalla tavallaan onnesta – joskus riehakkaasta, joskus lähes huomaamattomasta.</p><p>Näyttelyssä on esillä viisi teosta, joista kolme on kolmiosaisia teossarjoja, joiden osat toimivat yksittäin mutta muodostavat yhdessä kokonaisuuden.</p><p>Näyttelyn <a href=\"https://www.mariasusannaart.com/taidekauppa/?collection=joy-in-between-nayttelyn-teokset\">teosesittelyt</a>. <em>Joy In Between</em> -näyttelyn <a href=\"https://drive.google.com/file/d/1GwMAPTpKLpWL-ksvcowbuLxRcq3OfI07/view?usp=sharing\">esite</a> (pdf). </p><p>Lisätietoa taiteilijasta: <a href=\"https://www.mariasusannaart.com/taitelijasta/\">https://www.mariasusannaart.com/taitelijasta/</a></p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p>Verken i utställningen ”Joy In Between” rör sig i gränslandet mellan fest, närhet och lätthet.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>", "en": "<p>The works in the ‘Joy In Between’ exhibition explore themes of celebration, intimacy and light-heartedness.</p><p>The exhibition can be seen during the library opening hours. Welcome!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpzihwyya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69477", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385638, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-23T14:23:10.084405Z", "last_modified_time": "2026-07-23T14:23:10.084419Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790020.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385638/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-23T14:23:09.923778Z", "last_modified_time": "2026-07-23T14:23:10.268258Z", "date_published": null, "start_time": "2026-11-16T08:15:00Z", "end_time": "2026-11-16T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu taaperoille", "sv": "Musikaliskt konstäventyr för 1–2-åringar", "en": "Musical Art Adventure for toddlers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2C0F8EA1401C606998C3F3649E261FD8/Musiikillinen_taideseikkailu_taaperoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/2C0F8EA1401C606998C3F3649E261FD8/Musikaliskt_konstaventyr_for_1_2-aringar_", "en": "http://www.annantalo.fi/en/events/event/2C0F8EA1401C606998C3F3649E261FD8/Musical_Art_Adventure_for_toddlers_" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 1–2-v. <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Taaperoiden taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 10.15–10.45.</p><p>Ryhmään mahtuu kuusi taaperoa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokuussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 1–2 års <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex småbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 1–2-year-olds <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69476", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385637, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-23T14:23:06.724854Z", "last_modified_time": "2026-07-23T14:23:06.724876Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790017.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385637/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-23T14:23:06.538055Z", "last_modified_time": "2026-07-23T14:23:06.912125Z", "date_published": null, "start_time": "2026-11-02T08:15:00Z", "end_time": "2026-11-02T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu taaperoille", "sv": "Musikaliskt konstäventyr för 1–2-åringar", "en": "Musical Art Adventure for toddlers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B491BE775D200267E95728D9CD8A6073/Musiikillinen_taideseikkailu_taaperoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/B491BE775D200267E95728D9CD8A6073/Musikaliskt_konstaventyr_for_1_2-aringar_", "en": "http://www.annantalo.fi/en/events/event/B491BE775D200267E95728D9CD8A6073/Musical_Art_Adventure_for_toddlers_" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 1–2-v. <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Taaperoiden taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 10.15–10.45.</p><p>Ryhmään mahtuu kuusi taaperoa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokuussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 1–2 års <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex småbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 1–2-year-olds <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69476/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69475", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385636, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-23T14:23:02.674705Z", "last_modified_time": "2026-07-23T14:23:02.674728Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790014.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385636/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-23T14:23:02.460703Z", "last_modified_time": "2026-07-23T14:23:02.946368Z", "date_published": null, "start_time": "2026-10-19T07:15:00Z", "end_time": "2026-10-19T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu taaperoille", "sv": "Musikaliskt konstäventyr för 1–2-åringar", "en": "Musical Art Adventure for toddlers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C1AAB5ADD6EDCEBE23694C1708172D4A/Musiikillinen_taideseikkailu_taaperoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/C1AAB5ADD6EDCEBE23694C1708172D4A/Musikaliskt_konstaventyr_for_1_2-aringar_", "en": "http://www.annantalo.fi/en/events/event/C1AAB5ADD6EDCEBE23694C1708172D4A/Musical_Art_Adventure_for_toddlers_" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 1–2-v. <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Taaperoiden taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 10.15–10.45.</p><p>Ryhmään mahtuu kuusi taaperoa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokuussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 1–2 års <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex småbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 1–2-year-olds <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69031", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201295, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T13:13:37.249955Z", "last_modified_time": "2026-05-13T13:13:37.249969Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785684.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201295/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T13:13:37.142353Z", "last_modified_time": "2026-07-23T11:22:38.915275Z", "date_published": null, "start_time": "2026-08-22T11:00:00Z", "end_time": "2026-08-22T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Balearic Summer Disco", "sv": "Balearic Summer Disco", "en": "Balearic Summer Disco" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aurinko korkealla, bassot lämpiminä!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E898781B8DEEBEDF4D14AC917BDB8D38/Balearic_Summer_Disco", "sv": "http://www.espanlava.fi/sv/evenemang/event/E898781B8DEEBEDF4D14AC917BDB8D38/Balearic_Summer_Disco", "en": "http://www.espanlava.fi/en/events/event/E898781B8DEEBEDF4D14AC917BDB8D38/Balearic_Summer_Disco" }, "description": { "fi": "<p>Aurinko korkealla, bassot lämpiminä!</p><p><b>DJ Magic Sam</b> ja <b>DJ Hermanni</b> – kaksi klubikulttuurin konkaria, joiden käsissä helsinkiläiset tanssilattiat ovat hehkuneet lukemattomia kertoja – tuovat Espan lavalle kahden tunnin matkan balearic-rytmien, discon kimalluksen ja kesäisen huolettomuuden maailmaan. Mukana lavalla myös <b>Aino Ryynänen</b>, joka esitanssittaa yleisön mukaan liikkeeseen ja tekee päivästä yhteisen tanssijuhlan.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69031/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpy5qbjrq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz652q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz665y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz667y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?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:agggfz66yu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67g4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agn6agzgh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbd2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbepi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbezm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbfcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbfma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbfve/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbf6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbgia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbgri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbg34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbhfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbhpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbhze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbicq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbina/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbiwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbi7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbjiy/?format=api" } ], "images": [ { "id": 1490478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-20T11:38:13.223220Z", "last_modified_time": "2024-12-20T11:38:13.223250Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fcad98d6-da1e-4812-a023-fdf6d059bb10.jpg", "name": "", "cropping": "169,0,769,600", "photographer_name": "", "alt_text": "Tytöt hyppäävät ilmaan.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-23T10:54:53.136932Z", "last_modified_time": "2026-07-23T10:54:53.136948Z", "date_published": null, "start_time": "2026-08-12T12:00:00Z", "end_time": "2026-12-09T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " 14-28v. tyttöryhmä Girls Only", "sv": "Girls Only", "en": "Girls Only" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "provider": { "fi": "Espoon Tyttöjen Talo ja Espoon Kaupunginkirjasto", "sv": "Espoon Tyttöjen Talo ja Esbo Stads Bibliotek", "en": "Espoon Tyttöjen Talo ja Espoo City Library" }, "short_description": { "fi": " Ryhmä yli 14-vuotiaille tytöille sukupuolen moninaisuus huomioiden. Ryhmä toteutetaan yhteistyössä Espoon Tyttöjen Talon kanssa.", "sv": "Grupp för flickor över 14 år med hänsyn till könsmångfald. Gruppen genomförs i samarbete med Espoon Tyttöjen Talo.", "en": "A group for girls over 14 years old, taking gender diversity into account. The group is carried out in collaboration with Espoon Tyttöjen Talo." }, "info_url": null, "description": { "fi": "<p>Tytöille tarjotaan oma tila, jossa voi tehdä itselle mieluisia asioita ja keskustella turvallisten aikuisten kanssa itseä pohdituttavista asioista. Rento ja hauska ryhmä, jonka ohjelma perustuu osallisuuteen. Myös palveluohjausta tarvittaessa. Ryhmä kokoontuu keskiviikkoisin Entressen kirjaston Jukeboksi tilassa.</p>", "sv": "<p>Flickorna får ett eget utrymme där de kan göra saker de tycker om och prata med trygga vuxna om saker som de funderar på. En avslappnad och rolig grupp där programmet baseras på delaktighet. Även servicevägledning erbjuds vid behov.</p>", "en": "<p>Girls are provided with their own space where they can do activities they enjoy and talk with trusted adults about things they are thinking about. A relaxed and fun group, with a program based on participation. Service guidance is also available if needed.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpy5qbjrq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69482", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?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:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/savoy-teatteri/etnosoi-festival-aynur-turkrd-rabe-4191561/", "en": "https://www.lippu.fi/artist/savoy-teatteri/etnosoi-festival-aynur-turkrd-rabe-4191561/" }, "description": null, "price": { "fi": "17 € - 45 €", "en": "17 € - 45 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385287, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T12:14:25.469690Z", "last_modified_time": "2026-06-22T12:14:25.469713Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795598.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385287/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-22T12:14:25.281181Z", "last_modified_time": "2026-07-23T10:22:48.832632Z", "date_published": null, "start_time": "2026-11-02T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aynur (TUR/KRD): Rabe – Etnosoi! Festival", "en": "Aynur (TUR/KRD): Rabe – Etnosoi! Festival" }, "location_extra_info": null, "provider": { "fi": "Maailman musiikin keskus", "en": "Global Music Centre" }, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/EF89D59542D93967EC0252232DA690D9/Aynur_TUR_KRD_Rabe", "en": "http://www.savoyteatteri.fi/en/events/event/EF89D59542D93967EC0252232DA690D9/Aynur_TUR_KRD_Rabe" }, "description": { "fi": "<p>Aynur vieraili Etnosoi!-festivaalilla edellisen kerran 20 vuotta sitten, ja tuolloin täällä vielä tuntematon taiteilija valloitti suomalaisyleisön sydämet kertaheitolla. Ura oli saanut väkevän alun ja tie kansainvälisille markkinoille oli avoinna mm. valtavan suosion saavuttaneen Keçe Kurdan (Kurdityttö) -kappaleen siivittämänä.<br>Paljon on sittemmin tapahtunut. Aynur yhtyeineen saapuu Suomeen maailmanmusiikkilistojen kärkisijoille kiivenneen kahdeksannen albuminsa ’Rabe’ kiertueen viimeisten keikkojen myötä. Albumin sävellykset ja sanoitukset ovat osin traditionaaleja, osin Aynurin käsialaa ja lisäksi kurdi-, alevi- ja jesidikulttuurin ikoneilta, kuten Şâh Hatâî ja Pir Sultan Abdal.</p><p>Aynur on yksi kurdimusiikin ikonisimmista ja vaikutusvaltaisimmista äänistä. 25-vuotisen uransa aikana hän on muokannut musiikkimaisemaa yhdistämällä kurdimusiikin syvään juurtuneet perinteet länsimaisiin vaikutteisiin ja luomalla ajattoman ja maailmanlaajuisesti resonoivan musiikillisen kielen. Hänen ainutlaatuinen äänensä ja vetoava tarinankerrontansa edustavat hänen juuriensa rikasta kulttuuriperintöä, joka on tulkittu uudelleen universaaliksi genreksi. Kansainvälisen yhtyeensä kanssa hän etsii myös yhtymäkohtia länsieurooppalaisiin tyyleihin.</p><p>Aynur on tehnyt yhteistyötä monien maailmankuulujen muusikoiden ja yhtyeiden, kuten Yo-Yo Man ja Silk Road Ensemblen, Maestro Riccardo Mutin, Kayhan Kalhorin ja Nederland Blazers Ensemblen kanssa.</p><p>Aynur on vaikuttanut merkittävästi nykykurdien musiikkiperinteen kehitykseen yhdistäen historialliset ja modernit elementit ja samalla tavoittanut maailmanlaajuiset yleisöt. Hänen poikkeuksellinen kykynsä yhdistää ihmisiä musiikin kautta vahvistaa hänen rooliaan yhtenä vaikutusvaltaisimmista ja näkyvimmistä äänistä niin kurdilaisessa musiikissa kuin kansainvälisellä musiikin kentällä ylipäätään.</p><p>Lavalla Helsingissä:</p><p>Aynur - laulu, tembûr-luuttu<br>James Wylie - klarinetti<br>Mahan Mirarab - kitara<br>Franz von Chossy - piano<br>Chris Jennings - basso<br>Patrick Goraguer – rummut</p><p>»Aynurin äänen kuuleminen on kuin kuulisi kaiken inhimillisen ilon ja kärsimyksen kerrosten muuttumisen yhdeksi ääneksi. Se kurottaa syvälle sielumme, raastaa sydämemme, ja silloin olemme hetkeksi yhdistyneet yhdeksi. Se on unohtumatonta!« Yo-Yo Ma</p><p>Aynur on saanut maailmanlaajuista tunnustusta ja useita palkintoja huippuammattimaisuudestaan ja kauniista taiteestaan; yksi niistä on WOMEX 21 Artist Award.</p><p>Kesto n. 90 min, ei väliaikaa</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>", "en": "<p>Aynur visited the Etnosoi! festival for the last time 20 years ago, and at that time the artist, who was still unknown here, conquered the hearts of the Finnish audience in one fell swoop. Her career had gotten off to a strong start and the road to the international market was open, among other things, thanks to the hugely popular song Keçe Kurdan (Kurdish Girl). A lot has happened since then. Aynur and her band are arriving in Finland with the final shows of the tour of Aynur’s eighth album ‘Rabe’, which has climbed to the top of the world music charts. The music and lyrics come from tradition, as well as from Aynur herself and icons of Kurdish, Alevi, and Yazidi culture such as Şâh Hatâî and Pir Sultan Abdal.</p><p>Aynur is one of the most iconic and influential voices of Kurdish music today. Over her 25-year career, she has reshaped the musical landscape by blending the deep-rooted<br>traditions of Kurdish folk music with contemporary Western influences, creating a timeless and globally resonant musical language. Her extraordinary voice and emotive<br>storytelling represent the rich cultural heritage of her roots, reinterpreted as a universal genre. With her international band, she also seeks points of contact with Western European styles.</p><p>Aynur has collaborated with world-renowned musicians and ensembles, including Yo-Yo Ma and the Silk Road Ensemble, Maestro Riccardo Muti, Kayhan Kalhor and the Nederland Blazers Ensemble.</p><p>Aynur has significantly influenced the development of contemporary Kurdish musical tradition, effectively bridging historical and modern elements while reaching audiences<br>worldwide. Her exceptional capacity to connect individuals through music affirms her role as one of the most impactful and prominent voices in both Kurdish and international music.</p><p>On stage in Helsinki:<br>Aynur - lead vocal, tembûr lute<br>James Wylie - clarinet<br>Mahan Mirarab - guitar<br>Franz von Chossy - piano<br>Chris Jennings - bass<br>Patrick Goraguer – drums</p><p>»To hear Aynur’s voice is to hear the transformation of all the layers of human joy and suffering into one sound. It reaches so deep into our soul, tears into our hearts, and then we are for one moment, joined as one. It is unforgettable!« Yo-Yo Ma</p><p>Aynur has received worldwide recognition and many awards for her top professionism and her beautiful art – such as the WOMEX 21 Artist Award.</p><p>Duration of the concert about 90 minutes, no intermission</p><p>Stalls/floor licensed area, age limit 18. The balcony welcomes all ages, not a licensed area.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68997", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201253, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-12T12:14:22.286703Z", "last_modified_time": "2026-05-12T12:14:22.286721Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787870.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201253/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-12T12:14:22.170574Z", "last_modified_time": "2026-07-23T08:22:39.150790Z", "date_published": null, "start_time": "2026-07-23T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTU | Runoen – Open Stage", "sv": "INSTÄLLT | Runoen – Open Stage", "en": "CANCELLED | Runoen – Open Stage" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tapahtuma on valitettavasti peruuntunut.", "sv": "Evenemanget har tyvärr ställts in.", "en": "The event has unfortunately been cancelled." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/3C9D5511DFFED4517FFA7EE7D553FA38/PERUTTU_Runoen", "sv": "http://www.espanlava.fi/sv/evenemang/event/3C9D5511DFFED4517FFA7EE7D553FA38/INSTALLT_Runoen", "en": "http://www.espanlava.fi/en/events/event/3C9D5511DFFED4517FFA7EE7D553FA38/CANCELLED_Runoen" }, "description": { "fi": "<p>Tapahtuma on valitettavasti peruuntunut.</p><p>Runoen on yhtye, jonka musiikki ei jätä kylmäksi: se koskettaa, lohduttaa, herättää, ravistelee.</p><p>Pianisti Juha Granlundin pop/jazz/folk-henkisissä sävellyksissä rakastettujen runoilijoiden tekstit saavat uuden elämän. Konsertissa kuullaan mm. Edith Södergranin, Eino Leinon, Uuno Kailaan sekä Aleksis Kiven runoutta.</p><p>Yhtyeen kokoonpano:</p><p>Juha Granlund, piano<br> Satu Mattila, laulu<br> Tamara Vanhanen, laulu ja viulu<br> Esa Hiltunen laulu ja basso</p>", "sv": "<p>Evenemanget har tyvärr ställts in.</p><p>Runoen är ett band vars musik aldrig lämnar lyssnaren kall: den griper, tröstar, väcker, ruskar om.</p><p>Pianisten Juha Granlunds pop/jazz/folk-kompositioner ger nytt liv åt älskade poeters texter. På konserten får vi höra bland annat Edith Södergrans, Eino Leinos, Uuno Kailas och Aleksis Kivis poesi.</p>", "en": "<p>The event has unfortunately been cancelled.</p><p>Runoen is a band whose music never leaves you cold: it touches, comforts, awakens and shakes the listener to their core.</p><p>Runoen is a band whose music never leaves you cold: it touches, comforts, awakens and shakes the listener to their core. Pianist Juha Granlund's pop/jazz/folk compositions bring new life to the texts by beloved poets. The concert will feature poetry by Edith Södergran, Eino Leino, Uuno Kailas and Aleksis Kivi, among others.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68997/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68347", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": 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-07-22T13:22:47.574039Z", "date_published": null, "start_time": "2026-08-29T12:00:00Z", "end_time": "2026-08-29T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metsän suojassa – Katja Luhtala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille | Suomen luonnon päivä", "sv": "Metsän suojassa – 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 close-by forests | Finnish Nature Day" }, "location_extra_info": null, "provider": 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": "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" }, "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>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. <br> <br>Medverkande:\u2028Anneli Johansson,\u2028Eeva Markkanen,\u2028Johanna Mikkonen,\u2028Katja Luhtala,\u2028Minna Inkeli,\u2028Outi Pirinen <br>Regi och dramaturgi: Katja Luhtala</p><p>Texter: arbetsgrupp, Sari Lilja, Miianinna Auringonsilta</p><p>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>. <br> <br>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>he performance is a communal, group-based work that delves into personal and collective memories and emotions related to local forests. <br> <br>Performers:\u2028Anneli Johansson,\u2028Eeva Markkanen,\u2028Johanna Mikkonen,\u2028Katja Luhtala,\u2028Minna Inkeli,\u2028Outi Pirinen <br>Direction and dramaturgy: Katja Luhtala</p><p>Texts: creative team, Sari Lilja, Miianinna Auringonsilta</p><p>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, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68346", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385059, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T13:13:25.426125Z", "last_modified_time": "2026-06-10T13:13:25.426140Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787749.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385059/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T13:13:25.274669Z", "last_modified_time": "2026-07-22T13:22:47.080168Z", "date_published": null, "start_time": "2026-08-29T10:00:00Z", "end_time": "2026-08-29T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metsän suojassa – Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä", "sv": "Metsän suojassa – I skydd av skogen – Rundabordssamtal om en utopisk framtid | Finska naturens dag", "en": "Metsän suojassa – In the Shelter of the Forest – Roundtable discussion on a utopian future | Finnish Nature Day" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pyöreän pöydän keskustelu Suomen luonnon päivänä 29.8.2026 on yksi Metsäkissa2044-hankkeen loppuhuipennuksen päätapahtumista.", "sv": "Rundabordssamtalet på Finska naturens dag den 29 augusti 2026 är ett av huvudevenemangen i avslutningen av projektet Metsäkissa2044.", "en": "The roundtable discussion on Finnish Nature Day, 29 August 2026, is one of the main events marking the culmination of the Metsäkissa2044 project." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3EA7FF161BEC4E7C7B667EC2E4E066E3/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3EA7FF161BEC4E7C7B667EC2E4E066E3/Metsan_suojassa_I_skydd_av_skogen", "en": "http://www.kanneltalo.fi/en/events/event/3EA7FF161BEC4E7C7B667EC2E4E066E3/Metsan_suojassa_In_the_Shelter_of_the_Forest" }, "description": { "fi": "<p>Pyöreän pöydän keskustelu Suomen luonnon päivänä 29.8.2026 on yksi Metsäkissa2044-hankkeen loppuhuipennuksen päätapahtumista.</p><p>Vetäjä: Jaana Kanninen<br>Osallistujat: Anni Kytömäki, Elisa Aaltola, Ilari Sääksjärvi, Jukka Ilmonen, Juha-Pekka Väisänen<br>Muut osallistujat tarkentuvat myöhemmin.<br> <br>Metsän suojassa -näyttely luo keskustelulle mystisen, metsän monista arvoista muistuttavan ympäristön. Keskusteluun on kutsuttu tieteen ja taiteen huippunimiä Suomesta. Mukaan ovat lupautuneet ainakin rakastettu kirjailija <b>Anni Kytömäki</b>, jonka teoksissa luonto ja sen kaikki eliöt ovat keskeisellä sijalla. Toinen eettisestä keskustelusta tuttu nimi on Eläinoikeusakatemian toiminnanjohtaja ja eläinfilosofi <b>Elisa Aaltola</b>, joka tunnetaan syvällisistä ajatuksistaan.</p><p>Turun yliopiston biodiversiteettitutkimuksen professori <b>Ilari Sääksjärvi</b> on Suomen Luontopaneelin varapuheenjohtaja ja palkittu yhteiskunnallinen vaikuttaja. Lisäksi keskustelijoiden joukossa on Metsäkissa2044 -hankkeen vetäjä, ”jokamiesjantuseksi” itsenään tituleeraava <b>Jukka Ilmonen</b>, jonka maailmankuva on räväkkä, radikaalikin. Joukko täydentyy vielä kohti elokuuta mentäessä.<br> <br>Jokainen osanottaja ilmaisee aluksi oman manifestinsa, josta käy ilmi, miten he hahmottavat hyvän tulevaisuuden, oman utopiansa. Myös Metsäkissa2044-ryhmän jäsen, käsitetaiteilija <b>Juha-Pekka Väisänen</b> osallistuu keskusteluun omalla manifestillaan, joka videoidaan suolta. Tästä alkaa syväluotaava keskustelu, jonka aikana hahmotellaan metsille ja kaikille sen asukkaille – ihmiskunta mukaan luettuna – hyvä tulevaisuus, joka osittain voi olla utopistinenkin. Tiedossa on keskustelu, jossa jokainen ruokkii toisensa näkemystä, sillä erilaisista dialogikeskusteluista niin tutuksi tullutta vastakkainasettelua ei nyt haeta.</p><p>Kaksivuotinen Metsäkissa2044-hanke huipentuu Kanneltalon tapahtumasarjaan. Se avataan yleisölle 14.8.2026 Metsän suojassa -näyttelyn muodossa, ja siitä alkaa tapahtumasarja, joka päättyy Suomen luonnon päivänä 29.8.2026. Väliin mahtuu metsäteatteria, metsään liittyviä ääniteoksia, luentoja ja työpajoja.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja 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>Rundabordssamtalet på Finska naturens dag den 29 augusti 2026 är ett av huvudevenemangen i avslutningen av projektet Metsäkissa2044.</p><p>Ledare: Jaana Kanninen</p><p>Deltagare: Anni Kytömäki, Elisa Aaltola, Ilari Sääksjärvi, Jukka Ilmonen, Juha-Pekka Väisänen <br>Övriga deltagare meddelas senare.</p><p>Utställningen Metsän suojassa skapar en mystisk miljö för samtalet som påminner om skogens många värden. Ledande namn inom vetenskapen och konsten i Finland har bjudits in till samtalet. Bland de medverkande finns åtminstone den älskade författaren <b>Anni Kytömäki</b>, vars verk kretsar kring naturen och alla levande organismer i den. Ett annat namn som är välkänt inom den etiska debatten är <b>Elisa Aaltola</b>, verksamhetsledare för Eläinoikeusakatemia (Djurrättsakademin) och djurfilosof och känd för sina djupsinniga tankar.</p><p><b>Ilari Sääksjärvi</b>, professor i biodiversitetsforskning vid Åbo universitet, är vice ordförande för Finlands naturpanel och en prisbelönt samhällspåverkare. <b>Bland deltagarna i samtalet finns dessutom ledaren för projektet Metsäkissa2044, Jukka Ilmonen</b>, som kallar sig själv för en helt vanlig kille och vars världsbild är djärv, till och med radikal. Deltagarlistan kompletteras ytterligare fram till augusti.</p><p>Varje deltagare presenterar inledningsvis sitt eget manifest, där det framgår hur de föreställer sig en ljus framtid, sin egen utopi. <b>Juha-Pekka Väisänen</b>, hantverkare och medlem i gruppen Metsäkissa2044, deltar i samtalet med sitt eget manifest, som videobandas i ett kärr. Här inleds en djuplodande diskussion där man skisserar en ljus framtid för skogarna och alla deras invånare – inklusive mänskligheten – en framtid som delvis också kan vara utopisk. Det blir en diskussion där alla bidrar till varandras synpunkter, eftersom man nu inte strävar efter den typ av motsättningar som blivit så vanliga i olika dialoger.</p><p>Det tvååriga projektet Metsäkissa2044 kulminerar i en evenemangsserie på Gamlasgården. Den öppnas för allmänheten den 14 augusti 2026 i form av utställningen Metsän suojassa, och därmed inleds en evenemangsserie som avslutas på Finska naturens dag den 29 augusti 2026. Programmet innehåller skogsteater, ljudverk med skogstema, föreläsningar och verkstäder.</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>The roundtable discussion on Finnish Nature Day, 29 August 2026, is one of the main events marking the culmination of the Metsäkissa2044 project.</p><p>Moderator: Jaana Kanninen</p><p>Participants: Anni Kytömäki, Elisa Aaltola, Ilari Sääksjärvi, Jukka Ilmonen, Juha-Pekka Väisänen <br>Other participants will be announced at a later date.</p><p>The In the Shelter of the Forest exhibition provides a mystical setting for discussion, serving as a reminder of the forest’s many values. Leading figures from the worlds of science and the arts in Finland have been invited to take part in the discussion. Among those who have agreed to take part is the much-loved author <b>Anni Kytömäki</b>, in whose works nature and all its living creatures play a central role. Another participant, familiar from ethical discussions, is <b>Elisa Aaltola</b>, executive director of Eläinoikeusakatemia and animal philosopher, known for her profound insights.</p><p>Professor of Biodiversity Research <b>Ilari Sääksjärvi</b> from the University of Turku is the vice-chair of the Finnish Nature Panel and an award-winning social influencer. The panellists also include the leader of the Metsäkissa2044 project, <b>Jukka Ilmonen</b>, who describes himself as a Jack of all trades and whose worldview is bold, even radical. More participants will join the fold as we head into August.</p><p>Each participant begins by presenting their own manifesto, setting out their vision of a better future – their own utopia. Member of the Metsäkissa2044 group and craft artist <b>Juha-Pekka Väisänen</b> also takes part in the discussion with his own manifesto, which is presented through video from a swamp. This leads into an in-depth discussion, during which a bright future is outlined for forests and all of their inhabitants – including humankind – that may in part even be utopian. The event features a discussion in which everyone builds on one another’s views, as we are not seeking an oppositional debate as is so often the case with dialogue discussions.</p><p>The two-year Metsäkissa2044 project culminates in a series of events at Kanneltalo. Kanneltalo opens to the public on 14 August 2026 as part of the In the Shelter of the Forest exhibition, marking the start of a series of events that culminates on Finnish Nature Day on 29 August 2026. The programme includes forest theatre, audio works related to the forest, lectures and workshops. <br> <br>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, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68346/?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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 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-07-22T13:22:46.689357Z", "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, "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" }, "location_extra_info": null, "provider": 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" }, "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. <br> <br>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. <br> <br>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. <br> <br>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, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68348/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }