Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=18
{ "meta": { "count": 23125, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=19", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=17" }, "data": [ { "id": "espoo_le:agptxlos74", "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:p2149/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlonzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloohm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloose/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloo6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlopji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlopuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloqba/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloqmq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloqyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlorfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlorqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlor4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlosh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlosty/?format=api" } ], "images": [ { "id": 2385504, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T14:41:38.018049Z", "last_modified_time": "2026-01-05T14:41:38.018066Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/eb52c8dc-458a-42df-929a-8ba0e4439dcc.jpg", "name": "", "cropping": "100,0,1100,1000", "photographer_name": "AJ Savolainen", "alt_text": "kaksi senioria tutkii tablettia ja nauraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385504/?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-07T07:21:51.906311Z", "last_modified_time": "2026-07-07T07:21:51.906333Z", "date_published": null, "start_time": "2026-09-10T08:00:00Z", "end_time": "2026-12-10T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Digiopastusta seniorilta seniorille Entressen kirjastossa", "sv": "It-handledning från seniorer till seniorer", "en": "Peer tutoring in IT matters for seniors" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "https://www.entersenior.fi/opastus/espoo/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/yhdistys/en/" }, "short_description": { "fi": "Maksutonta, henkilökohtaista ja kiireetöntä digiopastusta senioreille. Opastajina ikäihmisten tietotekniikkayhdistyksen vapaaehtoiset seniorit. Tervetuloa!", "sv": "De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater.\t", "en": "Peer tutoring in IT matters for seniors in Finnish. \t" }, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "description": { "fi": "<p>Ikäihmisten tietotekniikkayhdistys Enterin vapaaehtoiset vertaisopastajat tarjoavat maksutonta, henkilökohtaista ja kiireetöntä digiopastusta.</p><p>Opastuksissa käydään usein läpi esimerkiksi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia tai laitteen hankintaa.</p><p>Tule rohkeasti kysymään mitä tahansa tietotekniikasta - tyhmiä kysymyksiä ei ole.</p><p>Ota mukaan oma laitteesi ja tarvittavat tunnukset ja salasanat palveluun, jota haluat harjoitella.</p><p><strong>Varaa aika kirjastosta 09 8165 3776</strong></p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska:</p><p><a href=\" https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ \">https://www.entersenior.fi/sv/handledning/huvudstadsregionen/</a></p>", "en": "<p><strong>Enter ICT Association for Seniors</strong> offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support <strong>in English: </strong><a href=\"https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T \">https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T </a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlos74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68682", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385499, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T07:14:32.047769Z", "last_modified_time": "2026-07-07T07:14:32.047784Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791573.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385499/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-07-07T07:14:31.921065Z", "last_modified_time": "2026-07-07T07:14:32.208577Z", "date_published": null, "start_time": "2026-12-05T09:00:00Z", "end_time": "2026-12-05T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Annantalon taidelauantai: Viimeiset valonsäteet", "sv": "Annegårdens konstlördagar:", "en": "Annantalo Art Saturdays:" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E4AC068AA595DFB944E040BE9906C0B1/Annantalon_taidelauantai_Viimeiset_valonsateet", "sv": "http://www.annantalo.fi/sv/evenemang/event/E4AC068AA595DFB944E040BE9906C0B1/Annegardens_konstlordagar_", "en": "http://www.annantalo.fi/en/events/event/E4AC068AA595DFB944E040BE9906C0B1/Annantalo_Art_Saturdays_" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "location_extra_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Viimeiset valonsäteet</b></p><p>Valo osuu prismaan ja hajoaa sateenkaaren väreiksi. Siepataan vuoden viimeiset värikkäät valonsäteet Spektriin! Minkä värisen ja muotoisen valonsäteen sinä nappaat?</p><p><b>Viimeiset valonsäteet on yksi Spektri-yhteisteokseen liittyvistä työpajoista. </b></p><p>Syksyllä 2026 Annantalon työpajoissa ja taideryhmissä toteutetaan yhteinen valotaideteos Spektri. Tämä työpaja on yksi monista, joissa työstetään teoksen eri osia. Tule mukaan tekemään oma osuutesi Annankadun puolelle sijoitettaviin, spektrin väreissä hehkuviin ikkunateoksiin. Spektri-valoteoksen avajaisia juhlitaan 9.12. klo 18, jolloin Annantalon ikkunat syttyvät väriloistoon. Tule mukaan rakentamaan yhteistä Spektriä!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b></b><br>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett lungt rum. Annegårdens konstlördag är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b></b><br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a peaceful room in the premises. The Annantalo Art Saturday is free-of-charge.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68681", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385498, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T07:14:30.914945Z", "last_modified_time": "2026-07-07T07:14:30.914963Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791571.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385498/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-07-07T07:14:30.799194Z", "last_modified_time": "2026-07-07T07:14:31.080455Z", "date_published": null, "start_time": "2026-11-28T09:00:00Z", "end_time": "2026-11-28T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Annantalon taidelauantai: Villi villi viidakko", "sv": "Annegårdens konstlördagar:", "en": "Annantalo Art Saturdays:" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EE278E54A2BD1C3B55C8D27D923DBA4E/Annantalon_taidelauantai_Villi_villi_viidakko", "sv": "http://www.annantalo.fi/sv/evenemang/event/EE278E54A2BD1C3B55C8D27D923DBA4E/Annegardens_konstlordagar_", "en": "http://www.annantalo.fi/en/events/event/EE278E54A2BD1C3B55C8D27D923DBA4E/Annantalo_Art_Saturdays_" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "location_extra_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Villi villi viidakko</b></p><p>Kuvittele sademetsä! Sen hurja kosteus, läpitunkematon tiheä lehvästö ja omituiset äänet! Tropiikin puu on kasvanut Annantalon ikkunaan. Minkälaisia lehtiä, kukkia, hyönteisiä ja eksoottisia elämiä sinne yhdessä keksitään? Tule pimeän marraskuun keskelle unelmoimaan villistä viidakosta ja tekemään kartongista ja silkkipaperista oma osasi yhteiseen Spektri-teokseen.</p><p><b>Villi villi viidakko on yksi Spektri-yhteisteokseen liittyvistä työpajoista. </b></p><p>Syksyllä 2026 Annantalon työpajoissa ja taideryhmissä toteutetaan yhteinen valotaideteos Spektri. Tämä työpaja on yksi monista, joissa työstetään teoksen eri osia. Tule mukaan tekemään oma osuutesi Annankadun puolelle sijoitettaviin, spektrin väreissä hehkuviin ikkunateoksiin. Spektri-valoteoksen avajaisia juhlitaan 9.12. klo 18, jolloin Annantalon ikkunat syttyvät väriloistoon. Tule mukaan rakentamaan yhteistä Spektriä!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b></b><br>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett lungt rum. Annegårdens konstlördag är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b></b><br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a peaceful room in the premises. The Annantalo Art Saturday is free-of-charge.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68681/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69319", "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: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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385497, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T07:14:29.624402Z", "last_modified_time": "2026-07-07T07:14:29.624417Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793858.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T07:14:29.524569Z", "last_modified_time": "2026-07-07T07:14:29.759006Z", "date_published": null, "start_time": "2026-11-21T09:00:00Z", "end_time": "2026-11-21T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten oma päivä – Unelmien tapahtumapäivä Annantalolla", "sv": "Lasten oma päivä", "en": "Lasten oma päivä" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3B4766F8F2116DC72014DB1BA5F37D9D/Lasten_oma_paiva_", "sv": "http://www.annantalo.fi/sv/evenemang/event/3B4766F8F2116DC72014DB1BA5F37D9D/Lasten_oma_paiva_", "en": "http://www.annantalo.fi/en/events/event/3B4766F8F2116DC72014DB1BA5F37D9D/Lasten_oma_paiva_" }, "short_description": { "fi": "Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle." }, "location_extra_info": null, "description": { "fi": "<p>Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.</p><p>Lasten oma päivä rakentuu erilaisista työpajoista ja ohjelmanumeroista, joita lapset ovat itse toivoneet edellisen vuoden Lasten päivä -tapahtumassa.</p><p>Työpajapisteitä saa kierrellä omassa tahdissaan. Voit saapua ja lähteä silloin kun haluat. <br>Ohjelma on pääosin suomeksi ja englanniksi, mutta kaikki kielet ja niitä kaiken tasoisesti puhuvat ovat lämpimästi tervetulleita mukaan. <br> <br>Tapahtuma on maksuton ja on suunniteltu koko perheelle. <br>Tervetuloa mukaan Lasten ikiomaan päivään!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69319/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptw57wpa", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57ogi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57pca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57pqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57qau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57qpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57q5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57rna/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57r3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57slq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57s3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57tlm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57t2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57uke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57uxq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57vge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57vte/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57wbi/?format=api" } ], "images": [ { "id": 1490576, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-28T16:42:17.396704Z", "last_modified_time": "2026-07-07T07:09:36.689598Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png", "name": "", "cropping": "94,0,468,375", "photographer_name": "", "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T07:12:39.066862Z", "last_modified_time": "2026-07-07T07:12:39.066879Z", "date_published": null, "start_time": "2026-08-27T14:00:00Z", "end_time": "2026-12-17T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Art Journal - Taidepäiväkirjatyöpaja aikuisille", "sv": "Art Journal - verkstad för vuxna om konstdagböcker", "en": "Art Journal - Art diary workshop for adults" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "short_description": { "fi": "Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. ", "sv": "verkstad för vuxna om konstdagböcker", "en": "Art diary workshop for adults" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "description": { "fi": "Art Journal - Taidepäiväkirjatyöpaja<p><strong>Torstaisin kello 17-19.30, Entressen kirjasto, Sininen huone</strong></p><p>Haluatko saada uusia ideoita ja kokeilla uusia tekniikoita taidepäiväkirjan tekemiseen?</p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan. </p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p><p><br></p><p>#HelloEspoo</p>", "sv": "Art Journal – verksamhet i konstdagboksskrivande<p><strong>Torsdagar kl. 17.00–19.30, Entressen Library, Sininen huone</strong></p><p>Vill du få nya idéer och prova nya tekniker för att skapa en konstdagbok?</p><p>I konstdagboksworkshopen kommer vi att arbeta med konstdagböcker med hjälp av bilder och text. Konstdagböcker använder i stor utsträckning återvunnet material. Material, inklusive dagboksmallar, finns tillgängligt på biblioteket. Du kan också ta med egna material. </p><p>Denna serie evenemang är en del av bibliotekets program och har organiserats utifrån kundernas önskemål – kom och upplev nya sätt att uppleva litteratur.</p><p><br></p><p>Arrangör: Biblioteket</p><p><br></p><p>#HelloEspoo</p>", "en": "Art Journal - Art Diary Workshop<p><strong>Thursdays at 5-7:30 p.m., Entressen Library, Sininen huone</strong></p><p>Want to get some new ideas and try out new techniques for making an art diary?</p><p>In the art journal workshop, we will work on art journals using images and text. Art journals make extensive use of recycled materials. Materials, including the diary template, are available at the library. Or bring your own materials. </p><p>This series of events is part of the library's program and has been organized based on customer requests – come and experience new ways of experiencing literature.</p><p><br></p><p>Organizer: Library</p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57wpa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptw572de", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57xau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57xzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57ymm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57y7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw57zra/?format=api" } ], "images": [ { "id": 2385475, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T07:55:27.267897Z", "last_modified_time": "2026-07-07T06:49:55.106804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/64c7b719-d002-431d-87c2-ebc9a36523c0.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kukkaniitty ja kirjojen kannet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385475/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T06:59:34.819426Z", "last_modified_time": "2026-07-07T06:59:34.819442Z", "date_published": null, "start_time": "2026-08-26T11:00:00Z", "end_time": "2026-12-16T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "provider": { "fi": "Vapaaehtoinen", "en": "Volunteer" }, "provider_contact_info": null, "info_url": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!<p>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!</p><p><strong>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30. I Elina</strong></p><p>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia <strong>noemi.dienes@gmail.com</strong>.</p><p>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.</p><p>Nähdään!</p><p><strong>Kirjat:</strong></p><p>ke 26.8.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Crossing+%2F+Pajtim+Statovci&type=AllFields\">Crossing / Pajtim Statovci </a></p><p>ke 30.9.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2618149?sid=5358703095\">Flesh / David Szalay</a></p><p>ke 28.10.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2288818?sid=5358703620\">The left hand of darkness / Ursula K. Le Guin </a></p><p>ke 25.11.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+clues+in+the+fjord+%28Hildur+1%29+%2F+Satu+R%C3%A4m%C3%B6&type=AllFields&limit=20\">The clues in the fjord (Hildur 1) / Satu Rämö </a></p><p>ke 16.12.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+rest+of+our+lives+%2F+Benjamin+Markovits&type=AllFields&limit=20&sort=relevance\">The rest of our lives / Benjamin Markovits </a></p>", "en": "Join the Fun at the Sello Library English Book Club!<p>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!</p><p>📚 **What:** Sello Library English Book Club</p><p>📅 **When:** Last Wednesdays of the month</p><p>🕑 **Time:** 2 PM to 3:30 PM</p><p>📍 **Where:** Elina Room</p><p>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to <strong>noemi.dienes@gmail.com.</strong></p><p>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.</p><p>See you there!</p><p>Books:</p><p>Wed 26.8.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Crossing+%2F+Pajtim+Statovci&type=AllFields\">Crossing / Pajtim Statovci </a></p><p>Wed 30.9.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2618149?sid=5358703095\">Flesh / David Szalay</a></p><p>Wed 28.10.2026 <a href=\"https://helmet.finna.fi/Record/helmet.2288818?sid=5358703620\">The left hand of darkness / Ursula K. Le Guin </a></p><p>Wed 25.11.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+clues+in+the+fjord+%28Hildur+1%29+%2F+Satu+R%C3%A4m%C3%B6&type=AllFields&limit=20\">The clues in the fjord (Hildur 1) / Satu Rämö</a> </p><p>Wed 16.12.2026 <a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+rest+of+our+lives+%2F+Benjamin+Markovits&type=AllFields&limit=20&sort=relevance\">The rest of our lives / Benjamin Markovits </a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw572de/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptw6aak4", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw572we/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw573iq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw5732m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw574mi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw5746u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw575q4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw576ci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw576uq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw577hy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw577y4/?format=api" } ], "images": [ { "id": 1824300, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-03T09:17:37.544554Z", "last_modified_time": "2026-05-03T09:17:37.544569Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7a3b9811-038e-4e38-bf6b-a67ab4f6265d.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Vammaisten maahanmuuttajien tukikeskus Hilma kirjastolla", "alt_text": "Vammaisten maahanmuuttajien tukikeskus Hilma kirjastolla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824300/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:ago62xjth4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:ago62xjtq4/?format=api" } ], "created_time": "2026-07-07T06:43:51.227934Z", "last_modified_time": "2026-07-07T06:43:51.227951Z", "date_published": null, "start_time": "2026-08-07T07:00:00Z", "end_time": "2026-12-11T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Vammaisten maahanmuuttajien tukikeskus Hilma kirjastolla", "en": "Hilma – The Support Centre for Immigrant Persons with Disabilities and long-term Illnesses at the Library" }, "provider": { "fi": "Vammaisten maahanmuuttajien tukikeskus Hilma", "en": "Hilma – The Support Centre for Immigrant Persons with Disabilities and long-term Illnesses" }, "provider_contact_info": null, "info_url": { "fi": "https://tukikeskushilma.fi/", "en": "https://tukikeskushilma.fi/en/home-2/" }, "short_description": { "fi": "Hilma on nyt Espoossa-هيلما موجودة الآن في إسبو-Hilma is now in Espoo-Хильма сейчас в Эспоо.", "en": "Hilma – The Support Centre for Immigrant Persons with Disabilities is now in Espoo" }, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "description": { "fi": "Hilma on nyt Espoossa-هيلما موجودة الآن في إسبو-Hilma is now in Espoo-Хильма сейчас в Эспоо.<p>Vammaisten maahanmuuttajien tukikeskus Hilma on aloittanut yhteistyön Espoon kaupungin kanssa. Tarjoamme maksutonta ohjausta vammaisille ja pitkäaikaissairaille maahanmuuttajille sekä heidän perheenjäsenilleen.</p><p>Tarvitsetko apua oikeuksiesi ymmärtämisessä, palveluihin hakemisessa tai lomakkeiden täyttämisessä? Olemme täällä sinua varten.</p><p><strong>Entressen kirjasto</strong></p><p><strong>Osoite: Siltakatu 11, 02770 Espoo</strong></p><p><strong>Aika: joka toinen perjantai klo 10–15 / 7.8.-11.12.2026</strong></p><p><br></p><p>Yhteydenotot:</p><p>+358 44 9016441</p><p>info@tukikeskushilma.fi</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "Hilma – The Support Centre for Immigrant Persons with Disabilities is now in Espoo<p><br></p><p>Hilma has started cooperation with the City of Espoo. We provide free guidance for immigrants with disabilities or long-term illnesses and their family members.</p><p>Do you need help understanding your rights, applying for services, or filling in forms? We are here for you.</p><p><strong>Entresse Library</strong></p><p><strong>Address: Siltakatu 11, 02770 Espoo</strong></p><p><strong>Time: Every other Friday, 10 a.m.–3 p.m. / August 7–December 11, 2026</strong></p><p><br></p><p>Contact:</p><p>+358 44 9016441</p><p>info@tukikeskushilma.fi</p><p><br></p><p>Hilma – The Support Centre for Immigrant Persons with Disabilities and long-term Illnesses</p><p>Hilma – The Support Centre for Immigrant Persons with Disabilities and long-term Illnesses, promotes the rights and equal participation opportunities of disabled and chronically ill immigrants in Finnish society.</p><p><br></p><p>We provide</p><ul><li>information about services and rights</li><li>guidance in applying for services & filling out forms</li><li>peer support</li></ul><p>Our services are free of charge. We provide service in all languages, via an interpreter when necessary.</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptw6aak4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68679", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385495, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T06:14:27.204454Z", "last_modified_time": "2026-07-07T06:14:27.204472Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791566.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385495/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-07-07T06:14:27.052916Z", "last_modified_time": "2026-07-07T06:14:27.472155Z", "date_published": null, "start_time": "2026-11-07T09:00:00Z", "end_time": "2026-11-07T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Annantalon taidelauantai: Aaltojen alla", "sv": "Annegårdens konstlördagar", "en": "Annantalo Art Saturdays" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8CA9A885950E1302C10FDEEBEE7A332F/Annantalon_taidelauantai_Aaltojen_alla", "sv": "http://www.annantalo.fi/sv/evenemang/event/8CA9A885950E1302C10FDEEBEE7A332F/Annegardens_konstlordagar", "en": "http://www.annantalo.fi/en/events/event/8CA9A885950E1302C10FDEEBEE7A332F/Annantalo_Art_Saturdays" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "location_extra_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Aaltojen alla</b></p><p>Keinuvasta levämetsästä voit löytää kyrmysimpun, täpläpallohain, merileijonan ja merisaukon. Annantalon taidelauantaissa pääset tutustumaan kelp-metsien asukkaisiin ja tekemään yhteiseen teokseen oman kaistaleesi sinistä merta ja sen olentoja. Työskentely tapahtuu silkkipaperin, liiman ja kartongin avulla.</p><p><b>Aaltojen alla on yksi Spektri-yhteisteokseen liittyvistä työpajoista. </b></p><p>Syksyllä 2026 Annantalon työpajoissa ja taideryhmissä toteutetaan yhteinen valotaideteos Spektri. Tämä työpaja on yksi monista, joissa työstetään teoksen eri osia. Tule mukaan tekemään oma osuutesi Annankadun puolelle sijoitettaviin, spektrin väreissä hehkuviin ikkunateoksiin. Spektri-valoteoksen avajaisia juhlitaan 9.12. klo 18, jolloin Annantalon ikkunat syttyvät väriloistoon. Tule mukaan rakentamaan yhteistä Spektriä!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b></b><br>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett lungt rum. Annegårdens konstlördag är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b></b><br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a peaceful room in the premises. The Annantalo Art Saturday is free-of-charge.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68679/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69579", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21877353/", "sv": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21877353/", "en": "https://www.lippu.fi/event/hopeacine-vuotalo-vuotalo-21877353/" }, "price": { "fi": "10€", "sv": "10€", "en": "10€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385481, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T07:14:20.785695Z", "last_modified_time": "2026-07-03T07:14:20.785711Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785980.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385481/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T07:14:20.678131Z", "last_modified_time": "2026-07-06T13:13:45.936849Z", "date_published": null, "start_time": "2026-11-24T12:00:00Z", "end_time": "2026-11-24T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HopeaCine: Lapin sota, ohj. Aku Louhimies", "sv": "HopeaCine: Lapin sota, ohj. Aku Louhimies", "en": "HopeaCine: Lapin sota, ohj. Aku Louhimies" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D004A81239A9CEF08EEFFF07872F2DAC/HopeaCine_Lapin_sota_ohj_Aku_Louhimies", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D004A81239A9CEF08EEFFF07872F2DAC/HopeaCine_Lapin_sota_ohj_Aku_Louhimies", "en": "http://www.vuotalo.fi/en/events/event/D004A81239A9CEF08EEFFF07872F2DAC/HopeaCine_Lapin_sota_ohj_Aku_Louhimies" }, "short_description": { "fi": "Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!" }, "location_extra_info": null, "description": { "fi": "<p>Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!</p><p>Elokuvan tapahtumat sijoittuvat Lappiin syksyllä 1944, Suomen ja Saksan väliseen konfliktiin toisen maailmansodan loppuvaiheessa.</p><p>Nuori sotamies Heikki taistelee Karjalan kannaksella ystävänsä Paulin kanssa. Komppaniaan liittyy vankilasta vapautunut Arvo, jonka maailmankuva haastaa muiden käsitykset sodasta ja velvollisuudesta. Aselepo herättää toivon kotiinpaluusta, mutta pian selviää, että Suomen on käännyttävä entisiä saksalaisia liittolaisiaan vastaan Lapissa.</p><p>Samaan aikaan Rovaniemellä saksalaisten tulkkina työskentelevä Saara joutuu valitsemaan tulevaisuutensa: jäädä Suomeen vai paeta Saksaan rakastettunsa, majuri Duisbergin, kanssa.</p><p><i>Lapin sota</i> on vahvasti hahmojensa inhimillisiin kokemuksiin nojaava kertomus ihmisistä, jotka ajautuvat historiallisten mullistusten keskelle. Sodan kauheuksien keskeltä he etsivät merkitystä, inhimillisyyttä ja anteeksiantoa – ja kysyvät, miten armottomassa ympäristössä voidaan löytää armollisuutta.</p><p>Ohjaus: Aku Louhimies<br>Käsikirjoitus: Antti Tuuri ja Aku Louhimies<br>Näyttelijät: Peter Franzén, Sannah Nedergård, Volker Bruch, Luukas Niskanen <br>Kieli: suomi<br>Kesto: 2 t<br>Keskustelu: 30 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69579/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68633", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385493, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T13:13:44.010794Z", "last_modified_time": "2026-07-06T13:13:44.010811Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791320.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385493/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-06T13:13:43.910476Z", "last_modified_time": "2026-07-06T13:13:44.173186Z", "date_published": null, "start_time": "2026-11-02T16:00:00Z", "end_time": "2026-11-02T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PHMOsta kajahtaa! -oppilaskonsertti", "sv": "PHMOsta kajahtaa! -oppilaskonsertti", "en": "PHMOsta kajahtaa! -oppilaskonsertti" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/772ACD689A34BEC1481C8DE18AB390BD/PHMOsta_kajahtaa_-oppilaskonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/772ACD689A34BEC1481C8DE18AB390BD/PHMOsta_kajahtaa_-oppilaskonsertti", "en": "http://www.malmitalo.fi/en/events/event/772ACD689A34BEC1481C8DE18AB390BD/PHMOsta_kajahtaa_-oppilaskonsertti" }, "short_description": { "fi": "PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa." }, "location_extra_info": null, "description": { "fi": "<p>PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa.</p><p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston eri ikäisten taitajien esityksiä – konsertteihin on vapaa pääsy!</p><p>Konsertit 2., 3. ja 17.11. klo 18.00 Malmitalossa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68633/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69569", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/european-blues-challenge-suomen-osakilpailu-malmitalo-21651297/", "sv": "https://www.lippu.fi/event/european-blues-challenge-suomen-osakilpailu-malmitalo-21651297/", "en": "https://www.lippu.fi/event/european-blues-challenge-suomen-osakilpailu-malmitalo-21651297/" }, "price": { "fi": "19,80€", "sv": "19,80€", "en": "19,80€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385455, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T11:14:16.082211Z", "last_modified_time": "2026-07-01T11:14:16.082227Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791363.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385455/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-01T11:14:15.897377Z", "last_modified_time": "2026-07-06T13:13:41.447321Z", "date_published": null, "start_time": "2026-10-17T15:00:00Z", "end_time": "2026-10-17T18:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "European Blues Challenge: Suomen osakilpailu", "sv": "European Blues Challenge: Suomen osakilpailu", "en": "European Blues Challenge: Suomen osakilpailu" }, "provider": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5ED58F35EFC480F94F504511048AD006/European_Blues_Challenge_Suomen_osakilpailu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5ED58F35EFC480F94F504511048AD006/European_Blues_Challenge_Suomen_osakilpailu", "en": "http://www.malmitalo.fi/en/events/event/5ED58F35EFC480F94F504511048AD006/European_Blues_Challenge_Suomen_osakilpailu" }, "short_description": { "fi": "Blues-musiikin “euroviisujen” Suomen edustaja valitaan vuodelle 2027." }, "location_extra_info": null, "description": { "fi": "<p>Blues-musiikin “euroviisujen” Suomen edustaja valitaan vuodelle 2027.</p><p>Eurooppalaisten bluestoimijoiden kattojärjestö European Blues Union (EBU) on jo 15 vuoden ajan järjestänyt eri puolilla Eurooppaa European Blues Challenge (EBC) -tapahtuman, jota voidaan hyvällä syyllä kutsua bluesmusiikin euroviisuiksi. Näihin EBC-kisoihin on vuosittain lähettänyt edustajiaan reilut 20 maata. Suomi on ollut aina mukana (vuodesta 2011 lähtien).</p><p>Kukin EBU:n jäsenvaltio järjestää tahollaan oman kansallisen edustajansa valinnan. Suomessa ehdokkaiksi ilmoittautuneiden bluesyhtyeiden ja -sooloartistien joukosta tähän kilpailuun valittiin neljä kokoonpanoa, joiden esikarsinnan suorittivat European Blues Unionin (EBU) suomalaiset aktiivijäsenet.</p><p>Suomen lopullisen EBC 2027 -kilpailuedustajan valitsee (järjestäjistä) riippumaton asiantuntijaraati tässä Malmitalon konsertissa. Kilpailu alkaa kello 18.00 ja jokainen yhtye soittaa 20 minuuttia. Varsinainen EBC 2027 -tapahtuma pidetään Portugalin Vila do Conde’ssa 8.–10. huhtikuuta 2027.</p><p>Malmitalosta on tullut vuosien varrella merkittävä bluesmusiikin areena Helsingissä. Suomen EBC 2027 -edustajan valinta suoritetaan nyt ensimmäistä kertaa Malmitalossa yhteistyönä Finnish Blues Societyn (FBS) kanssa.</p><p>Kesto: 3t 30min, sis 20 min väliajan</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69569/?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": [], "info_url": null, "price": null, "description": 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-07-06T09:40:26.054450Z", "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, "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 ", "en": "Cultural Chain - Stories about Espoo and Espoo residents – Mari Anthon’s historical storytelling session" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "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><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>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<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>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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3m74/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3l4i", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T07:00:13.999708Z", "last_modified_time": "2026-07-01T07:00:13.999723Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4b85e34b-9848-483d-97f9-4d92cfbfa06c.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Vantaan sanataidekoulu", "alt_text": "Kuvassa sanataiteilija Kati Oinonen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385445/?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:51:15.242982Z", "last_modified_time": "2026-07-06T08:51:15.242998Z", "date_published": null, "start_time": "2026-11-05T12:00:00Z", "end_time": "2026-11-05T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Ihanat vaaleat pilvet – runoesitys, joka koskettaa ", "sv": "Kulturkedjan - Ihanat vaaleat pilvet – en diktföreställning som berör ", "en": "Cultural Chain - Ihanat vaaleat pilvet – a poetry performance that touches " }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "description": { "fi": "Ihanat vaaleat pilvet – runoesitys, joka koskettaa <p><strong>Torstai 5.11.2026 klo 14.00 Entressen kirjasto (Estradi) </strong></p><p>Nostalgiaa, luonnon kauneutta ja rakastettuja runoja. Tuulahdus runojen maailmasta – sinne missä muistot heräävät. </p><p>Sanataideopettaja ja teatteri-ilmaisun ohjaaja <strong>Kati Oinonen</strong> tulkitsee Saima Harmajaa, Immi Helleniä ja Eino Leinoa lämmöllä ja läsnäololla. </p><p>Mukana myös vuorovaikutteisia hetkiä yleisön kanssa. </p><p>Kesto. n.30-40 min. </p><p><a href=\"www.sanataidekoulu.fi \">www.sanataidekoulu.fi </a></p><p><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2F297414046964409%3Fref%3DNONE_xav_ig_profile_page_web&data=05%7C02%7C%7C255b60c654a74508f3b408dea05f29d7%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C639124527796809990%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=X%2Fj4udbKexyDekoOGT7pAmAf5v58wfm%2BtimRlgxY7Q4%3D&reserved=0\">Facebook</a></p><p><a href=\"https://www.instagram.com/vantaan_sanataidekoulu/\">Instagram</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": "Ihanat vaaleat pilvet – en diktföreställning som berör <p><strong>Torsdag 5.11.2026 kl. 14.00 Entresses bibliotek (Estradi) </strong></p><p>Nostalgi, naturens skönhet och älskade dikter. En fläkt från poesins värld – där minnena vaknar upp. </p><p>Ordkonstläraren och teateruttrycksledaren <strong>Kati Oinonen</strong> tolkar Saima Harmaja, Immi Hellen och Eino Leino med värme och närvaro. </p><p>I föreställningen ingår även interaktiva stunder med publiken. </p><p>Längd cirka 30–40 min. Evenemanget hålls på finska </p><p><a href=\"www.sanataidekoulu.fi \">www.sanataidekoulu.fi </a></p><p><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2F297414046964409%3Fref%3DNONE_xav_ig_profile_page_web&data=05%7C02%7C%7C255b60c654a74508f3b408dea05f29d7%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C639124527796809990%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=X%2Fj4udbKexyDekoOGT7pAmAf5v58wfm%2BtimRlgxY7Q4%3D&reserved=0\">Facebook</a></p><p><a href=\"https://www.instagram.com/vantaan_sanataidekoulu/\">Instagram</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": "Ihanat vaaleat pilvet – a poetry performance that touches <p><strong>Thursday 5.11.2026 at 2:00 p.m., Entresse Library (Estradi) </strong></p><p>Nostalgia, the beauty of nature and beloved poems. A breath of fresh air from the world of poetry – where memories awaken. </p><p>Literary arts teacher and theatre expression director <strong>Kati Oinonen</strong> interprets Saima Harmaja, Immi Hellen and Eino Leino with warmth and presence. </p><p>Including interactive moments with the audience. </p><p>Approximate Duration: 30-40 min. The event is in Finnish. </p><p><a href=\"www.sanataidekoulu.fi \">www.sanataidekoulu.fi </a></p><p><a href=\"https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.facebook.com%2F297414046964409%3Fref%3DNONE_xav_ig_profile_page_web&data=05%7C02%7C%7C255b60c654a74508f3b408dea05f29d7%7C6bb04228cfa542139f39172454d82584%7C1%7C0%7C639124527796809990%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=X%2Fj4udbKexyDekoOGT7pAmAf5v58wfm%2BtimRlgxY7Q4%3D&reserved=0\">Facebook</a></p><p><a href=\"https://www.instagram.com/vantaan_sanataidekoulu/\">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3l4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agprz754ma", "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:p1808/?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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385451, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T07:30:24.369887Z", "last_modified_time": "2026-07-01T07:30:24.369906Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/55684467-3e01-47df-9f7d-186dd0d0e567.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa yhteislaulattaja Elina Hakala", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385451/?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-01T08:35:48.426930Z", "last_modified_time": "2026-07-06T08:44:56.457072Z", "date_published": null, "start_time": "2026-11-28T10:00:00Z", "end_time": "2026-11-28T10:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Yhteislaulua ", "sv": "Kulturkedjan - Allsång", "en": "Cultural Chain - Sing-along" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "description": { "fi": "Yhteislaulua <p><strong>Lauantai 28.11.2026 klo 12.00 Ison Omenan kirjasto (Stage) </strong> </p><p>Tervetuloa laulamaan yhdessä! Senioreille suunnattujen yhteislaulutilaisuuksien vetäjänä toimii kokenut yhteislaulattaja <strong>Elina Hakala</strong>. </p><p>Voit halutessasi pyytää toivelauluasi mukaan ohjelmistoon lähettämällä sähköpostia<strong> keikat@elinahakala.fi</strong> kaksi viikkoa ennen sitä yhteislaulutilaisuutta, johon aiot osallistua. </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": "Allsång <p><strong>Lördag 28.11.2026 kl. 12.00 Iso Omenas bibliotek (Stage) </strong></p><p>Välkommen att sjunga tillsammans! Den erfarna allsångsledaren <strong>Elina Hakala</strong> leder gemensamma sångstunder för seniorer. </p><p>Om du vill kan du önska en låt till sånglistan genom att skicka e-post till <strong>keikat@elinahakala.fi</strong> två veckor före allsångsevenemanget som du vill delta i. </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": "Sing-along<p><strong>Saturday 28.11.2026 at 12:00 p.m., Iso Omena Library (stage) </strong></p><p>Welcome to sing together! The senior sing-along events are led by experienced sing-along singer <strong>Elina Hakala</strong>. </p><p>If you wish, you can request your desired song to be included in the program by sending an email to <strong>keikat@elinahakala.fi </strong>two weeks before the senior sing-along event you plan to attend. </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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agprz754ma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3nrq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61461/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:34:53.127872Z", "last_modified_time": "2026-07-06T08:34:53.127887Z", "date_published": null, "start_time": "2026-10-23T14:30:00Z", "end_time": "2026-10-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Kalajärven palvelutori (Kalajärvi-Sali) ", "sv": "Servicetorget i Kalajärvi (Kalajärvi-Sali) ", "en": "Kalajärvi Service Center (Kalajärvi Hall) " }, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Perjantai 23.10.2026 klo 17.30 Kalajärven palvelutori (Kalajärvi-Sali) </strong></p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Fredag 23.10.2026 kl. 17.30 Servicetorget i Kalajärvi (Kalajärvi-Sali)</strong> </p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Friday 23.10.2026 at 5:30 p.m., Kalajärvi Service Center (Kalajärvi Hall) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3nrq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3oie", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:34:34.161455Z", "last_modified_time": "2026-07-06T08:34:34.161471Z", "date_published": null, "start_time": "2026-10-23T14:30:00Z", "end_time": "2026-10-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Kalajärven palvelutori (Kalajärvi-Sali) ", "sv": "Servicetorget i Kalajärvi (Kalajärvi-Sali) ", "en": "Kalajärvi Service Center (Kalajärvi Hall) " }, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Perjantai 23.10.2026 klo 17.30 Kalajärven palvelutori (Kalajärvi-Sali) </strong></p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Fredag 23.10.2026 kl. 17.30 Servicetorget i Kalajärvi (Kalajärvi-Sali)</strong> </p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Friday 23.10.2026 at 5:30 p.m., Kalajärvi Service Center (Kalajärvi Hall) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3oie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3o5y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:31:52.501221Z", "last_modified_time": "2026-07-06T08:31:52.501239Z", "date_published": null, "start_time": "2026-11-22T12:00:00Z", "end_time": "2026-11-22T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Sunnuntai 22.11.2026 klo 14.00 Lippulaivan kirjasto (Salonki) </strong></p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Söndag 22.11.2026 kl. 14.00 Lippulaivas bibliotek (Salonki) </strong></p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Sunday 22.11.2026 at 2:00 p.m., Lippulaiva Library (Salonki) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3o5y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3ptu", "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:p11617/?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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:30:00.973476Z", "last_modified_time": "2026-07-06T08:30:00.973493Z", "date_published": null, "start_time": "2026-11-29T12:00:00Z", "end_time": "2026-11-29T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Sunnuntai 29.11.2026 klo 14.00 Entressen kirjasto (Estradi) </strong></p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Söndag 29.11.2026 kl. 14.00 Entresses bibliotek (Estradi) </strong></p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Sunday 29.11.2026 at 2:00 p.m., Entresse Library (Estradi) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3ptu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3qka", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:25:54.634346Z", "last_modified_time": "2026-07-06T08:25:54.634362Z", "date_published": null, "start_time": "2026-11-28T13:00:00Z", "end_time": "2026-11-28T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Lauantai 28.11.2026 klo 15.00 Sellon kirjasto (Lava)</strong> </p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Lördag 28.11.2026 kl. 15.00 Sellos bibliotek (Lava)</strong></p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Saturday 28.11.2026 at 3:00 p.m., Sello Library (Stage) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3qka/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agptnp3q6q", "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:p11617/?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:p2625/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:23:37.219160Z", "last_modified_time": "2026-07-06T08:23:37.219178Z", "date_published": null, "start_time": "2026-11-21T13:30:00Z", "end_time": "2026-11-21T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "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" }, "provider_contact_info": null, "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" }, "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." }, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Lauantai 21.11.2026 klo 15.30 Tapiolan kirjasto (Kaija) </strong></p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Lördag 21.11.2026 kl. 15.30 Hagalunds bibliotek (Kaija) </strong></p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Saturday 21.11.2026 at 3:30 p.m., Tapiola Library (Kaija) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</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>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3q6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }