Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=8
{ "meta": { "count": 31701, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=9", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=7" }, "data": [ { "id": "kulke:69857", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-08-28T11:22:31.632279Z", "last_modified_time": "2026-08-28T11:22:31.632294Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_796379.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-28T11:22:31.497339Z", "last_modified_time": "2026-09-10T08:14:39.209019Z", "date_published": null, "start_time": "2026-09-12T13:00:00Z", "end_time": "2026-09-12T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "PERUTTU | Doubt - Holding the Show Together", "sv": "INSTÄLLT | Doubt - Holding the Show Together", "en": "CANCELLED | Doubt - Holding the Show Together" }, "description": { "fi": "<p>Tapahtuma on valitettavasti peruttu. Pahoittelemme aiheutuvaa haittaa.</p><p>Mikä jää tallentamatta esittävässä taiteessa? Esityksemme Doubt - Holding the Show Together saa alkunsa yksinkertaisesta havainnosta: sama esitys voi onnistua yhtenä iltana täydellisesti ja lässähtää täysin seuraavana. Esiintyjät ja materiaali pysyvät samoina, mutta yleisö on muuttunut. Miten katsojilla voi olla näin syvä vaikutus siihen, mitä näyttämöllä tapahtuu?</p><p>Tätä kysymystä tutkimme pienten esitysten sarjassa eri puolilla Helsinkiä syksyllä 2026. Sukellamme esiintyjien ja yleisön väliseen näkymättömään vuorovaikutukseen kaiken loiston ja teatterisavun alla. Tämän vuorovaikutuksen ytimessä on kieltäytymisen mahdollisuus: yleisö voi millä hetkellä tahansa lakata välittämästä tai jopa lähteä pois. Ja tämä hauraus on osa sitä, mikä tekee koko tilanteesta niin elävän! Yleisö kannattelee esitystä, ja vastavuoroisesti esiintyjät kannattelevat yleisöä. Se on yksinkertainen, hiljainen sopimus, joka syntyy uudelleen joka ilta ja joka saa harvoin ansaitsemaansa huomiota – vaikka kaikki on siitä kiinni.</p><p>Lähdemme leikkisälle tutkimusmatkalle antaaksemme tälle sopimukselle sen ansaitseman arvon asettamalla sen esityssarjamme keskiöön.</p><p>Mitä tapahtuu, jos yleisölle annetaan äänekästä naposteltavaa herkän kohtauksen aikana?<br>Jos katsojat vaihtavat paikkaa jonkun tuntemattoman kanssa?<br>Jos jokainen voi valita eri kappaleen kuunneltavakseen katsoessaan samaa tanssia?<br>Jos kohtaus esitetään kokonaan latinaksi?</p><p>Sen sijaan, että työ pyytäisi katsojia ”osallistumaan” perinteisessä mielessä, se pyytää yleisöä huomaamaan, että he ovat osallistuneet koko ajan. Kuka loppujen lopuksi pitää esitystä kasassa?</p><p>Esityksen on kehittänyt Laserdragons2000-työryhmä osana Koneen Säätiön tukemaa Atten-dances-projektiaan. Olemme kansainvälinen ryhmä Taideyliopiston Teatterikorkeakoulusta valmistuneita tekijöitä.</p><p>Kesto: 60 minuuttia</p><p>Lempeää osallistumista, ajoittaisia kovia ääniä</p><p>TEKIJÄT/ESIINTYJÄT<br>Paria Mohajerani, Kadence Luella Neill, Minne Mäki, Myrsky Ylänen, Jan Stevuliak, Niko Nordström, Bence Huszerl, Barabas Balint Szigeti, Joma Richter.</p>", "sv": "<p>Evenemanget har tyvärr ställts in. Vi ber om ursäkt för besväret.</p>", "en": "<p>The event has regrettably been cancelled. We apologise for any inconvenience caused.</p><p>What escapes documentation in live performance? Our performance Doubt - Holding the Show Together begins from a simple observation: the same performance can succeed one night, and totally fall flat the next. The performers and the material remain the same, but the audience has changed. How can the people watching have such a profound effect on what happens onstage?</p><p>That's the question we explore through a series of small-scale performances across Helsinki in autumn 2026, diving into the invisible exchange between performers and audience beneath all the glamour and theatrical smoke. At the heart of this exchange lies the possibility of refusal: the audience could simply stop caring, or even leave, at any moment. And this fragility is part of what makes the whole thing so alive! The audience holds the performance up, and the performers hold the audience in return. It's a simple, quiet agreement, made new every night, that rarely gets much credit even though everything depends on it.</p><p>We embark on a playful quest of giving this contract the credit it deserves, by placing it in the center of our performance series.</p><p>What happens if the audience is given noisy snacks during a delicate scene? <br>If spectators change seats with someone they don't know? <br>If everyone can choose a different song to listen to while watching the same dance? <br>If a scene takes place entirely in Latin?</p><p>Rather than asking the spectators to “participate” in the conventional sense, the work asks the audience to notice that they were participating all along. Who, in the end, is holding the show together?</p><p>The performance is developed by Laserdragons2000 working group as part of their Atten-dances project supported by the Kone foundation. We are an international group of graduates from Uniarts Helsinki Theatre Academy.</p><p>Duration: 60 minutes</p><p>Gentle participation, occasional loud noises</p><p>CREATORS/PERFORMERS<br>Paria Mohajerani, Kadence Luella Neill, Minne Mäki, Myrsky Ylänen, Jan Stevuliak, <br>Niko Nordstrom, Bence Huszerl, Barabas Balint Szigeti, Joma Richter.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tapahtuma on valitettavasti peruttu. Pahoittelemme aiheutuvaa haittaa.", "sv": "Evenemanget har tyvärr ställts in. Vi ber om ursäkt för besväret.", "en": "The event has regrettably been cancelled. We apologise for any inconvenience caused." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/08F2B36D1807AD3085D48860E398AE8A/PERUTTU_Doubt_-_Holding_the_Show_Together", "sv": "http://www.vuotalo.fi/sv/evenemang/event/08F2B36D1807AD3085D48860E398AE8A/INSTALLT_Doubt_-_Holding_the_Show_Together", "en": "http://www.vuotalo.fi/en/events/event/08F2B36D1807AD3085D48860E398AE8A/CANCELLED_Doubt_-_Holding_the_Show_Together" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69857/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp6yeh3vy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh6oa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385795, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-13T13:01:46.140623Z", "last_modified_time": "2026-08-13T13:01:46.140637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce545335-a1b8-487e-a101-88145ea901ff.jpg", "name": "", "cropping": "416,0,2048,1632", "photographer_name": "", "alt_text": "Uke edistyneet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-10T13:55:06.332378Z", "last_modified_time": "2026-09-10T08:14:39.183095Z", "date_published": null, "start_time": "2026-10-05T14:00:00Z", "end_time": "2026-10-05T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Eventlokal Heikki", "en": "Event Space Heikki" }, "provider": null, "name": { "fi": "Edistyneiden ukuleleryhmä", "sv": "Ukulelegrupp för avancerade", "en": "Ukulele Advanced Group" }, "description": { "fi": "<p>Tervetuloa mukaan soittamaan ukulelea rennossa ja innostavassa porukassa! Soitamme tuttuja suomen- ja englanninkielisiä lauluja, opettelemme uusia sointuja sekä soitto- ja komppaustekniikoita. Saat myös toivoa uusia kappaleita ryhmän ohjelmistoon!</p><p>Yhteisöllisyys ja yhdessä tekemisen ilo ovat tärkeä osa ryhmää. Pääsemme myös esiintymään muutaman kerran vuodessa Espoon kirjastoissa ja seniorien palvelukeskuksissa.</p><p>Ryhmä kokoontuu Tapiolan kirjastossa maanantaisin 30.8.–30.11., paitsi 2.11. ei tuntia. Olemme silloin palvelukeskuskeikalla. </p><p>Tervetuloa soittamaan, oppimaan ja jakamaan musiikin iloa!</p><p>Ryhmää vetää musiikkipedagogi Sakari Heikka.</p><p>#ukulele #tapiola #musiikki #hyvinvointi</p>", "sv": "<p>Välkommen med och spela ukulele i en avslappnad och inspirerande grupp! Vi spelar välkända finska och engelskspråkiga sånger, lär oss nya ackord och utvecklar våra spel- och komptekniker. Du får också gärna önska nya låtar till gruppens repertoar!</p><p>Gemenskap och glädjen i att musicera tillsammans är en viktig del av gruppen. Vi får också möjlighet att uppträda några gånger om året på bibliotek och seniorernas servicecenter i Esbo.</p><p>Gruppen träffas på Tapiola bibliotek på måndagar 30.8–30.11., med undantag för den 2 november då inget möte äger rum. Vi ska uppträda på ett servicecenter vid det tillfället.</p><p>Välkommen att spela, lära dig och dela musikglädjen tillsammans!</p><p>Gruppen leds av musikpedagogen Sakari Heikka.</p><p>#ukulele #tapiola #musik #välbefinnande</p>", "en": "<p>Welcome to play the ukulele in a relaxed and inspiring group! We play familiar Finnish and English songs, learn new chords, and develop our playing and strumming techniques. You are also welcome to suggest new songs for the group's repertoire!</p><p>A sense of community and the joy of making music together are an important part of the group. We also have opportunities to perform a few times a year at libraries and senior service centres in Espoo.</p><p>The group meets at Tapiola Library on Mondays from August 30 to November 30., except on November 2, when there is no session. We will be performing at a service center then</p><p>Come and play, learn, develop your skills, and share the joy of music!</p><p>The group is led by music pedagogue Sakari Heikka.</p><p>#ukulele #tapiola #music #wellbeing</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa soittamaan ukulelea!", "sv": "Välkommen att spela ukulele!", "en": "Welcome to play ukulele!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh3vy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp6yeh4ea", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh6oa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385795, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-13T13:01:46.140623Z", "last_modified_time": "2026-08-13T13:01:46.140637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce545335-a1b8-487e-a101-88145ea901ff.jpg", "name": "", "cropping": "416,0,2048,1632", "photographer_name": "", "alt_text": "Uke edistyneet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-10T13:55:06.218414Z", "last_modified_time": "2026-09-10T08:14:39.143679Z", "date_published": null, "start_time": "2026-09-28T14:00:00Z", "end_time": "2026-09-28T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Eventlokal Heikki", "en": "Event Space Heikki" }, "provider": null, "name": { "fi": "Edistyneiden ukuleleryhmä", "sv": "Ukulelegrupp för avancerade", "en": "Ukulele Advanced Group" }, "description": { "fi": "<p>Tervetuloa mukaan soittamaan ukulelea rennossa ja innostavassa porukassa! Soitamme tuttuja suomen- ja englanninkielisiä lauluja, opettelemme uusia sointuja sekä soitto- ja komppaustekniikoita. Saat myös toivoa uusia kappaleita ryhmän ohjelmistoon!</p><p>Yhteisöllisyys ja yhdessä tekemisen ilo ovat tärkeä osa ryhmää. Pääsemme myös esiintymään muutaman kerran vuodessa Espoon kirjastoissa ja seniorien palvelukeskuksissa.</p><p>Ryhmä kokoontuu Tapiolan kirjastossa maanantaisin 30.8.–30.11., paitsi 2.11. ei tuntia. Olemme silloin palvelukeskuskeikalla. </p><p>Tervetuloa soittamaan, oppimaan ja jakamaan musiikin iloa!</p><p>Ryhmää vetää musiikkipedagogi Sakari Heikka.</p><p>#ukulele #tapiola #musiikki #hyvinvointi</p>", "sv": "<p>Välkommen med och spela ukulele i en avslappnad och inspirerande grupp! Vi spelar välkända finska och engelskspråkiga sånger, lär oss nya ackord och utvecklar våra spel- och komptekniker. Du får också gärna önska nya låtar till gruppens repertoar!</p><p>Gemenskap och glädjen i att musicera tillsammans är en viktig del av gruppen. Vi får också möjlighet att uppträda några gånger om året på bibliotek och seniorernas servicecenter i Esbo.</p><p>Gruppen träffas på Tapiola bibliotek på måndagar 30.8–30.11., med undantag för den 2 november då inget möte äger rum. Vi ska uppträda på ett servicecenter vid det tillfället.</p><p>Välkommen att spela, lära dig och dela musikglädjen tillsammans!</p><p>Gruppen leds av musikpedagogen Sakari Heikka.</p><p>#ukulele #tapiola #musik #välbefinnande</p>", "en": "<p>Welcome to play the ukulele in a relaxed and inspiring group! We play familiar Finnish and English songs, learn new chords, and develop our playing and strumming techniques. You are also welcome to suggest new songs for the group's repertoire!</p><p>A sense of community and the joy of making music together are an important part of the group. We also have opportunities to perform a few times a year at libraries and senior service centres in Espoo.</p><p>The group meets at Tapiola Library on Mondays from August 30 to November 30., except on November 2, when there is no session. We will be performing at a service center then</p><p>Come and play, learn, develop your skills, and share the joy of music!</p><p>The group is led by music pedagogue Sakari Heikka.</p><p>#ukulele #tapiola #music #wellbeing</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa soittamaan ukulelea!", "sv": "Välkommen att spela ukulele!", "en": "Welcome to play ukulele!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh4ea/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp6yeh4sa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh6oa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385795, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-13T13:01:46.140623Z", "last_modified_time": "2026-08-13T13:01:46.140637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce545335-a1b8-487e-a101-88145ea901ff.jpg", "name": "", "cropping": "416,0,2048,1632", "photographer_name": "", "alt_text": "Uke edistyneet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-10T13:55:06.101971Z", "last_modified_time": "2026-09-10T08:14:39.103268Z", "date_published": null, "start_time": "2026-09-21T14:00:00Z", "end_time": "2026-09-21T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Eventlokal Heikki", "en": "Event Space Heikki" }, "provider": null, "name": { "fi": "Edistyneiden ukuleleryhmä", "sv": "Ukulelegrupp för avancerade", "en": "Ukulele Advanced Group" }, "description": { "fi": "<p>Tervetuloa mukaan soittamaan ukulelea rennossa ja innostavassa porukassa! Soitamme tuttuja suomen- ja englanninkielisiä lauluja, opettelemme uusia sointuja sekä soitto- ja komppaustekniikoita. Saat myös toivoa uusia kappaleita ryhmän ohjelmistoon!</p><p>Yhteisöllisyys ja yhdessä tekemisen ilo ovat tärkeä osa ryhmää. Pääsemme myös esiintymään muutaman kerran vuodessa Espoon kirjastoissa ja seniorien palvelukeskuksissa.</p><p>Ryhmä kokoontuu Tapiolan kirjastossa maanantaisin 30.8.–30.11., paitsi 2.11. ei tuntia. Olemme silloin palvelukeskuskeikalla. </p><p>Tervetuloa soittamaan, oppimaan ja jakamaan musiikin iloa!</p><p>Ryhmää vetää musiikkipedagogi Sakari Heikka.</p><p>#ukulele #tapiola #musiikki #hyvinvointi</p>", "sv": "<p>Välkommen med och spela ukulele i en avslappnad och inspirerande grupp! Vi spelar välkända finska och engelskspråkiga sånger, lär oss nya ackord och utvecklar våra spel- och komptekniker. Du får också gärna önska nya låtar till gruppens repertoar!</p><p>Gemenskap och glädjen i att musicera tillsammans är en viktig del av gruppen. Vi får också möjlighet att uppträda några gånger om året på bibliotek och seniorernas servicecenter i Esbo.</p><p>Gruppen träffas på Tapiola bibliotek på måndagar 30.8–30.11., med undantag för den 2 november då inget möte äger rum. Vi ska uppträda på ett servicecenter vid det tillfället.</p><p>Välkommen att spela, lära dig och dela musikglädjen tillsammans!</p><p>Gruppen leds av musikpedagogen Sakari Heikka.</p><p>#ukulele #tapiola #musik #välbefinnande</p>", "en": "<p>Welcome to play the ukulele in a relaxed and inspiring group! We play familiar Finnish and English songs, learn new chords, and develop our playing and strumming techniques. You are also welcome to suggest new songs for the group's repertoire!</p><p>A sense of community and the joy of making music together are an important part of the group. We also have opportunities to perform a few times a year at libraries and senior service centres in Espoo.</p><p>The group meets at Tapiola Library on Mondays from August 30 to November 30., except on November 2, when there is no session. We will be performing at a service center then</p><p>Come and play, learn, develop your skills, and share the joy of music!</p><p>The group is led by music pedagogue Sakari Heikka.</p><p>#ukulele #tapiola #music #wellbeing</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa soittamaan ukulelea!", "sv": "Välkommen att spela ukulele!", "en": "Welcome to play ukulele!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh4sa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp6yeh5ae", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh6oa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385795, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-13T13:01:46.140623Z", "last_modified_time": "2026-08-13T13:01:46.140637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce545335-a1b8-487e-a101-88145ea901ff.jpg", "name": "", "cropping": "416,0,2048,1632", "photographer_name": "", "alt_text": "Uke edistyneet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-10T13:55:05.939375Z", "last_modified_time": "2026-09-10T08:14:39.004611Z", "date_published": null, "start_time": "2026-09-14T14:00:00Z", "end_time": "2026-09-14T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Eventlokal Heikki", "en": "Event Space Heikki" }, "provider": null, "name": { "fi": "Edistyneiden ukuleleryhmä", "sv": "Ukulelegrupp för avancerade", "en": "Ukulele Advanced Group" }, "description": { "fi": "<p>Tervetuloa mukaan soittamaan ukulelea rennossa ja innostavassa porukassa! Soitamme tuttuja suomen- ja englanninkielisiä lauluja, opettelemme uusia sointuja sekä soitto- ja komppaustekniikoita. Saat myös toivoa uusia kappaleita ryhmän ohjelmistoon!</p><p>Yhteisöllisyys ja yhdessä tekemisen ilo ovat tärkeä osa ryhmää. Pääsemme myös esiintymään muutaman kerran vuodessa Espoon kirjastoissa ja seniorien palvelukeskuksissa.</p><p>Ryhmä kokoontuu Tapiolan kirjastossa maanantaisin 30.8.–30.11., paitsi 2.11. ei tuntia. Olemme silloin palvelukeskuskeikalla. </p><p>Tervetuloa soittamaan, oppimaan ja jakamaan musiikin iloa!</p><p>Ryhmää vetää musiikkipedagogi Sakari Heikka.</p><p>#ukulele #tapiola #musiikki #hyvinvointi</p>", "sv": "<p>Välkommen med och spela ukulele i en avslappnad och inspirerande grupp! Vi spelar välkända finska och engelskspråkiga sånger, lär oss nya ackord och utvecklar våra spel- och komptekniker. Du får också gärna önska nya låtar till gruppens repertoar!</p><p>Gemenskap och glädjen i att musicera tillsammans är en viktig del av gruppen. Vi får också möjlighet att uppträda några gånger om året på bibliotek och seniorernas servicecenter i Esbo.</p><p>Gruppen träffas på Tapiola bibliotek på måndagar 30.8–30.11., med undantag för den 2 november då inget möte äger rum. Vi ska uppträda på ett servicecenter vid det tillfället.</p><p>Välkommen att spela, lära dig och dela musikglädjen tillsammans!</p><p>Gruppen leds av musikpedagogen Sakari Heikka.</p><p>#ukulele #tapiola #musik #välbefinnande</p>", "en": "<p>Welcome to play the ukulele in a relaxed and inspiring group! We play familiar Finnish and English songs, learn new chords, and develop our playing and strumming techniques. You are also welcome to suggest new songs for the group's repertoire!</p><p>A sense of community and the joy of making music together are an important part of the group. We also have opportunities to perform a few times a year at libraries and senior service centres in Espoo.</p><p>The group meets at Tapiola Library on Mondays from August 30 to November 30., except on November 2, when there is no session. We will be performing at a service center then</p><p>Come and play, learn, develop your skills, and share the joy of music!</p><p>The group is led by music pedagogue Sakari Heikka.</p><p>#ukulele #tapiola #music #wellbeing</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa soittamaan ukulelea!", "sv": "Välkommen att spela ukulele!", "en": "Welcome to play ukulele!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh5ae/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agp6yeh6oa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yehxza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yehysq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yehza4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yehzoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh2ke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh2zi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh3hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh3vy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh4ea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh4sa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh5ae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh5pi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh564/?format=api" } ], "images": [ { "id": 2385795, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-08-13T13:01:46.140623Z", "last_modified_time": "2026-08-13T13:01:46.140637Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce545335-a1b8-487e-a101-88145ea901ff.jpg", "name": "", "cropping": "416,0,2048,1632", "photographer_name": "", "alt_text": "Uke edistyneet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385795/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-08-10T13:55:04.195837Z", "last_modified_time": "2026-09-10T08:14:38.094890Z", "date_published": null, "start_time": "2026-08-31T14:00:00Z", "end_time": "2026-11-30T16:15: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, "location_extra_info": { "fi": "Tapahtumatila Heikki", "sv": "Eventlokal Heikki", "en": "Event Space Heikki" }, "provider": null, "name": { "fi": "Edistyneiden ukuleleryhmä", "sv": "Ukulelegrupp för avancerade", "en": "Ukulele Advanced Group" }, "description": { "fi": "<p>Tervetuloa mukaan soittamaan ukulelea rennossa ja innostavassa porukassa! Soitamme tuttuja suomen- ja englanninkielisiä lauluja, opettelemme uusia sointuja sekä soitto- ja komppaustekniikoita. Saat myös toivoa uusia kappaleita ryhmän ohjelmistoon!</p><p>Yhteisöllisyys ja yhdessä tekemisen ilo ovat tärkeä osa ryhmää. Pääsemme myös esiintymään muutaman kerran vuodessa Espoon kirjastoissa ja seniorien palvelukeskuksissa.</p><p>Ryhmä kokoontuu Tapiolan kirjastossa maanantaisin 30.8.–30.11., paitsi 2.11. ei tuntia. Olemme silloin palvelukeskuskeikalla. </p><p>Tervetuloa soittamaan, oppimaan ja jakamaan musiikin iloa!</p><p>Ryhmää vetää musiikkipedagogi Sakari Heikka.</p><p>#ukulele #tapiola #musiikki #hyvinvointi</p>", "sv": "<p>Välkommen med och spela ukulele i en avslappnad och inspirerande grupp! Vi spelar välkända finska och engelskspråkiga sånger, lär oss nya ackord och utvecklar våra spel- och komptekniker. Du får också gärna önska nya låtar till gruppens repertoar!</p><p>Gemenskap och glädjen i att musicera tillsammans är en viktig del av gruppen. Vi får också möjlighet att uppträda några gånger om året på bibliotek och seniorernas servicecenter i Esbo.</p><p>Gruppen träffas på Tapiola bibliotek på måndagar 30.8–30.11., med undantag för den 2 november då inget möte äger rum. Vi ska uppträda på ett servicecenter vid det tillfället.</p><p>Välkommen att spela, lära dig och dela musikglädjen tillsammans!</p><p>Gruppen leds av musikpedagogen Sakari Heikka.</p><p>#ukulele #tapiola #musik #välbefinnande</p>", "en": "<p>Welcome to play the ukulele in a relaxed and inspiring group! We play familiar Finnish and English songs, learn new chords, and develop our playing and strumming techniques. You are also welcome to suggest new songs for the group's repertoire!</p><p>A sense of community and the joy of making music together are an important part of the group. We also have opportunities to perform a few times a year at libraries and senior service centres in Espoo.</p><p>The group meets at Tapiola Library on Mondays from August 30 to November 30., except on November 2, when there is no session. We will be performing at a service center then</p><p>Come and play, learn, develop your skills, and share the joy of music!</p><p>The group is led by music pedagogue Sakari Heikka.</p><p>#ukulele #tapiola #music #wellbeing</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa soittamaan ukulelea!", "sv": "Välkommen att spela ukulele!", "en": "Welcome to play ukulele!" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agp6yeh6oa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68513", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385256, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:44.265863Z", "last_modified_time": "2026-06-18T11:13:44.265878Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790126.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385256/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:44.169250Z", "last_modified_time": "2026-09-10T08:14:34.911049Z", "date_published": null, "start_time": "2026-09-04", "end_time": "2026-09-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Daniel Palpa: Between Two Rivers", "sv": "Daniel Palpa: Between Two Rivers", "en": "Daniel Palpa: Between Two Rivers" }, "description": { "fi": "<p>Daniel Palpan keramiikkaveistokset käsittelevät kaksoiskulttuurisen identiteetin ilmenemismuotoja – luovuuden lähteeltä identiteetin aavikolle.</p><p>Taiteilija käyttää Perun alueen perinteisiä keramiikkamuotoja ja sekoittaa niihin omat arkipäivän kokemuksiansa. Teokset kommentoivat tämän päivän huolenaiheita värien ja kaoottisten muotojen kautta. Ne tuovat esiin Perun ja Suomen kulttuurien vaikutuksia ja niiden välistä jännitettä taiteilijan elämässä.</p><p>Teokset syntyvät kaksoiskulttuurisen identiteetin kokemuksesta. Taiteilijan identiteetin keskeinen dilemma on ollut kahden mantereen kulttuurien ja niiden historioiden yhteensovittaminen. Lapsena Suomeen saapumisen myötä syntynyt sisäinen eristäytyneisyys on kulkenut rinnalla samalla, kun eteläamerikkalaiset juuret ovat säilyneet ja muovanneet kolmannen kulttuurisen perspektiivin.</p><p>Tämä kahden kulttuurin välinen tila toimii joko luovuuden lähteenä tai identiteetin aavikkona. Jäljelle jää kulttuurinen hybridielämisen muoto, joka haastaa vakiintuneita olettamuksia ja ammentaa eriävien arvojen kitkasta. Teokset pyrkivät ilmaisemaan monikerroksisen identiteetin kokemusta, joka on tuttu monille Suomessa eläville kaksoiskulttuurisille lapsille ja aikuisille.</p><p>Näyttelyyn järjestetään <b>opastus suomalaisella viittomakielellä la 19.09.2026 klo 13.00–14.00.</b></p>", "sv": "<p>Daniel Palpas keramikskulpturer behandlar olika uttrycksformer för en dubbel kulturell identitet – från kreativitetens källa till identitetens öken.</p><p>Konstnären använder traditionella keramikformer från Peru och väver in sina egna vardagliga upplevelser i dem. Verken kommenterar dagens bekymmer genom färger och kaotiska former. De belyser inflytandet från den peruanska och den finska kulturen samt spänningen mellan dem i konstnärens liv. <br> <br>Verken har sitt ursprung i upplevelsen av en dubbel kulturell identitet. Ett centralt dilemma för konstnärens identitet har varit att förena kulturerna från de två kontinenterna och deras historia. Den inre isolering som uppstod när Palpa kom till Finland som barn har funnits där hela tiden, samtidigt som de sydamerikanska rötterna har bevarats och format ett tredje kulturellt perspektiv. <br> <br>Detta utrymme mellan två kulturer fungerar antingen som en källa till kreativitet eller som en identitetsöken. Det som blir kvar är en kulturell form av hybridliv som utmanar etablerade antaganden och hämtar kraft ur spänningarna mellan olika värderingar. Verken syftar till att uttrycka upplevelsen av en mångfacetterad identitet, som är välbekant för många barn och vuxna i Finland med dubbla kulturella bakgrunder.</p><p><b>En guidning på finskt teckenspråk</b> hålls på utställningen lördagen <b>den 19 september 2026 kl. 13.00–14.00.</b></p>", "en": "<p>Daniel Palpa’s ceramic sculptures explore manifestations of a dual cultural identity – from a wellspring of creativity to a wasteland of identity.</p><p>The artist draws on traditional ceramic forms from the Peru region and blends them with his own everyday experiences. The works comment on today’s concerns through colour and chaotic forms. They highlight the influences of Peruvian and Finnish cultures and the tension between them in the artist’s life. <br> <br>The works stem from the experience of a bicultural identity. A central dilemma for the artist’s identity has been consolidating the cultures of two continents and their respective histories. The sense of isolation that arose when he arrived in Finland as a child has remained with him ever since, whilst his South American roots have endured and given shape to a third cultural perspective. <br> <br>This space between two cultures serves as either a source of creativity or a wasteland of identity. What remains is a form of cultural hybrid living that challenges established assumptions and draws on the friction between differing values. The works seek to express the experience of a multi-layered identity, which is familiar to many bicultural children and adults living in Finland.</p><p><b>A guided tour</b> of the exhibition will be held <b>in Finnish Sign Language on Saturday 19 September 2026 at 13.00–14.00.</b></p>" }, "provider_contact_info": null, "short_description": { "fi": "Daniel Palpan keramiikkaveistokset käsittelevät kaksoiskulttuurisen identiteetin ilmenemismuotoja – luovuuden lähteeltä identiteetin aavikolle.", "sv": "Daniel Palpas keramikskulpturer behandlar olika uttrycksformer för en dubbel kulturell identitet – från kreativitetens källa till identitetens öken.", "en": "Daniel Palpa’s ceramic sculptures explore manifestations of a dual cultural identity – from a wellspring of creativity to a wasteland of identity." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DDCBAA0CCEB34D1A6E10CE8DB52008AB/Daniel_Palpa_Between_Two_Rivers_", "sv": "http://www.caisa.fi/sv/evenemang/event/DDCBAA0CCEB34D1A6E10CE8DB52008AB/Daniel_Palpa_Between_Two_Rivers_", "en": "http://www.caisa.fi/en/events/event/DDCBAA0CCEB34D1A6E10CE8DB52008AB/Daniel_Palpa_Between_Two_Rivers_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68513/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqgy2ygdm", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386134, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-09-04T11:22:51.664559Z", "last_modified_time": "2026-09-04T11:22:51.664579Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/98c88e42-ef73-4aff-a5e2-00b17bdeee12.jpg", "name": "", "cropping": "130,0,758,628", "photographer_name": "", "alt_text": "Heli Haavisto: Anastasian uni", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386134/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-04T11:29:41.932415Z", "last_modified_time": "2026-09-10T07:20:05.187952Z", "date_published": "2026-09-04T10:56:00Z", "start_time": "2026-09-13T07:00:00Z", "end_time": "2026-10-02T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Valatori-seinä", "sv": "Valatori-väggen", "en": "Valatori Wall" }, "provider": null, "name": { "fi": "Heli Haavisto: Anastasian uni (kuvitusnäyttely)", "sv": "Heli Haavisto: Anastasias dröm (illustrationsutställning)", "en": "Heli Haavisto: Anastasia’s dream (illustration exhibition)" }, "description": { "fi": "<p>Iloisen värikkäitä piirroksia hiiri Anastasian ja kissa Winstonin seikkailusta unen sisällä. Vanhan ja viisaan Valaan kyyditsemänä Anastasia ja Winston matkustavat aina meren syvimmistä kerroksista avaruuteen saakka. Matkallaan he kohtaavat monia pelkojaan ja oppivat, että unissa kaikki on mahdollista - tai mahdollisesti väärinpäin. Eikä niin suurta riitaa voi ystävien välillä ollakaan, ettei siitä yhteistä unta näkemällä selviäisi. </p><p><strong>Heli Haavisto</strong> on Espoossa asuva kirjoittaja ja kuvallisen ilmaisun opiskelija. Lapsille suunnattu kuvakirja, Anastasian uni syntyi keväällä/kesällä 2026, hänen opintoihinsa liittyvän työssäoppimisjakson aikana. </p><p>\"Minua on aina kiehtonut erilaiset tavat yhdistää kuvaa ja sanaa. Olen kuvittajana tarinalähtöinen ja kallistun aiheissani usein unenkaltaisiin, fantastisiin tai tuonpuoleisiin maailmoihin. Tämän kuvakirjan tekeminen ja siihen koko kesäksi syventyminen oli minulle valtavan antoisa ja syvällinen kokemus. Kuvia piirtäessäni tuntui usein, kuin olisin ollut itsekin Anastasian ja Winstonin mukana meren pohjassa tai avaruuden pimeydessä!</p><p>Näyttelyssä on mahdollisuus tutustua valikoituihin alkuperäispiirroksiin Anastasian ja Winstonin tarinasta.\"</p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>", "sv": "<p>Heli Haavistos nya bilderbok ”Anastasian uni” innehåller glada och färgglada teckningar som skildrar musen Anastasias och katten Winstons äventyr i drömmen.</p><p><strong>Heli Haavisto</strong> är författare och studerar bildkonst i Esbo. Hennes bilderbok för barn skapades under våren och sommaren 2026, under en praktikperiod som ingick i hennes studier.</p><p>Utställningen kan besöks under bibliotekets öppettider. Välkommen!</p>", "en": "<p>Heli Haavisto’s new picture book, \"Anastasian uni\", features cheerful, colourful illustrations depicting the adventures of Anastasia the mouse and Winston the cat within a dream.</p><p><strong>Heli Haavisto</strong> is a writer and student of visual arts living in Espoo. Her picture book for children was created in the spring/summer of 2026, during a work placement as part of her studies.</p><p>The exhibition is open during the library’s opening hours. Welcome!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Heli Haaviston uuden kuvakirjan \"Anastasian uni\" iloisen värikkäitä piirroksia hiiri Anastasian ja kissa Winstonin seikkailusta unen sisällä. ", "sv": "Färgglada illustrationer ur Heli Haavistos nya bilderbok ”Anastasian uni”, som skildrar musen Anastasias och katten Winstons äventyr i en dröm.", "en": "Cheerful illustrations from Heli Haavisto’s picture book \"Anastasian uni\" depicting the adventures of Anastasia the mouse and Winston the cat within a dream." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqgy2ygdm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69361", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385289, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T13:14:33.380612Z", "last_modified_time": "2026-06-22T13:14:33.380627Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791946.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385289/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-22T13:14:33.230933Z", "last_modified_time": "2026-09-10T07:15:07.569788Z", "date_published": null, "start_time": "2026-09-26T09:00:00Z", "end_time": "2026-09-26T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Idän kirjamessut", "sv": "Bokmässan i öster", "en": "East Helsinki Book Fair" }, "description": { "fi": "<p>Idän kirjamessut on koko Itä-Helsingin oma kirjallisuuden juhlapäivä: kaikille kirjanystäville, uteliaille lukijoille ja kirjallisuudesta kiinnostuneille.</p><p>Kirjailijat, kustantajat, kirjamyyjät sekä keskustelut kootaan saman katon alle yhden lauantaipäivän ajaksi kaikenikäiselle yleisölle.</p><p>Ohjelmassa aiheina on muun muassa Itä-Helsinki, monikielisyys, sarjakuvat ja kääntäminen. Päivän aikana kuullaan keskusteluja, kohdataan tekijöitä ja pohditaan yhdessä, mitä idässä luetaan juuri nyt. Nuoremmille kävijöille on tarjolla ohjelmaa sekä työpajatoimintaa iltapäivän ajan.</p><p>Aulan myyntipöydiltä löydät niin suurten kuin pienten kustantamojen kirjoja, lehtiä ja muita painatteita.</p><p>Aulan lava</p><p>12:00-12:30 Helsinki-aiheista runoutta, Ian Hannon ja Arto Keränen (Momentum kirjat)<br>13:00-13:30 Outi-Illuusia Parviainen – Olen niitty, odotan<br>13:30-14:00 Vehka Kurjenmiekka: Fantasiaa uudella tavalla<br>14:00-14:30 Ovi ja muita kertomuksia” – Pessoa, Espanca & Sà-Carneiro <br>14:30-15:00 Marja-Leena Mikkolan haastattelu Osip Mandelstamin runoudesta <br>15:00-15:30 Kirjanjulkistus – Paula Sankelo: Iso valkea<br>15:30-16:00 Erpo Pakkala: Nuottilinnun unta<br>16:00-16:30 Minnamari Sinisalo: Heija<br>16:30-17:00 Klassikkojen klassikko: Flann O’Brienin Hullu kuningas puussa. <br>17:00-17:30 30-vuotta helsinkiläistä runoutta, Jukka Koskelainen<br>17:30-18:00 V. S. Luoma-aho: Nonfiktio<br>18:00-18:30 Anu Kaaja: Siluetinleikkaaja<br>18:30-19:00 Iisa Pajula: Pehmeitä kohtia</p><p>Musiikkisali</p><p>12:00-13:00 Armoton kielikartta – mitä suomeksi käännetään? Pajunen, Räty ja Sainio <br>14:00-15:00 Emma Puikkosen ja Selja Ahavan Rakennenautintoja: Työkirja<br>15:00-16:00 Helsingin Kirjamessujen etkot: Satu Erra ja carmen <br>16:00-17:00 Mitä itä lukee? Idän vaikuttajat<br>17:00-18:00 Teatterin Uusi Alkukirjasto: Näytelmänlukupiiri – Peter asui talossa<br>18:00-19:00 Illarion Pavljuk: Näen että teitä kiinnostaa pimeys</p><p>Itäkeskuksen kirjaston lava</p><p>12:00-13:00 Sanna Pelliccioni Pöytäteatteri-satuhetki: ONNIN JA ISIN OMA PÄIVÄ<br>14:00-15:00 Pinssipaja<br>14:00-16:00 Sanapaja/Wordshop<br>13:00-14:00 Aliyeh Ataei -kirjailijakeskustelu<br>14.30–15.30 Monikielistä runoutta - Ahmed Zaidan, Zoila Forss-Crespo Moreyra, Farzaneh HLandi, Goran Goran, Csilla Csépke, Kazhal Naqshbandi</p><p>Kirjamessujen iltaohjelman avaa sanataideduo <b>Marjo Niemi</b> ja <b>Eeva Turunen</b> ja ilta huipentuu suomenkielisen räpin uudisraivaajan <b>Asan</b> keikkaan. Liput iltaohjelmaan tulossa myyntiin kesällä.</p><p>Idän kirjamessut toimii yhteistyössä lokakuussa Messukeskuksessa järjestettävien Helsingin kirjamessujen kanssa. Tapahtuman järjestää Nuoren Voiman Liitto yhteistyössä Stoan ja Itäkeskuksen kirjaston kanssa.</p>", "sv": "<p>Bokmässan i öster är en riktig litteraturfest för hela östra Helsingfors: för alla bokälskare, nyfikna läsare och litteraturintresserade.</p><p>Författare, förläggare och bokhandlare samt diskussioner samlas under samma tak under en lördag för en publik i alla åldrar.</p><p>Programmet tar bland annat upp ämnen som Östra Helsingfors, flerspråkighet, serier och översättning. Under dagen får vi lyssna på samtal, träffa olika aktörer och tillsammans fundera över vad man läser i Östra centrum just nu. För de yngre besökarna erbjuds programpunkter och verkstäder under eftermiddagen.</p><p>På försäljningsborden i entréhallen hittar du böcker, tidningar och andra trycksaker från både stora och små förlag.</p><p>Kvällsprogrammet på bokmässan inleds av ordkonstduon <b>Marjo Niemi</b> och <b>Eeva Turunen</b>, och kvällen kulminerar i en spelning av Asa</b>, en pionjär inom finsk rap<b>. Biljetter till kvällsprogrammet börjar säljas under sommaren. <br> <br>Bokmässan i öster samarbetar med Helsingfors bokmässa, som ordnas i Mässcentrum i oktober. Evenemanget ordnas av Nuoren Voiman Liitto i samarbete med Stoa och Östra centrums bibliotek.</p>", "en": "<p>The East Helsinki Book Fair is a celebration of literature for the whole of East Helsinki: for all book lovers, curious readers and anyone interested in literature.</p><p>Authors, publishers and booksellers, along with a programme of discussions, come together under one roof for a single Saturday, for an audience of all ages.</p><p>The programme covers topics including East Helsinki, multilingualism, comics and translation. Throughout the day, we listen to discussions, meet authors and reflect together on what people in East Helsinki are reading right now. We also have a programme of activities and workshops for younger visitors throughout the afternoon. <br> <br>On the sales tables in the lobby, you can find books, magazines and other printed materials from publishers both major and minor. <br> <br>The Book Fair’s evening programme is kicked off by the literary art duo <b>Marjo Niemi</b> and <b>Eeva Turunen</b>, and the evening culminates in a performance by <b>Asa</b>, a pioneer of Finnish-language rap. Tickets for the evening programme will go on sale during the summer.</p><p>The East Helsinki Book Fair is organised in collaboration with the Helsinki Book Fair, which takes place at the Messukeskus exhibition centre in October. The event is organised by the Nuoren Voiman Liitto in collaboration with Stoa and Itäkeskus Library.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Idän kirjamessut on koko Itä-Helsingin oma kirjallisuuden juhlapäivä: kaikille kirjanystäville, uteliaille lukijoille ja kirjallisuudesta kiinnostuneille.", "sv": "Bokmässan i öster är en riktig litteraturfest för hela östra Helsingfors: för alla bokälskare, nyfikna läsare och litteraturintresserade.", "en": "The East Helsinki Book Fair is a celebration of literature for the whole of East Helsinki: for all book lovers, curious readers and anyone interested in literature." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/43645639A404B8082258BFC423B4BA25/Idan_kirjamessut", "sv": "http://www.stoa.fi/sv/evenemang/event/43645639A404B8082258BFC423B4BA25/Bokmassan_i_oster_", "en": "http://www.stoa.fi/en/events/event/43645639A404B8082258BFC423B4BA25/East_Helsinki_Book_Fair" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69361/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69902", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386186, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-10T06:15:59.617562Z", "last_modified_time": "2026-09-10T06:15:59.617579Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_797227.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386186/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-10T06:15:59.485476Z", "last_modified_time": "2026-09-10T06:15:59.859828Z", "date_published": null, "start_time": "2026-12-11T14:00:00Z", "end_time": "2026-12-11T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "AnnanHouse Disko: Lahja", "sv": "AnnanHouse Disco: En gåva", "en": "AnnanHouse Disco: A gift" }, "description": { "fi": "<p>Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!</p><p>AnnanHouse on elektronisen tanssimusiikin erikoistapahtuma, joka tutustuttaa kävijät diskokulttuurin maailmaan. Tämänkertaisen diskon teemana on <i>Lahja</i>. Tule näyttämään viileimmät tanssiliikkeesi ja jäätävän upeat askelkuviosi. Voit pukeutua teeman mukaisella tyylillä tai hakea Annantalon pukulainaamosta sopivan asun diskoiltaan.</p><p>Musiikista vastaa Annantalon oma dj Nicolas Sebastien, joka tarjoilee huippumusiikkia housesta discoon. Diskoillan aikana voit myös hypätä tanssituokioihin ja piipahtaa avoimissa teemaan sopivissa taidetyöpajoissa.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. <br> <br>Diskossa käytetään teatterisavua ja vilkkuvia valoja. Tarjolla on kuulosuojaimia. Työpajat ohjataan pääosin suomeksi ja englanniksi. Kaikki ovat tervetulleita kielestä ja kielitaidosta riippumatta. <br> <br>Nähdään tanssilattialla!</p>", "sv": "<p>Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!</p><p>AnnanHouse är ett speciellt evenemang med elektronisk dansmusik där besökarna får bekanta sig med discokulturens värld. Temat för detta disco är <i>En gåva</i>. Kom och visa oss dina häftigaste danssteg och supercoola stegsekvenser. Du kan klä dig enligt tema eller söka en till discokvällen lämplig klädsel från Annegårdens kostymutlåning.</p><p>För musiken står Annegårdens egen dj Nicolas Sebastien, som bjuder på allt från house till disco. Under discokvällen kan du också delta i dansstunder, besöka öppna konstworkshoppar som passar temat och delta i en utställningsguidning.</p><p>Fritt inträde, ingen förhandsanmälan krävs. <br> <br>På discot används teaterrök och blinkande lampor. Hörselskydd finns tillgängliga. Workshopparna hålls huvudsakligen på finska och engelska. Alla är välkomna, oavsett språk och språkkunskaper. <br> <br>Vi ses på dansgolvet!</p>", "en": "<p>The highly popular AnnanHouse disco event for the whole family once again takes over Annantalo!</p><p>AnnanHouse is a special electronic dance music event that introduces visitors to the world of disco culture. The theme of this year's disco is <i>A gift</i>. Come and show off your coolest dance moves and frostiest steps. You can dress in the style of the theme or pick up an outfit from Annantalo's wardrobe for the disco party.</p><p>Annantalo’s own DJ Nicolas Sebastien will be in charge of the music, spinning top records from house to disco. During the night, you can join dance sessions, pop by open art workshops themed after the event and take guided tours of the exhibition.</p><p>Free entry, no advance registration.</p><p>The disco will feature fog machines and flashing lights. Ear defenders will be available. The workshops will mostly be held in Finnish and English. Everyone is welcome, regardless of language and language skills. <br> <br>See you on the dance floor!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Suuren suosion saavuttanut koko perheen AnnanHouse -diskotapahtuma valtaa jälleen Annantalon!", "sv": "Det enormt populära discoevenemanget för hela familjen, AnnanHouse, övertar Annegården igen!", "en": "The highly popular AnnanHouse disco event for the whole family once again takes over Annantalo!" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/23F49919CC16CC2AB17D27C39555A93A/AnnanHouse_Disko_Lahja", "sv": "http://www.annantalo.fi/sv/evenemang/event/23F49919CC16CC2AB17D27C39555A93A/AnnanHouse_Disco_En_gava", "en": "http://www.annantalo.fi/en/events/event/23F49919CC16CC2AB17D27C39555A93A/AnnanHouse_Disco_A_gift_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69902/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqinr2zi4", "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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386185, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T15:10:37.134791Z", "last_modified_time": "2026-09-09T15:10:37.134806Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bb1079f1-4c7b-48b8-baf9-1126d0b026f3.jpg", "name": "", "cropping": "0,138,1323,1462", "photographer_name": "Natalia Pleshkova", "alt_text": "fantasiakuva kalasuomuiseen asuun pukeutuneesta hahmosta, pitkä tukka, atrain kädessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386185/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-09T15:12:51.557784Z", "last_modified_time": "2026-09-09T15:12:51.557802Z", "date_published": null, "start_time": "2026-10-05T13:00:00Z", "end_time": "2026-10-05T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone" }, "provider": null, "name": { "fi": "Interaktiivinen luento alakoululaisille venäjäksi" }, "description": { "fi": "Interaktiivinen luento alakoululaisille<p><strong>Lukemiseen liittyvä debatti: Kuka sanoi, että hän on pahis?</strong></p><p>Järjestämme Suomessa ensimmäiset alakoululaisille suunnatut lukudebatit kirjallisuuden ja animaatioiden pahiksista.</p><p><strong>Tapahtuman juontaa:</strong> lastenkirjailija Aleksandra Lahtinen</p><p><strong>Tapahtuman kieli:</strong> venäjä</p><p><strong>Tapahtuman aika:</strong> ma 5.10. Klo 16.00–17.00</p><p><strong>Tapahtuman paikka:</strong> Entressen kirjasto, Sininen huone</p><p>Vapaa pääsy, lämpimästi tervetuloa!</p><p><br></p>\nИнтерактивная лекция для школьников младших классов<p><strong>Читательские дебаты: Кто сказал, что он злодей?</strong></p><p>Мы проведём первые в Финляндии дебаты среди школьников про отрицательных героев из книг и анимационных фильмов. </p><p><strong>Мероприятие проводит детская писательница Александра Лахтинен</strong></p><p><strong>Встреча проходит на русском языке</strong></p><p><strong>Время и дата: 5 октября с 16.00-до 17.00</strong></p><p><strong>Место: библиотека Энтрессе, Синяя комната</strong></p><p><strong>Вход свободный! Добро пожаловать!</strong></p>" }, "provider_contact_info": null, "short_description": { "fi": "Järjestämme Suomessa ensimmäiset alakoululaisille suunnatut lukudebatit kirjallisuuden ja animaatioiden pahiksista." }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqinr2zi4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69876", "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/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386125, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-04T08:23:43.409486Z", "last_modified_time": "2026-09-04T08:23:43.409506Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789824.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386125/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-04T08:23:43.315280Z", "last_modified_time": "2026-09-09T14:14:21.372054Z", "date_published": null, "start_time": "2026-11-13T08:30:00Z", "end_time": "2026-11-13T09:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "JOIKAA LAPSENI!", "sv": "JOIKAA LAPSENI!", "en": "JOIKAA LAPSENI!" }, "description": { "fi": "<p>JOIKAA LAPSENI! on vuorovaikutuksellinen hetki saamenkielisten lastenlaulujen ja joikujen parissa. Tarinoita elämästä, eläimistä ja pohjoisesta.</p><p>Tarinoimassa ja laulamassa <b>Petra Biret Magga-Vars, Biret-Ingermaria Vars</b> ja<br><b>Ánná-Frida Vars</b>.</p><p>Kesto 45 min</p><p><u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">Tapahtumaan voi ilmoittautua osoitteessa kultus.hel.fi 12.10. alkaen</u></a>.</p><p>www.samediggi.fi<br>Facebook@saamelainenlastenkulttuurikeskus<br>Saamelaisvierailu Inarista</p>" }, "provider_contact_info": null, "short_description": { "fi": "JOIKAA LAPSENI! on vuorovaikutuksellinen hetki saamenkielisten lastenlaulujen ja joikujen parissa. Tarinoita elämästä, eläimistä ja pohjoisesta." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/FB5585E0AA59E85D0F82EDEB4D1C98FF/JOIKAA_LAPSENI_", "sv": "http://www.annantalo.fi/sv/evenemang/event/FB5585E0AA59E85D0F82EDEB4D1C98FF/JOIKAA_LAPSENI_", "en": "http://www.annantalo.fi/en/events/event/FB5585E0AA59E85D0F82EDEB4D1C98FF/JOIKAA_LAPSENI_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69876/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69875", "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/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386124, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-04T08:23:43.115895Z", "last_modified_time": "2026-09-04T08:23:43.115912Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789823.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386124/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-04T08:23:43.013454Z", "last_modified_time": "2026-09-09T14:14:21.126220Z", "date_published": null, "start_time": "2026-11-13T07:00:00Z", "end_time": "2026-11-13T07: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, "location_extra_info": null, "provider": null, "name": { "fi": "JOIKAA LAPSENI!", "sv": "JOIKAA LAPSENI!", "en": "JOIKAA LAPSENI!" }, "description": { "fi": "<p>JOIKAA LAPSENI! on vuorovaikutuksellinen hetki saamenkielisten lastenlaulujen ja joikujen parissa. Tarinoita elämästä, eläimistä ja pohjoisesta.</p><p>Tarinoimassa ja laulamassa <b>Petra Biret Magga-Vars, Biret-Ingermaria Vars</b> ja<br><b>Ánná-Frida Vars</b>.</p><p>Kesto 45 min</p><p><u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">Tapahtumaan voi ilmoittautua osoitteessa kultus.hel.fi 12.10. alkaen</u></a>.</p><p>www.samediggi.fi<br>Facebook@saamelainenlastenkulttuurikeskus<br>Saamelaisvierailu Inarista</p>" }, "provider_contact_info": null, "short_description": { "fi": "JOIKAA LAPSENI! on vuorovaikutuksellinen hetki saamenkielisten lastenlaulujen ja joikujen parissa. Tarinoita elämästä, eläimistä ja pohjoisesta." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4D76C089929309404D458A4FA6387153/JOIKAA_LAPSENI_", "sv": "http://www.annantalo.fi/sv/evenemang/event/4D76C089929309404D458A4FA6387153/JOIKAA_LAPSENI_", "en": "http://www.annantalo.fi/en/events/event/4D76C089929309404D458A4FA6387153/JOIKAA_LAPSENI_" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69875/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqimwpkma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/lukihero", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2090061, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-07T07:48:19.518990Z", "last_modified_time": "2026-05-07T07:48:19.519002Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c2e1ede5-410f-4362-95c6-a6ccbe69ae73.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Lukukoira Halla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2090061/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-08-18T06:43:25.936096Z", "last_modified_time": "2026-09-09T12:18:54.197639Z", "date_published": null, "start_time": "2026-10-05T14:00:00Z", "end_time": "2026-10-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Aula", "sv": "Entréhall", "en": "Lobby" }, "provider": { "fi": "HERO - Helsingin seudun erilaiset oppijat ry", "sv": "HERO - Helsingin seudun erilaiset oppijat ry", "en": "HERO - Helsingin seudun erilaiset oppijat ry" }, "name": { "fi": "Lukineuvontaa (mukana Lukukoira Halla)", "sv": "Läsrådgivning ", "en": "Reading support" }, "description": { "fi": "<p><strong>Lukineuvonta: tukea ja vinkkejä oppimiseen Tapiolan kirjastossa:</strong></p><p><strong>Ma 5.10.26, klo 17:00–18:00, mukana lukukoira Halla.</strong></p><p>Neuvonnassa saat tietoa lukivaikeuksista, niiden tunnistamisesta sekä erilaisista lukemista ja kirjoittamista helpottavista apuvälineistä. Lisäksi pääset tutustumaan erilaisiin tabletille tai tietokoneelle ladattaviin oppimispeleihin. Tule keskustelemaan tai kuulemaan oppimisesta ja tutustumaan Helsingin seudun erilaisten oppijoiden (HERO) toimintaan.</p><p>Lukineuvonnassa ohjaavat erityisopetuksen asiantuntijamme ja se on maksutonta.</p><p>Löydät lukineuvonnan pisteen kirjaston aulatilasta tai muusta sille osoitetusta paikasta. Paikka voi vaihtua. Tunnistat HEROn lukineuvonnan HEROn vihreästä roll-upista.</p><p>Muutokset ovat mahdollisia.</p><p>Lisätiedot: <a href=\"https://www.lukihero.fi/tapahtumakalenteri/lukineuvontaa-espoon-kirjastoissa-tapiolan-kirjasto-mukana-lukukoira-halla/\">Hero - Helsingin seudun erilaiset oppijat</a>.</p>", "sv": "<p><strong>Läsrådgivning: stöd och tips för lärande på Hagalunds bibliotek</strong></p><p><strong>Mån 5.10.2026 kl. 17.00–18.00, med läshunden Halla.</strong></p><p>Under rådgivningen får du information om läs- och skrivsvårigheter, hur de kan identifieras samt om olika hjälpmedel som underlättar läsning och skrivande. Du får också möjlighet att bekanta dig med olika pedagogiska spel som kan laddas ner till surfplatta eller dator. Kom och diskutera lärande eller lyssna till information om lärande och bekanta dig med verksamheten hos HERO (Helsingforsregionens olika lärande).</p><p>Läsrådgivningen leds av våra experter inom specialundervisning och är kostnadsfri.</p><p>Du hittar läsrådgivningens informationspunkt i bibliotekets entréhall eller på en annan anvisad plats i biblioteket. Platsen kan variera. Du känner igen HERO:s läsrådgivning på HERO:s gröna roll-up.</p><p>Ändringar är möjliga.</p><p>Mer information: <a href=\"https://www.lukihero.fi/tapahtumakalenteri/lukineuvontaa-espoon-kirjastoissa-tapiolan-kirjasto-mukana-lukukoira-halla/\">Hero - Helsingin seudun erilaiset oppijat.</a></p>", "en": "<p><strong>Reading Support Advisory Service: Support and Tips for Learning at Tapiola Library</strong></p><p><strong>Mon 5 October 2026, 5:00–6:00 pm, featuring the reading dog Halla.</strong></p><p>At the advisory session, you can receive information about reading and writing difficulties, how they can be identified, and various assistive tools that make reading and writing easier. You will also have the opportunity to explore different educational games that can be downloaded onto a tablet or computer. Come and discuss learning, learn more about different ways of learning, and get acquainted with the activities of HERO (Helsinki Region Diverse Learners Association).</p><p>The advisory service is provided by our special education experts and is free of charge.</p><p>You can find the advisory point in the library lobby or in another designated location within the library. The location may vary. You can recognize HERO’s advisory point by HERO’s green roll-up banner.</p><p>Changes are possible.</p><p>Further information: <a href=\"https://www.lukihero.fi/tapahtumakalenteri/lukineuvontaa-espoon-kirjastoissa-tapiolan-kirjasto-mukana-lukukoira-halla/\">Hero - Helsingin seudun erilaiset oppijat.</a></p>" }, "provider_contact_info": null, "short_description": { "fi": "Vinkkejä ja tukea oppimiseen", "sv": "Tips och stöd för lärande", "en": "Tips and support for learning" }, "info_url": { "fi": "https://www.lukihero.fi/tapahtumakalenteri/lukineuvontaa-espoon-kirjastoissa-tapiolan-kirjasto-mukana-lukukoira-halla/", "sv": "https://www.lukihero.fi/tapahtumakalenteri/lukineuvontaa-espoon-kirjastoissa-tapiolan-kirjasto-mukana-lukukoira-halla/", "en": "https://www.lukihero.fi/tapahtumakalenteri/lukineuvontaa-espoon-kirjastoissa-tapiolan-kirjasto-mukana-lukukoira-halla/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqimwpkma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69864", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2386100, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-02T08:24:41.276637Z", "last_modified_time": "2026-09-02T08:24:41.276654Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791165.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386100/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-02T08:24:41.106239Z", "last_modified_time": "2026-09-09T12:14:15.876226Z", "date_published": null, "start_time": "2026-11-11T14:30:00Z", "end_time": "2026-11-11T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "provider": null, "name": { "fi": "Jamkids-soittopaja & Demo-biisipaja – Keskiviikkoklubi", "sv": "Jamkids-soittopaja & Demo-biisipaja – Onsdagsklubben", "en": "Jamkids-soittopaja & Demo-biisipaja – Wednesday Club" }, "description": { "fi": "<p><b>Biisipaja (Musiikkikoulu Demo)</b><br>Tervetuloa Musiikkikoulu Demon matalan kynnyksen biisipajaan! Rennossa ja hauskassa työpajassa tehdään iPadeilla omia biisejä mm. Launchpad- ja Garageband-sovelluksia käyttäen. Biisipajoissa ohjaajina toimivat Demon ammattitaitoiset musiikinopettajat. Et tarvitse ennakkotaitoja – into kokeilla riittää!</p><p><b>Jamkids-soittopaja</b><br>Jamkidsin soittopaja on elämyksellinen ja kaikenikäisille lapsille suunnattu osallistava musiikkituokio. Soittopajassa lapset pääsevät laulamaan, liikkumaan ja soittamaan erilaisilla soittimilla Jamkidsin opettajien kanssa. Soittopajaan voi osallistua itselleen sopivaksi ajaksi. Tervetuloa musisoimaan!</p><p>Työpajat toteutuvat myös lasten oikeuksien päivän tapahtumassa pe 20.11.2026.<br> <br>Vapaa pääsy.</p>" }, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/600675590CD5C80EC1BB876BD97764DE/Jamkids-soittopaja_Demo-biisipaja", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/600675590CD5C80EC1BB876BD97764DE/Jamkids-soittopaja_Demo-biisipaja", "en": "http://www.kanneltalo.fi/en/events/event/600675590CD5C80EC1BB876BD97764DE/Jamkids-soittopaja_Demo-biisipaja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69864/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3m74", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385463, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T09:58:16.810037Z", "last_modified_time": "2026-07-01T09:58:16.810057Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2ff5ffdf-3e03-484e-ac5f-ae6ffd105cbc.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa Espoon historiasta luennoiva Mari Anthoni", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385463/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-07-06T08:38:17.474618Z", "last_modified_time": "2026-09-09T11:58:11.767290Z", "date_published": null, "start_time": "2026-09-23T13:00:00Z", "end_time": "2026-09-23T13: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, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "name": { "fi": "Kulttuuriketju - Tarinoita Espoosta ja espoolaisista – Mari Anthonin historiallinen tarinatuokio ", "sv": "Kulturkedjan - Berättelser om Esbo och Esbobor – en historisk berättelsestund med Mari Anthoni (på finska)", "en": "Cultural Chain - Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session (in Finnish)" }, "description": { "fi": "Tarinoita Espoosta ja espoolaisista – Mari Anthonin historiallinen tarinatuokio <p><strong>Keskiviikko 23.9.2026 klo 16.00 Ison Omenan kirjasto (Stage) </strong></p><p>Espoon historiaan perehtynyt palkittu luennoitsija Mari Anthoni kertoo tarinoita Espoosta ja espoolaisista, merkittävistä kohteista, henkilöistä ja tapahtumista.</p><p>Esityksiä elävöitetään runsaalla kuvamateriaalilla.</p><p>Tapahtumat ovat keskustelevia ja osallistujat saavat mielellään kertoa omia ajatuksiaan ja muistojaan.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Espoon kaupungin Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa. Esityksiä järjestetään syksyn puolella syyskuusta marraskuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 36 esitystä. Esitykset rantautuvat isoimpien tapahtumakirjastojen lisäksi myös Pohjois-Espooseen.</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p>", "sv": "Berättelser om Esbo och Esbobor – en historisk berättelsestund med Mari Anthoni (På finska)<p><strong>Onsdag 23.9.2026 kl. 16.00 Iso Omenas bibliotek (Stage) </strong></p><p>Den prisbelönta föreläsaren Mari Anthoni, som är insatt i Esbos historia, berättar historier om Esbo och dess invånare, viktiga platser, personer och händelser.</p><p>Föreställningarna livas upp med rikligt med bildmaterial.</p><p><br></p><p>Fascinerande kvinnoöden i Esbo – inflytelserika kvinnor från Esbo </p><p> </p><p>Fascinerande berättelser om kvinnor som bott och verkat i Esbo under olika tider; mäktiga herrgårdsdamer, modiga samhälleliga påverkare och färgstarka konstnärer. </p><p>Genom ett rikligt bildmaterial får vi bekanta oss med bland annat järnladyn och den sörjande modern Sofia-Lovisa Ramsay från Esbo gård, den mytomspunna Aurora Karamzin från Träskända gård, de goda människorna Anna Sinebrychoff och Fanny Grahn från Hagalund, Amalia Kiseleff och Emma Ehrström från Alberga gård, Mary Gallen-Kallela, Elvira Standertskjöld med sina döttrar, samt de starka och begåvade konstnärinnorna Viivi Vallgren, Elli Tompuri och Hella Wuolijoki. </p><p>Evenemangen är diskussionsbaserade och deltagarna får gärna berätta sina egna tankar och minnen. Evenemanget hålls på finska.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Esbo stads kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek. Föreställningar arrangeras under hösten från september till november.</p><p>Kulturkedjan bjuder på fantastiska 36 föreställningar till biblioteken. Föreställningar kommer att ordnas på de stora evenemangsbiblioteken och dessutom även i Norra Esbo.</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p>", "en": "Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session (in Finnish)<p><strong>Wednesday 23.9.2026 at 4:00 p.m., Iso Omena Library (Stage) </strong></p><p>Award-winning lecturer Mari Anthoni, who is well-versed in Espoo’s history, tells stories about Espoo and Espoo residents, significant sites, people and events.</p><p>The presentations are enlivened with a wealth of visual material.</p><p><br></p><p>Kiehtovia naiskohtaloita Espoosta – espoolaisia vaikuttajanaisia </p><p> </p><p>Kiehtovia tarinoita Espoossa eri aikakausina asuneista ja vaikuttaneista naisista; mahtavista kartanonrouvista, rohkeista yhteiskunnallisista vaikuttajista ja värikkäistä taiteilijoista. </p><p>Runsaan kuvamateriaalin kera esitellään mm. Espoon kartanon rautarouva ja sureva äiti Sofia-Lovia Ramsay, Träskändan kartanon tarunhohtoinen Aurora Karamzin, Hagalundin hyvät ihmiset Anna Sinebrychoff ja Fanny Grahn, Albergan kartanon Amalia Kiseleff ja Emma Ehrström, Mary Gallen-Kallela, Elvira Standertskjöld tyttärineen, vahvat ja lahjakkaat taiteilijanaiset Viivi Vallgren Elli Tompuri, Hella Wuolijoki.... </p><p>Fascinating female destinies from Espoo – influential women from Espoo </p><p><br></p><p> </p><p>Fascinating stories about women who lived and influenced Espoo in different eras; great ladies of the manor, courageous social influencers and colorful artists. </p><p>With a wealth of visual material, the exhibition introduces, among others, the iron lady and grieving mother Sofia-Lovia Ramsay of Espoo Manor, the legendary Aurora Karamzin of Träskända Manor, the good people of Hagalund Anna Sinebrychoff and Fanny Grahn, the Alberga Manor's Amalia Kiseleff and Emma Ehrström, Mary Gallen-Kallela, Elvira Standertskjöld and her daughters, the strong and talented female artists Viivi Vallgren Elli Tompuri, Hella Wuolijoki.... </p><p> </p><p>The events are interactive and participants are welcome to share their own thoughts and memories. The event is in Finnish.</p><p><a href=\"www.manoris.fi \">www.manoris.fi </a></p><p><a href=\"https://www.facebook.com/ManorisTravel\">Facebook</a></p><p>--</p><p>Espoo City Culture Chain offers art and culture services to elderly people. Performances are also organised in libraries. Performances are organized in the fall, from September through November.</p><p>The Cultural Chain brings an impressive 36 performances to libraries.Performances will be held at the largest event libraries as well as in Northern Espoo.</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek. ", "en": "The Culture Chain service offers art and culture services to elderly people. Performances are also organised in libraries. " }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3m74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agqimiv37e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2386182, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-09-09T11:19:43.735786Z", "last_modified_time": "2026-09-09T11:19:43.735801Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/76d82aba-4727-4581-bbb1-f9978d3863cf.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Nuori nainen ja mies hymyilevät. Teksti: Espoon kestävä kasvu. Mistä säästetään ja mihin satsataan?", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2386182/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-09-09T11:25:38.242988Z", "last_modified_time": "2026-09-09T11:25:38.243007Z", "date_published": null, "start_time": "2026-09-15T15:00:00Z", "end_time": "2026-09-15T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": { "fi": "Kok.", "sv": "Kok.", "en": "Kok." }, "name": { "fi": "Espoon kestävä kasvu", "sv": "Hållbar tillväxt i Esbo (på finska)", "en": "Sustainable growth in Espoo (In Finnish) " }, "description": { "fi": "<p>Kokoomuksen järjestämä keskustelutilaisuus</p><p>Tiistaina 15.9. kello 18:00</p>", "sv": "<p>Diskussionsmöte arrangerat av Samlingspartiet</p><p>Tisdag 15.9. klockan 18:00</p>", "en": "<p>Discussion event organized by the National Coalition Party.</p><p>Tuesday 15th September at 6 pm.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kokoomuksen järjestämä keskustelutilaisuus", "sv": "Diskussionsmöte arrangerat av Samlingspartiet", "en": "Discussion event organized by the National Coalition Party" }, "info_url": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agqimiv37e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplcr3aza", "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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3elm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2026-03-11T08:47:16.359204Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T10:55:58.235646Z", "last_modified_time": "2026-09-09T09:46:20.270666Z", "date_published": null, "start_time": "2026-11-28T11:00:00Z", "end_time": "2026-11-28T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "Barnavdelningen", "en": "Children's section" }, "provider": null, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "sv": "Träffa läskatterna Marvin och Lenni", "en": "Reading cats Marvin and Lenni available for a meeting" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><br></p><p>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 15.8, 12.9, 25.10 & 28.11.</p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "sv": "<p>Entressen-biblioteket erbjuder nu högläsning för katter!</p><p><br></p><p>Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.</p><p>Du kan boka en egen läsestund om du tycker att det är svårt eller nervöst att läsa. Du kan också komma och öva med Marvin och Lenni om du vill träna språket. Du kan läsa för katterna på vilket språk som helst.</p><p><br></p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><br></p><p>Marvin and Lenni will be listening patiently on Saturdays 15.8, 12.9, 25.10 & 28.11.</p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin \n15.8, 12.9, 25.10 & 28.11.", "sv": "Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.", "en": "Marvin and Lenni will be listening patiently on Saturdays, \n15.8, 12.9, 25.10 & 28.11." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3aza/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplcr3b6e", "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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3elm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2026-03-11T08:47:16.359204Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T10:55:58.108907Z", "last_modified_time": "2026-09-09T09:46:20.205512Z", "date_published": null, "start_time": "2026-10-24T10:00:00Z", "end_time": "2026-10-24T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "Barnavdelningen", "en": "Children's section" }, "provider": null, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "sv": "Träffa läskatterna Marvin och Lenni", "en": "Reading cats Marvin and Lenni available for a meeting" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><br></p><p>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 15.8, 12.9, 25.10 & 28.11.</p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "sv": "<p>Entressen-biblioteket erbjuder nu högläsning för katter!</p><p><br></p><p>Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.</p><p>Du kan boka en egen läsestund om du tycker att det är svårt eller nervöst att läsa. Du kan också komma och öva med Marvin och Lenni om du vill träna språket. Du kan läsa för katterna på vilket språk som helst.</p><p><br></p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><br></p><p>Marvin and Lenni will be listening patiently on Saturdays 15.8, 12.9, 25.10 & 28.11.</p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin \n15.8, 12.9, 25.10 & 28.11.", "sv": "Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.", "en": "Marvin and Lenni will be listening patiently on Saturdays, \n15.8, 12.9, 25.10 & 28.11." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3b6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplcr3cyy", "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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3elm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2026-03-11T08:47:16.359204Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-10T10:55:57.967211Z", "last_modified_time": "2026-09-09T09:46:20.140703Z", "date_published": null, "start_time": "2026-09-12T10:00:00Z", "end_time": "2026-09-12T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lastenosasto", "sv": "Barnavdelningen", "en": "Children's section" }, "provider": null, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "sv": "Träffa läskatterna Marvin och Lenni", "en": "Reading cats Marvin and Lenni available for a meeting" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><br></p><p>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 15.8, 12.9, 25.10 & 28.11.</p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "sv": "<p>Entressen-biblioteket erbjuder nu högläsning för katter!</p><p><br></p><p>Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.</p><p>Du kan boka en egen läsestund om du tycker att det är svårt eller nervöst att läsa. Du kan också komma och öva med Marvin och Lenni om du vill träna språket. Du kan läsa för katterna på vilket språk som helst.</p><p><br></p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><br></p><p>Marvin and Lenni will be listening patiently on Saturdays 15.8, 12.9, 25.10 & 28.11.</p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin \n15.8, 12.9, 25.10 & 28.11.", "sv": "Marvin och Lenni lyssnar tålmodigt på lördagarna den 15.8, 12.9, 25.10 & 28.11.", "en": "Marvin and Lenni will be listening patiently on Saturdays, \n15.8, 12.9, 25.10 & 28.11." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplcr3cyy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }