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
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=29
{ "meta": { "count": 25082, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=30", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=28" }, "data": [ { "id": "kulke:66851", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1482100, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T08:14:18.592580Z", "last_modified_time": "2025-08-14T08:14:18.592599Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775735.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1482100/?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": "2025-08-14T08:14:18.485457Z", "last_modified_time": "2025-10-14T13:13:47.981461Z", "date_published": null, "start_time": "2025-10-15T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Iki-ihana Naapurini Totoro!</p><p>Totoron nostalginen, 1930-luvun Showaan, Japaniin sijoittuva luonnonläheinen maailma ja tarina uuteen taloon muuttavista siskoksista sekä viereisessä metsässä elävistä maagisista karvaturreista sisältää useita Miyazakin tuotannon kantavia teemoja.</p><p>Ikäraja: S<br>Kesto: 1 t 26 min <br>Kieli: suomi<br>Tekstitys: ruotsi</p><p>Vapaa pääsy. Paikkoja rajoitetusti.</p><p>Elokuva esitetään Annantalon auditoriossa.</p>", "sv": "<p>Den underbara Min Granne Totoro!</p><p>Totoros nostalgiska, naturnära värld från 1930-talets Showa i Japan och berättelsen om systrarna som flyttar in i ett nytt hus samt de magiska varelserna som lever i den närliggande skogen innehåller flera centrala teman i Miyazakis produktion.</p><p>Åldersgräns: Tillåten för alla åldrar<br>Längd: 1 h 26 min. <br>Språk: finska<br>Textning: svenska</p><p>Fritt inträde. Begränsat antal platser tillgängliga.</p>", "en": "<p>The adorable My Neighbor Totoro!</p><p>The nostalgic world of Totoro, set in the 1930s Shōwa era Japan, and the story of the sisters who move into a new house and the magical furballs that live in the nearby forest, contains many of the themes that have been central to Miyazaki's work.</p><p>Age rating: G<br>Duration: 1 h 26 min <br>Language: Finnish<br>Subtitles: Swedish</p><p>Free entry. Limited availability.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/76B0814531C09E212295D931BF55894C/Lomakino_Naapurini_Totoro_S_", "sv": "http://www.annantalo.fi/sv/evenemang/event/76B0814531C09E212295D931BF55894C/Lomakino_Min_Granne_Totoro_S_", "en": "http://www.annantalo.fi/en/events/event/76B0814531C09E212295D931BF55894C/Holiday_cinema_Naapurini_Totoro_S_" }, "name": { "fi": "Lomakino: Naapurini Totoro (S)", "sv": "Lomakino: Min Granne Totoro (S)", "en": "Holiday cinema: Naapurini Totoro (S)" }, "location_extra_info": null, "short_description": { "fi": "Iki-ihana Naapurini Totoro!", "sv": "Den underbara Min Granne Totoro!", "en": "The adorable My Neighbor Totoro!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66851/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6fz2uuq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-14T12:22:52.198889Z", "last_modified_time": "2025-10-14T12:22:52.198907Z", "date_published": "2025-10-14T12:22:00Z", "start_time": "2025-12-13T11:00:00Z", "end_time": "2025-12-13T13: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, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6fz2uuq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6fz2vqm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490114, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T10:25:06.430379Z", "last_modified_time": "2025-08-13T10:25:06.430393Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2d081ebb-7a3c-493c-9385-ce2d3df7354b.jpg", "cropping": "315,0,1125,810", "photographer_name": "Laura H / Silent Book Club", "alt_text": "Taustalla rauhallinen huone, etualalla Silent Book Clubin logo ja teksti Tapiolan kirjasto", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-14T12:22:29.160620Z", "last_modified_time": "2025-10-14T12:22:29.160639Z", "date_published": "2025-10-14T12:21:00Z", "start_time": "2025-11-08T11:00:00Z", "end_time": "2025-11-08T13: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, "description": { "fi": "<p>Ohjelma</p><p>13:00-13:30 - Saapuminen, kerro muille, mitä olet lukemassa</p><p>13:30-14:30 - Hiljainen lukutunti</p><p>14:30-15:00 - Jatka lukemista, tai keskustele kirjoista yhdessä</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Program:</p><p>13:00-13:30 - Ankomst, berätta för övriga deltagare vad du läser</p><p>13:30-14:30 - En timme tyst läsning</p><p>14:30-15:00 - Fortsätt läsa eller diskutera böckerna tillsammans med andra</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Program</p><p>1:00-1:30pm - Arrival, share what you are reading</p><p>1:30-2:30pm - Quiet reading hour</p><p>2:30-3:00pm - Optional socializing, or just keep reading</p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://silentbook.club/", "sv": "https://silentbook.club/", "en": "https://silentbook.club/" }, "name": { "fi": "Hiljainen lukupiiri Tapiolan kirjasto", "sv": "Tyst bokcirkel Hagalunds bibliotek", "en": "Silent Book Club Tapiola Library" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "short_description": { "fi": "1. Kerro muille, mitä olet lukemassa\n2. Hiljainen lukutunti\n3. Jatka lukemista, tai keskustele kirjoista yhdessä", "sv": "1. Berätta för övriga deltagare vad du läser\n2. En timme tyst läsning\n3. Fortsätt läsa eller diskutera böckerna tillsammans med andra", "en": "1. Share what you are reading\n2. Quiet reading hour\n3. Optional socializing, or just keep reading" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6fz2vqm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6fz2wfa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491097, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-14T12:20:51.872204Z", "last_modified_time": "2025-10-14T12:20:51.872222Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/29a9da81-46ca-44e5-becd-fc71b045b494.jpg", "cropping": "160,0,441,280", "photographer_name": "", "alt_text": "Kuvassa on piirretty perhe", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491097/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-14T12:19:33.027774Z", "last_modified_time": "2025-10-14T12:21:04.130661Z", "date_published": null, "start_time": "2025-10-19T10:00:00Z", "end_time": "2025-10-19T11: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, "description": { "fi": "<p>Liity mukaan family Encounters-perhetapahtumaan, jossa juhlistetaan hindin kielen kauneutta ja jaetaan nostalgisia rytmejä. Tapahtuman järjestää Bihar Jharkhand Finland -yhteisö osana Family Encounters -projektia yhteistyössä Kulttuurikeskus Ninho ry:n, Lippulaiva-kirjaston ja Moniheli ry:n kanssa.</p><p><br></p><p>Liity vauvojen, pikkulasten vanhempien ja raskaana olevien äitien joukkoon ja tutustu hindin kieleen, rytmeihin ja yhteishenkeen!</p><p><br></p><p>Luvassa:</p><ul><li>Perheille sopivia aktiviteetteja hindiksi</li><li>Suosikki kehtolauluja ja tarinoita</li><li>Hymyjä, lauluja ja yhteisiä muistoja</li><li>Hauskanpitoa ja oppimista</li></ul><p>Ilmoittaudu mukaan täällä: <a href=\"https://forms.gle/UCk2LNzsgTNj1GjF7\">https://forms.gle/UCk2LNzsgTNj1GjF7</a></p>", "en": "<p>Another proud moment for the Bihar Jharkhand Finland community as we come together to promote the Hindi language — this time, especially for toddlers and their families.</p><p>About the event -</p><p>Join us for a family-friendly afternoon for toddlers/young ones celebrating the beauty of Hindi Language and sharing the piece of nostalgic rhytms, Brought to you by Bihar Jharkhand Finland community, as part of the Family Encounters Project, in collaboration with Kulttuurikeskus Ninho ry. , Lippulaiva Library and Funded by Moniheli ry .</p><p>Join babies, parents with toddlers, pregnant moms, and explore Hindi language, rhythms, and share togetherness!</p><p><br></p><p>What’s in store:</p><ul><li>Family-friendly activities in Hindi</li><li>Our favourite childhood lullabies and stories</li><li>Smiles, songs, and shared memories</li><li>A beautiful blend of fun, learning, and reconnecting with our roots</li></ul><p><br></p><p>Fill out the form to register -</p><p><a href=\"https://forms.gle/UCk2LNzsgTNj1GjF7 Thanks Archana Pandey\">https://forms.gle/UCk2LNzsgTNj1GjF7 </a></p><p>Thanks Archana Pandey</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Family encounters-perhetapahtuma englanniksi & hindiksi", "en": "Family encounters - A celebration of Hindi language, lullabies & togetherness" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "short_description": { "fi": "Tervetuloa mukaan Family Encounters-perhetapahtumaan sunnuntaina 19.10. klo 13-14", "en": "Come and join us at the Family Encounters family event in Hindi and english on sunday 19.10. from 13-14" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6fz2wfa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22gype", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gspm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gs4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gtjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gtvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gucq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22guou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gu6a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gvzq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gwga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gwsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gw6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gxli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gxxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gydq/?format=api" } ], "images": [ { "id": 1490152, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-18T07:26:22.260988Z", "last_modified_time": "2025-06-18T07:26:22.261002Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0edb910a-42c4-4141-85f4-06eda0105f9d.jpg", "cropping": "712,0,3560,2848", "photographer_name": "", "alt_text": "Ukulele group", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490152/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-18T07:56:32.636461Z", "last_modified_time": "2025-10-14T11:12:59.937561Z", "date_published": null, "start_time": "2025-09-01T14:00:00Z", "end_time": "2025-12-08T16:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tervetuloa soittamaan ukulelea!</p><p>Tässä ryhmässä soitamme suomen- ja englanninkielisiä lauluja ja opettelemme komppaamista, näppäilyä, melodiansoittoa sekä muita hauskoja ukulelen soittotekniikoita.</p><p>Ryhmälle on tärkeätä yhteisöllisyys sekä musiikin soittamisesta syntyvä ilo. Ryhmä esiintyy pari kertaa vuodessa kaupunginkirjaston ukuleleryhmien kevät- ja joulukonserteissa. Ryhmä käy myös säännöllisesti palvelukeskuksissa laulamassa ja soittamassa yhdessä seniorien kanssa.</p><p>HUOM! 20.10 Ei tuntia (Ryhmä esiintyy palvelukeskuksessa)</p>", "en": "<p>Welcome to play the ukulele!</p><p>In this group, we play Finnish and English songs and learn strumming, finger-picking, melody playing and other fun ukulele playing techniques.</p><p>Community spirit and the joy of playing music together are important values to the group. The group performs a couple of times a year at the Espoo city library. The group also regularly visits Service Centers to sing and play together with seniors.</p><p>Please NOTE! No class on 20.10. (The group performs in an elderly care center)</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Ukulele edistyneiden ryhmä", "en": "Ukulele Advanced Group" }, "location_extra_info": { "fi": "Tapahtumatila Heikki" }, "short_description": { "fi": "Tervetuloa soittamaan ukulelea!", "en": "Welcome to play the ukulele!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22gype/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm4r4bxce", "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:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491066, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-09T10:39:39.881484Z", "last_modified_time": "2025-10-09T10:39:39.881501Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/76a785fc-9d2f-4af8-95a9-a53e16591b5c.JPG", "cropping": "1000,0,5000,4000", "photographer_name": "Elif Huttunen", "alt_text": "kaksi nuorisovaltuuston jäsentä kävelee kuvaajasta pois päin, nuorisovaltuuston hupparit selässä jossa lukee nuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491066/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-09T12:01:42.861962Z", "last_modified_time": "2025-10-14T09:52:30.270671Z", "date_published": null, "start_time": "2025-10-29T15:00:00Z", "end_time": "2025-10-29T16: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, "description": { "fi": "Nuorisovaltuustovaalien vaalipaneeli<p><strong>Nuorisovaltuustovaalien vaalipaneeli Sellon kirjaston lavalla keskiviikkona 29.10.2025 klo 17.00</strong></p><p>Nuorisovaltuustovaalien vaalipaneeli on tilaisuus, jossa osa nuorisovaltuustovaaliehdokkaista esittäytyy ja osallistuu keskusteluun ajankohtaisista nuoria koskettavista aiheista. Paneelin tavoitteena on tarjota äänestäjille mahdollisuus tutustua ehdokkaisiin, heidän mielipiteisiinsä ja näkemyksiinsä eri teemoista ennen vaaleja. </p><p>Hei nuori, tule paikalle kuuntelemaan ja tutustumaan ehdokkaisiin ennen äänestysajan alkamista, paneelin tarkoituksena on auttaa tekemään perusteltuja äänestyspäätöksiä. Samalla se rohkaisee avoimeen keskusteluun ja tuo esiin nuorten omaa ääntä,</p><p><strong>Juontajana paneelissa toimii nuorisovaltuutettu Max Höglund.</strong></p><p> </p><p><strong>Vaalien aikataulu:</strong></p><p> Vaalityötä 20.9.-2.11.2025</p><p> Äänestysaika 3.11.-21.11.2025</p><p> Tulosten julkistaminen 5.12.2025</p>", "sv": "Valpanel för ungdomsfullmäktigevalet<p><strong>Valpanelen för ungdomsfullmäktigevalet ordnas på Sellobibliotekets scen onsdag 29.10.2025 kl. 17.00</strong></p><p>Valpanelen för ungdomsfullmäktigevalet är en tillställning där en del av kandidaterna i valet presenterar sig och deltar i en diskussion om aktuella frågor som berör unga. Panelens mål är att ge väljarna möjlighet att bli bekanta med kandidaterna och deras åsikter om olika frågor före valet. </p><p>Hej, du som är ung! Kom till Sellobiblioteket för att lyssna på och bli bekant med kandidaterna innan röstningstiden börjar. Panelen kan hjälpa dig att fatta motiverade röstningsbeslut. Samtidigt uppmuntrar panelen till en öppen diskussion och lyfter fram ungdomarnas egen röst.</p><p><strong>Ledare för panelen är Max Höglund, som är medlem i ungdomsfullmäktige.</strong></p><p><strong> Valschema:</strong></p><p> Valarbete 20.9–2.11.2025</p><p> Röstning 3.11–21.11.2025</p><p> Valresultaten publiceras 5.12.2025</p>", "en": "Discussion Panel for the City of Espoo’s Youth Council Election<p><strong>The Youth Council Elections Discussion Panel will take place on the stage at Sello Library, on Wednesday the 29th of October at 17:00.</strong></p><p>The discussion panel is an opportunity for Youth Council Election candidates to introduce themselves, and to partake in a discussion regarding current issues affecting young people in the City of Espoo. This event gives voters the chance to get to know the candidates, and their views and opinions on various topics before the elections take place and helps them to make informed voting decisions in the upcoming elections. The discussion panel will be hosted by current Youth Councillor Max Höglund.</p><p>Come and take this opportunity to meet with the candidates, and to partake in lively discussion regarding youth issues in Espoo!</p><p> </p><p>Election timetable:</p><p>Campaign period: From 20.9 until 2.11.2025</p><p>Voting period: From 3.11 until 21.11.2025</p><p>Announcement of Election Results: 5.12.2025.</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/tietoa-nuorisovaltuustovaaleista#nestys-77871", "sv": "https://www.espoo.fi/sv/information-om-ungdomsfullmaktigevalet#rsta-i-valet-77871", "en": "https://www.espoo.fi/en/information-about-youth-council-election#voting-77871" }, "name": { "fi": "Nuorisovaltuustovaalien vaalipaneeli", "sv": "Valpanel för ungdomsfullmäktigevalet ", "en": "Discussion Panel for the City of Espoo’s Youth Council Election" }, "location_extra_info": { "fi": "Lava", "sv": "Lava", "en": "Lava" }, "short_description": { "fi": "Nuorisovaltuustovaalien vaalipaneeli Sellon kirjaston lavalla", "sv": "Valpanelen för ungdomsfullmäktigevalet ordnas på Sellobibliotekets scen ", "en": "The Youth Council Elections Discussion Panel will take place on the stage at Sello Library" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm4r4bxce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmqkprkxa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491095, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-14T09:44:11.667105Z", "last_modified_time": "2025-10-14T09:44:11.667120Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/7cb0169c-e6d7-4a92-948d-0232eea27194.png", "cropping": "470,0,1510,1040", "photographer_name": "", "alt_text": "Kuvassa Hanna Tinkander", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491095/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-01T12:12:36.739023Z", "last_modified_time": "2025-10-14T09:45:59.490454Z", "date_published": null, "start_time": "2025-10-29T11:00:00Z", "end_time": "2025-10-29T16: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, "description": { "fi": "<p>Tarvitsetko sinä tai läheisesi apua päihde- ja mielenterveyskysymyksissä? Haluatko muuten lisätä tietoasi aiheesta? Tule tutustumaan päihde- ja mielenterveysalan järjestöjen apu- ja tukimuotoihin sekä päihde- ja mielenterveyspalveluiden toimintaan ke 29.10.2025 klo 13–18 Espoon Lippulaivan kirjastoon!</p><p>Espoon Lippulaivan kirjaston (Espoonlahdenkatu 8) monitoimitila Salongissa voit tutustua järjestöissä tarjolla oleviin apu- ja tukimuotoihin sekä päihde- ja mielenterveyspalveluiden toimintaan. Lisäksi tapahtumassa jaetaan tietoa päihde- ja mielenterveysongelmien ennaltaehkäisystä, stigmojen vähentämisestä sekä tehdään kansalaiskyselyä palveluiden ja järjestötyön kehittämistarpeista.</p><p>Klo 17:00 Hanna Tikander: Selvin päin – oma tarina, tuki ja toivo</p><p>Hanna Tikander on yksi sukupolvensa tunnetuimmista äänenkäyttäjistä ja tarinankertojista selvän elämän tiimoilta. Hän jakaa puheenvuorossaan oman kokemustarinansa päihteettömyydestä ja siitä, minkälainen apu ja tuki ovat olleet hänen matkallaan merkityksellisiä.</p><p>Hanna puhuu avoimesti myös stigman rikkomisesta: siitä, miksi hän päätti kertoa julkisesti omasta matkasta ja miltä se on tuntunut. Puheenvuoron ytimessä on ajatus, että päihteistä ja mielenterveydestä voidaan ja pitää puhua – ja että monilla meistä on enemmän yhteistä kuin uskommekaan.</p><p>Tapahtuma on maksuton ja avoin kaikille aiheesta kiinnostuneille. Ennakkoilmoittautumista ei tarvita. Tapahtuman järjestää A-klinikkasäätiö, Espoon kirjasto ja Länsi-Uudenmaan hyvinvointialue yhteistyössä muiden tapahtumaan osallistuvien toimijoiden kanssa.</p><p><br></p><p>Lisätietoja:</p><p>Tiina Saarinen, kehittämispäällikkö, Järjestölähtöisen päihdetyön kehittäminen,</p><p>A-klinikkasäätiö, tiina.saarinen[at]a-klinikkasaatio.fi, p. 050 5671173</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Päihde- ja mielenterveystyön kansalaistapahtuma Espoon Lippulaivan kirjastossa" }, "location_extra_info": { "fi": "Salonki" }, "short_description": { "fi": "Tule tutustumaan päihde- ja mielenterveysalan järjestöjen apu- ja tukimuotoihin sekä päihde- ja mielenterveyspalveluiden toimintaan!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkprkxa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmwdovi2m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46348/?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/espoo_le:agggfz66w4/?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:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490844, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-19T10:36:58.798556Z", "last_modified_time": "2025-09-19T10:36:58.798571Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Tausta: Elena Photo", "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-19T10:50:04.301604Z", "last_modified_time": "2025-10-14T09:37:03.211186Z", "date_published": "2025-09-19T10:46:00Z", "start_time": "2025-10-17T10:00:00Z", "end_time": "2025-10-17T11: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, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025. </p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille! </p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "name": { "fi": "Syysdösä Välkky Leppävaaran Angry Birds -puistossa", "sv": "Syysdösä Välkky: Angry Birds-parken i Alberga", "en": "Syysdösä Välkky: Angry Birds Park in Leppävaara" }, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovi2m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmwdovjz4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/osoite:m%C3%A4enalus_2_espoo/?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:agggfz67ta/?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:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490844, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-19T10:36:58.798556Z", "last_modified_time": "2025-09-19T10:36:58.798571Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Tausta: Elena Photo", "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-19T10:46:32.725904Z", "last_modified_time": "2025-10-14T09:36:02.964914Z", "date_published": "2025-09-19T10:42:00Z", "start_time": "2025-10-15T10:00:00Z", "end_time": "2025-10-15T11: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, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025. </p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille! </p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "name": { "fi": "Syysdösä Välkky Lakisto / Rinnekoti", "sv": "Syysdösä Välkky: Lakisto / Rinnekoti", "en": "Syysdösä Välkky: Lakisto / Rinnekoti" }, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovjz4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmwdovkm4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:74810/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?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:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "extlink_facebook", "link": "https://www.facebook.com/EspoonKirjastoautot/", "language": "fi" }, { "name": "extlink_instagram", "link": "https://www.instagram.com/espoonkirjastoautot", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490844, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-19T10:36:58.798556Z", "last_modified_time": "2025-09-19T10:36:58.798571Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/baa8ba71-49d1-4cbe-9fb9-7b9272ccf852.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Tausta: Elena Photo", "alt_text": "Piirroskuva kirjastoauto Välkystä syksyisellä metsätiellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490844/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-09-19T10:42:35.927654Z", "last_modified_time": "2025-10-14T09:34:00.956193Z", "date_published": "2025-09-19T10:41:00Z", "start_time": "2025-10-14T10:00:00Z", "end_time": "2025-10-14T11: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, "description": { "fi": "<p>Kirjasto- ja kulttuuriauto Välkky on Syysdösä!</p><p>Välkky kiertää ympäri Espoota syyslomaviikolla 13.-17.10.2025. </p><p>Mukana on aina kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille! </p><p>Nähdään Välkyssä!</p><p><br></p><p>Kirjastoautosta voit lainata kirjoja Helmet-kirjastokortilla, kirjat voi palauttaa mihin tahansa Helmet-kirjastoon. Mikäli sinulla ei vielä ole korttia, teemme sen sinulle, ota mukaan henkilöllisyystodistus.</p>", "sv": "<p>Välkky rullar runt i Esbo under höstlovsveckan 13–17.10.2025.</p><p>Med finns alltid böcker för alla åldrar och roligt program för barnfamiljer!</p><p>Vi ses i Välkky!</p><p>Du kan låna böcker från bibbabussen med ditt Helmet-bibliotekskort, och böckerna kan returneras till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>Välkky will be touring around Espoo during the autumn break week, October 13–17, 2025.</p><p>There will always be books for all ages and fun activities for families with children!</p><p>See you in Välkky!</p><p>You can borrow books from the library bus with your Helmet library card, and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "name": { "fi": "Syysdösä Välkky Syvänsalmenpuiston leikkipaikalla", "sv": "Syysdösä Välkky: Djupsundsparken lekplats", "en": "Syysdösä Välkky: Syvänsalmi Park Playground" }, "location_extra_info": { "fi": "Espoon Kirjasto- ja kulttuuriauto Välkky", "sv": "Esbos bok- och kultur bus Välkky", "en": "Espoos' book and culture bus Välkky" }, "short_description": { "fi": "Kirjasto- ja kulttuuriauto Välkky kiertää syyslomalla Espoota, mukana kirjoja kaiken ikäisille ja hauskaa puuhaa lapsiperheille!", "sv": "Esbobibliotekens bok- och kultur bus Välkky turnerar i Esbo under höstlöv. Med finns böcker för alla åldrar och roliga aktiviteter för barnfamiljer!", "en": "Espoo Libraries' book and culture bus Välkky is touring Espoo in the Autumn holiday. There are books for all ages and fun activites for families! " }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmwdovkm4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67133", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491087, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-14T09:14:00.860304Z", "last_modified_time": "2025-10-14T09:14:00.860321Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778129.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491087/?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": "2025-10-14T09:14:00.698917Z", "last_modified_time": "2025-10-14T09:14:01.070314Z", "date_published": null, "start_time": "2025-10-31T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Malmisalissa tanssitaan ja pidetään hauskaa hurjan jännittävässä Halloween-tunnelmassa pyhäinpäivän aattona!</p><p>DJ Elviksen äiti laittaa musiikin soimaan ja huolehtii, että tanssilattialla riittää jorattavaa. Kello 17–18 diskoilu sopii 1.–3.-luokkalaisille ja kello 18.30–19.30 disko soveltuu parhaiten 4.–6.-luokkalaisille.<br> <br>Tapahtuman aikana voit myös käydä taikamaalari Hertta-Bertan luona ottamassa hienon Halloween-teemaisen kasvomaalauksen ja mukana on myös muuta pientä puuhaa, joka sopii illan hirviömäisen kivaan tunnelmaan.<br> <br>Ikäsuositus: klo 17–19 noin 7–9-vuotiaille ja klo 18–20 noin 9–12-vuotiaille</p>", "en": "<p>Join us for dancing and having fun in a thrilling spooky Halloween atmosphere during All Saints’ Day!</p><p>DJ Elviksen äiti will be spinning the tunes and keeping the dance floor lively all evening. From 17:00 to 18:00, the disco is best suited for 1st–3rd graders, and from 18:30 to 19:30, the sets are tailored for 4th–6th graders.<br>During the event, you can also visit the magic painter Hertta-Bertta for a brilliant Halloween-themed face painting, and there’ll be other small activities to match the delightfully monstrous mood of the evening.</p><p>Recommended ages: 17–19 for around 7–9-year-olds, and 18–20 for around 9–12-year-olds.</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C14853FB345C5A45A1A7EE937F0C5771/Lasten_Halloween_disko", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C14853FB345C5A45A1A7EE937F0C5771/Lasten_Halloween_disko", "en": "http://www.malmitalo.fi/en/events/event/C14853FB345C5A45A1A7EE937F0C5771/Children_s_Halloween_Disco" }, "name": { "fi": "Lasten Halloween disko", "sv": "Lasten Halloween disko", "en": "Children’s Halloween Disco" }, "location_extra_info": null, "short_description": { "fi": "Malmisalissa tanssitaan ja pidetään hauskaa hurjan jännittävässä Halloween-tunnelmassa pyhäinpäivän aattona!", "en": "Join us for dancing and having fun in a thrilling spooky Halloween atmosphere during All Saints’ Day!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67133/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66403", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T12:14:05.350370Z", "last_modified_time": "2025-08-26T12:14:05.350386Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774072.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490524/?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": "2025-08-26T12:14:05.228888Z", "last_modified_time": "2025-10-14T09:13:56.825203Z", "date_published": null, "start_time": "2025-10-16T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!</p><p>Teinityttö Rileyn päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet Rileyn mieltä hyvällä menestyksellä, eivät tiedä, mitä pitäisi ajatella, kun kuvioihin ilmestyvät Ahdistus, Kateus, Ennui ja Nolous.</p><p>Elokuvassa käsitellään tunnetiloja 13-vuotiaan Rileyn näkökulmasta ja niiden aiheuttamia isoja muutoksia, niin sisäisiä kuin ulkoisiakin. Kun mikään ei huvita ja vanhemmat ovat tyhmiä eivätkä ymmärrä mitään. Kun haluaisi vielä “pikaisesti” mennä syliin, mutta samalla haluaa olla iso ja itsenäinen.</p><p>Yksinäisyyden tunne, kelpaamattomuuden tunne, pelko siitä, että kukaan ei välitä. Ei ainakaan kukaan sellainen, johon haluaisi tehdä vaikutuksen. Tunteita, jotka varmasti jokainen on joskus kohdallaan kokenut. (Lähde: Koulukino)</p><p>Disneyn ja Pixarin elokuvan Inside Out - mielen sopukoissa 2 on ohjannut Kelsey Mann ja tuottanut Mark Nielsen.</p><p>Kesto: 1 tunti 37 min<br>Ikäsuositus: yli 7-vuotiaille<br>Kieli: puhuttu suomeksi, ei tekstitystä</p>", "sv": "<p>På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!</p><p>I tonårsflickan Rileys huvudkvarter pågår en stor skrotning för att ge plats åt en oväntad överraskning: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky som länge har drivit Rileys huvud med god framgång, vet inte vad man ska tänka när Ängsla, Pinsamhet, Avund och Ennui dyker upp.</p><p>I filmen behandlas känslorna ur den 13-åriga Rileys perspektiv och de stora förändringar som dessa orsakar, såväl på insidan som på utsidan. När inget lockar och föräldrarna är dumma och inte förstår. När man ännu ”snabbt” vill sitta i famnen, men samtidigt vill man vara stor och självständigt.</p><p>Känslan av ensamhet, att man inte duger, rädslan för att ingen bryr sig. Åtminstone ingen sådan som man vill imponera på. Känslor som säkert alla någon gång har upplevt. (Källa: Koulukino)</p><p>Disneys och Pixars film Insidan ut 2 har regisserats av Kelsey Mann och producerats av Mark Nielsen.</p><p>Längd: 1 h 37 min.<br>Åldersrekommendation: barn över 7 år<br>Språk: finsk dubbat</p>", "en": "<p>By popular demand, Malmitalo presents the movie Inside Out 2!</p><p>In teenager Riley's headquarters, a massive cleanup operation begins to make room for an unexpected surprise: new emotions! Joy, Sadness, Anger, Fear and Disgust, who have long managed Riley's mind quite successfully, are baffled when Anxiety, Envy, Ennui and Shame show up.</p><p>The film explores the emotional world from 13-year-old Riley's perspective and the big changes these feelings bring, both inside and out. When nothing's fun anymore, parents seem clueless and cannot understand anything. When you want to be held \"just briefly\" but, at the same time, to be big and independent.</p><p>Feelings of loneliness, not fitting in and fear that no one cares. At least no one you want to impress. Emotions everyone must have faced at some point. (Source: Koulukino)</p><p>Disney and Pixar's Inside Out 2 is directed by Kelsey Mann and produced by Mark Nielsen.</p><p>Duration: 1 hour 37 min<br>Recommended age: 7 and older<br>Language: dubbed in Finnish, no subtitles</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/900086A494B4E5FB7407972A5E37A733/Syyslomaleffa_Inside_Out_2", "sv": "http://www.malmitalo.fi/sv/evenemang/event/900086A494B4E5FB7407972A5E37A733/Syyslomaleffa_Insidan_ut_2_7_", "en": "http://www.malmitalo.fi/en/events/event/900086A494B4E5FB7407972A5E37A733/Syyslomaleffa_Inside_Out_2_7_" }, "name": { "fi": "Syyslomaleffa: Inside Out 2", "sv": "Syyslomaleffa: Insidan ut 2 (7)", "en": "Syyslomaleffa: Inside Out 2 (7+)" }, "location_extra_info": null, "short_description": { "fi": "Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!", "sv": "På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!", "en": "By popular demand, Malmitalo presents the movie Inside Out 2!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66403/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66402", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490523, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T12:14:04.789745Z", "last_modified_time": "2025-08-26T12:14:04.789768Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774071.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490523/?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": "2025-08-26T12:14:04.606169Z", "last_modified_time": "2025-10-14T09:13:56.611931Z", "date_published": null, "start_time": "2025-10-16T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!</p><p>Teinityttö Rileyn päämajassaan käynnistyy suuri romutusurakka, jolla tehdään tilaa odottamattomalle yllätykselle: uusille tunteille! Ilo, Suru, Kiukku, Pelko ja Inho, jotka ovat pitkään pyörittäneet Rileyn mieltä hyvällä menestyksellä, eivät tiedä, mitä pitäisi ajatella, kun kuvioihin ilmestyvät Ahdistus, Kateus, Ennui ja Nolous.</p><p>Elokuvassa käsitellään tunnetiloja 13-vuotiaan Rileyn näkökulmasta ja niiden aiheuttamia isoja muutoksia, niin sisäisiä kuin ulkoisiakin. Kun mikään ei huvita ja vanhemmat ovat tyhmiä eivätkä ymmärrä mitään. Kun haluaisi vielä “pikaisesti” mennä syliin, mutta samalla haluaa olla iso ja itsenäinen.</p><p>Yksinäisyyden tunne, kelpaamattomuuden tunne, pelko siitä, että kukaan ei välitä. Ei ainakaan kukaan sellainen, johon haluaisi tehdä vaikutuksen. Tunteita, jotka varmasti jokainen on joskus kohdallaan kokenut. (Lähde: Koulukino)</p><p>Disneyn ja Pixarin elokuvan Inside Out - mielen sopukoissa 2 on ohjannut Kelsey Mann ja tuottanut Mark Nielsen.</p><p>Kesto: 1 tunti 37 min<br>Ikäsuositus: yli 7-vuotiaille<br>Kieli: puhuttu suomeksi, ei tekstitystä</p>", "sv": "<p>På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!</p><p>I tonårsflickan Rileys huvudkvarter pågår en stor skrotning för att ge plats åt en oväntad överraskning: nya känslor! Glädje, Vemod, Ilska, Rädsla och Avsky som länge har drivit Rileys huvud med god framgång, vet inte vad man ska tänka när Ängsla, Pinsamhet, Avund och Ennui dyker upp.</p><p>I filmen behandlas känslorna ur den 13-åriga Rileys perspektiv och de stora förändringar som dessa orsakar, såväl på insidan som på utsidan. När inget lockar och föräldrarna är dumma och inte förstår. När man ännu ”snabbt” vill sitta i famnen, men samtidigt vill man vara stor och självständigt.</p><p>Känslan av ensamhet, att man inte duger, rädslan för att ingen bryr sig. Åtminstone ingen sådan som man vill imponera på. Känslor som säkert alla någon gång har upplevt. (Källa: Koulukino)</p><p>Disneys och Pixars film Insidan ut 2 har regisserats av Kelsey Mann och producerats av Mark Nielsen.</p><p>Längd: 1 h 37 min.<br>Åldersrekommendation: barn över 7 år<br>Språk: dubbad på finska</p>", "en": "<p>By popular demand, Malmitalo presents the movie Inside Out 2!</p><p>In teenager Riley's headquarters, a massive cleanup operation begins to make room for an unexpected surprise: new emotions! Joy, Sadness, Anger, Fear and Disgust, who have long managed Riley's mind quite successfully, are baffled when Anxiety, Envy, Ennui and Shame show up.</p><p>The film explores the emotional world from 13-year-old Riley's perspective and the big changes these feelings bring, both inside and out. When nothing's fun anymore, parents seem clueless and cannot understand anything. When you want to be held \"just briefly\" but, at the same time, to be big and independent.</p><p>Feelings of loneliness, not fitting in and fear that no one cares. At least no one you want to impress. Emotions everyone must have faced at some point. (Source: Koulukino)</p><p>Disney and Pixar's Inside Out 2 is directed by Kelsey Mann and produced by Mark Nielsen.</p><p>Duration: 1 hour 37 min<br>Recommended age: 7 and older<br>Language: Finnish dubbed</p>" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1FADD621D160D69BB9A4DBDF7B5D8382/Syyslomaleffa_Inside_Out_2", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1FADD621D160D69BB9A4DBDF7B5D8382/Syyslomaleffa_Insidan_ut_2_7_", "en": "http://www.malmitalo.fi/en/events/event/1FADD621D160D69BB9A4DBDF7B5D8382/Syyslomaleffa_Inside_Out_2_7_" }, "name": { "fi": "Syyslomaleffa: Inside Out 2", "sv": "Syyslomaleffa: Insidan ut 2 (7)", "en": "Syyslomaleffa: Inside Out 2 (7+)" }, "location_extra_info": null, "short_description": { "fi": "Yleisön pyynnöstä Malmitalossa nähdään elokuva Inside Out - mielen sopukoissa 2!", "sv": "På begäran av allmänheten ses filmen Insidan ut 2 på Malms kulturhus!", "en": "By popular demand, Malmitalo presents the movie Inside Out 2!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66402/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z7t7u", "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/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7xuu/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:41:28.628680Z", "last_modified_time": "2025-01-30T08:53:02.449159Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0b77eee3-7b76-4897-ba24-d739cdd915b9.jpg", "cropping": "280,0,1000,720", "photographer_name": "Ali Al-Zaini", "alt_text": "Kuvassa on kuvitettu lasten avonainen satukirja, joka on muuntautunut mereksi. Meressä seilaa lapsi purjeveneellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490116/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-27T06:47:49.869117Z", "last_modified_time": "2025-10-14T07:09:47.323443Z", "date_published": null, "start_time": "2025-10-14T14:30:00Z", "end_time": "2025-10-14T15: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, "description": { "fi": "<p>Tervetuloa rakkaat pienet lapset arabiankieliselle satuhetkelle. Sukellamme seikkailujen, mielikuvituksen ja unelmien maailmaan. Sanaa kertoo sinulle satuja joka tiistai Jaminurkassa klo 17:30</p><p><br></p><p>Kuva: Ali Al-Zaini</p>", "sv": "<p>Välkommen Det är sagostund på arabiska för våra älskade småttingar. Vi kommer att dyka in i en värld av äventyr, fantasi och drömmar. Sanaa berättar för dig varje tisdag. kl. 17:30.</p><p><br></p><p>Foto: Ali Al-Zaini</p>", "en": "<p>Welcome It's storytime in Arabic for our beloved little ones. We will dive into the world of adventures, imagination and dreams. It will be narrated to you by Sanaa every Tuesday at 17:30.</p><p><br></p><p>Photo: Ali Al-Zaini</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "PERUTTU: Arabiankielinen satuhetki", "sv": "AVBRUTEN: Sagostund på arabiska", "en": "CANCELLED: Storytime in Arabic" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "Arabiankielinen satuhetki", "sv": "Sagostund på arabiska", "en": "Storytime in Arabic" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z7t7u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6dg4us4", "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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490782, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-15T10:00:06.281725Z", "last_modified_time": "2025-09-15T10:00:06.281744Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/6e4f8c8f-a026-4b6d-b5a1-bad0ba4b4787.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Sabrina Bqain", "alt_text": "Kirjailija Loviisa Pihlajakoski katsoo kameraan ja nojaa käteensä, hänellä on valkoinen neule. Vieressä kuva hänen kirjastaan Sairastapauksia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490782/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-14T06:58:01.428301Z", "last_modified_time": "2025-10-14T06:58:43.806826Z", "date_published": null, "start_time": "2025-10-22T15:00:00Z", "end_time": "2025-10-22T16: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, "description": { "fi": "<p>”Terveys on nyt yhtä kuin toimintakyky, ja toimintakyky yhtä kuin ihminen. Sairastapauksia on tähän nähden hyvin ajassa kiinni. Novellikokoelma on hyvä alusta erilaisten kertojien kokeiluun. Loviisa Pihlakoskella tämä on hallussa.” – Helsingin Sanomat</p><p><br></p><p><strong>Loviisa Pihlakosken</strong> esikoisnovellikokoelma <strong>Sairastapauksia </strong>(Siltala, 2025) kysyy, mitä itsessämme ja elämässämme piilottelemme. Tarinoissa eletään sairauden ja kuoleman varjossa, mutta traagisten aiheiden seassa kukkii myös huumori.</p><p>Loviisa Pihlakoski (s. 1991) on espoolainen filosofian maisteri, joka on opiskellut suomen kieltä ja kotimaista kirjallisuutta Helsingin yliopistossa sekä kirjoittamista Kriittisessä korkeakoulussa.</p><p>Pihlakoskea haastattelee kirjastosta Atte Hokkanen.</p>", "sv": "<p><strong>Loviisa Pihlakoski</strong>s debutnovellsamling <strong>Sairastapauksia </strong>(Siltala, 2025) ställer frågan: vad gömmer vi inom oss och i våra liv? Berättelserna utspelar sig i sjukdomens och dödens skugga, men mitt i det tragiska spirar också humor.</p><p>Loviisa Pihlakoski (f. 1991) är filosofie magister från Esbo. Hon har studerat finska språket och inhemsk litteratur vid Helsingfors universitet samt skrivande vid Kritiska högskolan.</p><p>Pihlakoski intervjuas på biblioteket av Atte Hokkanen.</p><p>venemanget är på finska.</p>", "en": "<p><strong>Loviisa Pihlakoski</strong>’s debut short story collection <strong>Sairastapauksia </strong>(Siltala, 2025) asks what we hide within ourselves and our lives. The stories unfold in the shadow of illness and death, yet humor blossoms amidst the tragic themes.</p><p>Loviisa Pihlakoski (b. 1991) is a Master of Arts from Espoo. She has studied Finnish language and literature at the University of Helsinki and creative writing at the Critical Academy.</p><p>Pihlakoski will be interviewed by a librarian Atte Hokkanen.</p><p>Event is in Finnish.</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kirjailijavieraana Loviisa Pihlakoski", "sv": "Författarbesök med Loviisa Pihlakoski", "en": "Author Guest: Loviisa Pihlakoski" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "short_description": { "fi": "Kirjailija Loviisa Pihlakoski vieraana Lippulaivan kirjastossa.", "sv": "Författaren Loviisa Pihlakoski gästar Lippulaiva bibliotek.", "en": "Author Loviisa Pihlakoski visiting Lippulaiva Library." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6dg4us4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6dg4vva", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-14T06:40:35.964101Z", "last_modified_time": "2025-10-14T06:40:35.964118Z", "date_published": null, "start_time": "2025-12-05T08:30:00Z", "end_time": "2025-12-05T09: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, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Tapiolan kirjasto (Heikki) tiistai 21.10 klo 10.30</li><li>Viherlaakson kirjasto perjantai 24.10 klo 10.30</li><li>Entressen kirjasto (Sininen huone) keskiviikko 29.10 klo 10.30</li><li>Nöykkiön kirjasto tiistai 4.11 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) perjantai 7.11 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 12.11 klo 10.30</li><li>Kauklahden kirjasto tiistai 18.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) perjantai 21.11 klo 10.30</li><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 2.12 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) perjantai 5.12 klo 10.30</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Vauvamuskari" }, "location_extra_info": { "fi": "Jaminurkka" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6dg4vva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6dg4v7e", "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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-14T06:39:58.955955Z", "last_modified_time": "2025-10-14T06:39:58.955973Z", "date_published": null, "start_time": "2025-12-02T08:30:00Z", "end_time": "2025-12-02T09: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, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Tapiolan kirjasto (Heikki) tiistai 21.10 klo 10.30</li><li>Viherlaakson kirjasto perjantai 24.10 klo 10.30</li><li>Entressen kirjasto (Sininen huone) keskiviikko 29.10 klo 10.30</li><li>Nöykkiön kirjasto tiistai 4.11 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) perjantai 7.11 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 12.11 klo 10.30</li><li>Kauklahden kirjasto tiistai 18.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) perjantai 21.11 klo 10.30</li><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 2.12 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) perjantai 5.12 klo 10.30</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Vauvamuskari" }, "location_extra_info": { "fi": "Nuortentila VOX" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6dg4v7e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6dg4wie", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-14T06:39:14.265692Z", "last_modified_time": "2025-10-14T06:39:14.265710Z", "date_published": null, "start_time": "2025-11-21T08:30:00Z", "end_time": "2025-11-21T09: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, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Tapiolan kirjasto (Heikki) tiistai 21.10 klo 10.30</li><li>Viherlaakson kirjasto perjantai 24.10 klo 10.30</li><li>Entressen kirjasto (Sininen huone) keskiviikko 29.10 klo 10.30</li><li>Nöykkiön kirjasto tiistai 4.11 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) perjantai 7.11 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 12.11 klo 10.30</li><li>Kauklahden kirjasto tiistai 18.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) perjantai 21.11 klo 10.30</li><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 2.12 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) perjantai 5.12 klo 10.30</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Vauvamuskari" }, "location_extra_info": { "fi": "Jukeboksi" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6dg4wie/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6dg4wqe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-14T06:38:09.710222Z", "last_modified_time": "2025-10-14T06:38:09.710238Z", "date_published": null, "start_time": "2025-11-18T08:30:00Z", "end_time": "2025-11-18T09: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, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Tapiolan kirjasto (Heikki) tiistai 21.10 klo 10.30</li><li>Viherlaakson kirjasto perjantai 24.10 klo 10.30</li><li>Entressen kirjasto (Sininen huone) keskiviikko 29.10 klo 10.30</li><li>Nöykkiön kirjasto tiistai 4.11 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) perjantai 7.11 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 12.11 klo 10.30</li><li>Kauklahden kirjasto tiistai 18.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) perjantai 21.11 klo 10.30</li><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 2.12 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) perjantai 5.12 klo 10.30</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Vauvamuskari" }, "location_extra_info": null, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6dg4wqe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6dg4wzm", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150326, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-12T09:43:27.503183Z", "last_modified_time": "2024-04-12T09:43:27.503210Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "kellopeli", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150326/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-14T06:37:24.781826Z", "last_modified_time": "2025-10-14T06:37:24.781844Z", "date_published": null, "start_time": "2025-11-12T08:30:00Z", "end_time": "2025-11-12T09: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, "description": { "fi": "<p>Varhaisiän musiikkikasvatustunnilla opetellaan tunnettuja ja uudempia kappaleita. Tunneilla soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa. Ei haittaa, vaikka et olisi soittanut tai laulanut aikaisemmin. Tunnilla tutustutaan musiikkiin ja pidetään hauskaa yhdessä lapsen kanssa. Vauvamuskarin kesto on 30 minuuttia. Ryhmään voi osallistua kielitaidosta ja musiikkitaustasta riippumatta. Ryhmä on suunnattu 3kk - 3v ikäisille lapsille. Osallistuminen on maksutonta.</p><p>On suositeltavaa ottaa mukaan oma viltti tai jarrusukat riippuen lapsen iästä. Osallistuthan tunnille vain terveenä.</p><p><br></p><p>Vauvamuskariin ilmoittaudutaan alla olevasta linkistä.</p><p><a href=\"https://link.webropol.com/s/vauvamuskari\">https://link.webropol.com/s/vauvamuskari</a></p><p><br></p><p>Ilmoittautuminen aukeaa alla oleviin muskareihin:</p><ul><li>Tapiolan kirjasto (Heikki) tiistai 21.10 klo 10.30</li><li>Viherlaakson kirjasto perjantai 24.10 klo 10.30</li><li>Entressen kirjasto (Sininen huone) keskiviikko 29.10 klo 10.30</li><li>Nöykkiön kirjasto tiistai 4.11 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) perjantai 7.11 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 12.11 klo 10.30</li><li>Kauklahden kirjasto tiistai 18.11 klo 10.30</li><li>Entressen kirjasto (Jukeboksi) perjantai 21.11 klo 10.30</li><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 2.12 klo 10.30</li><li>Sellon kirjasto (Jaminurkka) perjantai 5.12 klo 10.30</li></ul><p><br></p><p>Tunnit ohjaavat musiikkipedagogit Sakari Heikka ja Lauri Iljin</p><p>sakari.heikka(at)espoo.fi</p><p>lauri.iljin(at)espoo.fi</p><p><br></p><p>#musiikki #muskari #vauva</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Vauvamuskari" }, "location_extra_info": { "fi": "Jaminurkka" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6dg4wzm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }