Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=43
{ "meta": { "count": 28041, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=44", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=42" }, "data": [ { "id": "espoo_le:agozxhwkdm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 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": 1494634, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-26T12:02:44.273140Z", "last_modified_time": "2026-01-26T12:02:44.273155Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f36b505a-e754-48c9-b6bc-13e2281e929e.png", "name": "", "cropping": "490,0,2410,1920", "photographer_name": "Espoon kaupungin aineistopankki", "alt_text": "Kuvituskuva, aikuinen lukemassa kirjoja lapsille.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494634/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-06T10:48:37.171081Z", "last_modified_time": "2026-03-06T10:48:37.171097Z", "date_published": null, "start_time": "2026-03-20T16:00:00Z", "end_time": "2026-03-20T16: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa koko perheen monikieliseen satuhetkeen!</p><p>Perjantaina 20.3. klo 18 Suomi ja Venäjä</p><p>Entressen kirjastossa vietetään Satakielikuukautta 21.2.-21.3.</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso.. Monikielisyys näkyy erilaisten kohtaamisten, keskustelun, projektien, taiteen ja yhdessä tekemisen kautta.</p><p><br></p><p>#Satakielikuukausi</p>", "en": "<p>Welcome to our multianguage Story Time.</p><p>Friday March 20, at 6 p.m. Finland and Russian</p><p>Entresse Library celebrates the Multilingual Month from 21.2. to 21.3.</p><p>Multilingual Month is a celebration of mother tongues and multilingualism. Multilingualism is visible in all kinds of encounters, discussions, projects, art and shared activities.</p><p>#Satakielikuukausi</p>" }, "short_description": { "fi": "Monikielinen satuhetki (Suomi, Venäjä)", "en": "Multilingual story time (Finnish, Russian)" }, "location_extra_info": null, "name": { "fi": "Monikielinen satuhetki (Suomi, Venäjä)", "en": "Multilingual story time (Finnish, Russian)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwkdm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwkra", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 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": 1494634, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-26T12:02:44.273140Z", "last_modified_time": "2026-01-26T12:02:44.273155Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f36b505a-e754-48c9-b6bc-13e2281e929e.png", "name": "", "cropping": "490,0,2410,1920", "photographer_name": "Espoon kaupungin aineistopankki", "alt_text": "Kuvituskuva, aikuinen lukemassa kirjoja lapsille.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494634/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-06T10:42:56.812254Z", "last_modified_time": "2026-03-06T10:42:56.812272Z", "date_published": null, "start_time": "2026-03-13T16:00:00Z", "end_time": "2026-03-13T16: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa koko perheen kaksikieliseen satuhetkeen!</p><p><br></p><p>Entressen kirjastossa vietetään Satakielikuukautta 21.2.-21.3.</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso.. Monikielisyys näkyy erilaisten kohtaamisten, keskustelun, projektien, taiteen ja yhdessä tekemisen kautta.</p><p><br></p><p>#Satakielikuukausi</p>", "en": "<p>Welcome to our multianguage Story Time to hear fairy tales in Arabic and Russian.</p><p><br></p><p>Entresse Library celebrates the Multilingual Month from 21.2. to 21.3.</p><p>Multilingual Month is a celebration of mother tongues and multilingualism. Multilingualism is visible in all kinds of encounters, discussions, projects, art and shared activities.</p><p>#Satakielikuukausi</p>" }, "short_description": { "fi": "Satuhetki, jossa luetaan satu arabiaksi ja venäjäksi", "en": "Story time, in which we read a children's story in Arabic and Russian" }, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "name": { "fi": "Arabian- ja venäjänkielinen satuhetki", "en": "An Arabic- and Russian language Story Time" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwkra/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agocrwgnc4", "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: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": 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": [], "images": [ { "id": 1494634, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-26T12:02:44.273140Z", "last_modified_time": "2026-01-26T12:02:44.273155Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f36b505a-e754-48c9-b6bc-13e2281e929e.png", "name": "", "cropping": "490,0,2410,1920", "photographer_name": "Espoon kaupungin aineistopankki", "alt_text": "Kuvituskuva, aikuinen lukemassa kirjoja lapsille.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494634/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-02-04T12:27:21.486462Z", "last_modified_time": "2026-03-06T10:41:25.857193Z", "date_published": null, "start_time": "2026-03-09T14:00:00Z", "end_time": "2026-03-09T14: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa koko perheen arabiankieliseen satuhetkeen!</p><p><br></p><p>Ison Omenan kirjastossa vietetään Satakielikuukautta 21.2.-21.3.</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso.. Monikielisyys näkyy erilaisten kohtaamisten, keskustelun, projektien, taiteen ja yhdessä tekemisen kautta.</p><p><br></p><p>#Satakielikuukausi</p>", "en": "<p>Welcome to our Story Time to hear fairy tales in Arabic.</p><p><br></p><p>Iso Omena Library celebrates the Multilingual Month from 21.2. to 21.3.</p><p>Multilingual Month is a celebration of mother tongues and multilingualism. Multilingualism is visible in all kinds of encounters, discussions, projects, art and shared activities.</p><p>#Satakielikuukausi</p>" }, "short_description": { "fi": "Satuhetki, jossa luetaan satu arabiaksi.", "en": "Story time, in which we read a children's story in Arabic." }, "location_extra_info": null, "name": { "fi": "Arabiankielinen satuhetki", "en": "An Arabic language Story Time" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocrwgnc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwlai", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 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": 1494634, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-26T12:02:44.273140Z", "last_modified_time": "2026-01-26T12:02:44.273155Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f36b505a-e754-48c9-b6bc-13e2281e929e.png", "name": "", "cropping": "490,0,2410,1920", "photographer_name": "Espoon kaupungin aineistopankki", "alt_text": "Kuvituskuva, aikuinen lukemassa kirjoja lapsille.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494634/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-06T10:12:02.879718Z", "last_modified_time": "2026-03-06T10:13:20.556987Z", "date_published": null, "start_time": "2026-03-11T07:30:00Z", "end_time": "2026-03-11T08: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa koko perheen ruotsinkieliseen satuhetkeen!</p><p><br></p><p>Entressen kirjastossa vietetään Satakielikuukautta 21.2.-21.3.</p><p>Satakielikuukausi on äidinkieltä ja kielellistä moninaisuutta juhliva jakso.. Monikielisyys näkyy erilaisten kohtaamisten, keskustelun, projektien, taiteen ja yhdessä tekemisen kautta.</p><p><br></p><p>#Satakielikuukausi</p>", "sv": "<p>Välkommen till vår svenska sagostund för hela familjen!</p><p>Entresse biblioteket firar den Flerspråkighetsmånaden från 21.2. till 21.3.</p><p>Flerspråkighetsmånaden som firar modersmål och språklig mångfald. Flerspråkighet lyfts fram genom olika slags möten, samtal, projekt, konst och gemensamma aktiviteter.</p>", "en": "<p>Welcome to our Swedish Story Time to hear fairy tales in Swedish!</p><p><br></p><p>Entresse Library celebrates the Multilingual Month from 21.2. to 21.3.</p><p>Multilingual Month is a celebration of mother tongues and multilingualism. Multilingualism is visible in all kinds of encounters, discussions, projects, art and shared activities.</p><p>#Satakielikuukausi</p>" }, "short_description": { "fi": "Satuhetki, jossa luetaan satu ruotsiksi", "sv": "sagostund, där vi läser sagor på svenska", "en": "Story time, in which we read a children's story in Swedish" }, "location_extra_info": null, "name": { "fi": "Ruotsinkielinen satuhetki", "sv": "Sagostund på Svenska", "en": " Swedish Story Time" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwlai/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwlqq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491192, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-26T09:00:39.500409Z", "last_modified_time": "2026-03-24T12:03:59.667982Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f78a5ebd-87df-4160-9109-6d0e209f56ca.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "maapallo jonka sisällä teksti kohtuusklubi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491192/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-06T08:01:38.954773Z", "last_modified_time": "2026-03-06T08:01:38.954790Z", "date_published": null, "start_time": "2026-03-27T16:00:00Z", "end_time": "2026-03-27T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "https://www.sll.fi/uusimaa/tule-mukaan/toimintaryhmat/kohtuusklubi/" }, "provider": { "fi": "Lukupiiri on osa Suomen luonnonsuojeluliiton uudenmaanpiirin Kohtuusklubin toimintaa" }, "description": { "fi": "<p><strong>Maaliskuun lukupiiri pe 27.3. kello 18 Entressen kirjastossa, Siltakatu 11, 02770 Espoo. Kirja </strong><a href=\"https://helmet.finna.fi/Record/helmet.2546961?sid=5280196720\"><strong>Riina Tanskanen ja Samu Kuoppa: Kapitalismin suuri illuusio</strong></a><strong>.</strong></p><p>Riina Tanskanen ja Samu Kuoppa esittelevät yhdeksän keskeistä valhetta, joiden varassa nykyjärjestelmä lepää.</p><p> Teos palauttaa talouspuheen arjen tasolle ja kysyy, miksi hoiva nähdään kustannuseränä, miksi ympäristön tuhoaminen kasvattaa taloutta ja miksei talouden tehtävä ole taata jokaisen ihmisen perustarpeet.</p><p> Tämä kirja on vaaleanpunainen kutsukirje vastarintaan. Jotta voimme muuttaa taloutta ja sen kautta maailmaa, täytyy meidän kaikkien pystyä myös puhumaan siitä.</p><p> Lukupiiri sopii kaikille, joita kohtuullinen elämäntapa kiinnostaa. Keskustelemme kirjan herättämistä ajatuksista. Voit tulla mukaan, vaikka et olisi ehtinyt lukea kirjaa.</p><p> Lukupiirin ohjaavat Anna ja Mia. Ei ennakkoilmoittautumista. Tervetuloa!</p><p> Lukupiiri on osa Suomen luonnonsuojeluliiton Uudenmaan piirin Kohtuusklubin toimintaa.</p><p> Kohtuusklubi on toimintaryhmä, jonka aktiivit järjestävät kestävään elämäntapaan liittyviä tapahtumia, tempauksia, retkiä ja muuta mukavaa.</p>" }, "short_description": { "fi": "Mikä on kohtuullista? Tule mukaan miettimään! Lukupiiri sopii kaikille, joita kohtuullisuus kiinnostaa. " }, "location_extra_info": { "fi": "Ryhmätyötila Aisti" }, "name": { "fi": "Kohtuullinen lukupiiri " }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwlqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwl64", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:koha", "sub_events": [], "images": [ { "id": 1824193, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-10-15T07:17:23.514978Z", "last_modified_time": "2025-10-15T07:17:23.514992Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2ac73b7d-0f6a-4744-869d-63dbbff7965f.jpg", "name": "", "cropping": "656,0,2344,1687", "photographer_name": "", "alt_text": "Viisi ihmistä pöydän ääressä keskustelemassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824193/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-06T07:25:01.101957Z", "last_modified_time": "2026-03-06T07:25:01.101973Z", "date_published": null, "start_time": "2026-05-06T13:30:00Z", "end_time": "2026-05-06T16: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, "info_url": null, "provider": { "fi": "Elinkeino", "sv": "Näringar", "en": "Economic Development" }, "description": { "fi": "<p>Tervetuloa testaamaan HelloEspoo.fi-verkkosivuston tekoälykäännöksiä! Pääset myös kertomaan ideoitasi sivuston sisältöihin ja jakamaan ajatuksia muiden osallistujien kanssa. </p><p>HelloEspoo.fi tarjoaa tietoa Espooseen ulkomailta muuttaneille henkilöille. Sivustoa kehitetään koko ajan, ja siksi palaute sekä käännöksistä että sisällöistä on meille tärkeää.</p><p>Työpajan kielinä ovat helppo suomi ja englanti. Toivomme mukaan espoolaisia, jotka osaavat sivustolla käytettyjä kieliä. Eli albaniaa, arabiaa, espanjaa, farsia (persia), kiinaa, ranskaa, ukrainaa, venäjää, vietnamia ja viroa.</p><p><a href=\"https://link.webropol.com/s/helloespooworkshop2026 \">Ilmoittaudu mukaan viimeistään 29.4.2026 täyttämällä lomake. </a></p><p>Tarjoamme osallistujille pientä syötävää.</p><p>Tervetuloa vaikuttamaan!</p><p>#HelloEspoo</p>", "sv": "<p>Välkommen att testa AI-översättningarna på webbplatsen HelloEspoo.fi! Du får också dela med dig av dina idéer om innehållet på sidan och diskutera med andra deltagare.</p><p>HelloEspoo.fi erbjuder information till personer som har flyttat till Esbo från utlandet. Vi utvecklar ständigt webbplatsen, så feedback på både översättningarna och innehållet är mycket viktigt för oss.</p><p>Workshopens språk är lätt finska och engelska. Vi hoppas att Esbobor som talar de språk som används på webbplatsen deltar – alltså albanska, arabiska, spanska, farsi (persiska), kinesiska, franska, ukrainska, ryska, vietnamesiska och estniska.</p><p><a href=\"https://link.webropol.com/s/helloespooworkshop2026 \">Anmäl dig senast 29 april 2026 genom att fylla i formuläret.</a> </p><p>Vi bjuder deltagarna snacks.</p><p>Välkommen att påverka!</p><p>#HelloEspoo</p>", "en": "<p>Welcome to test the AI translations on the HelloEspoo.fi website! You will also have the opportunity to share your ideas for the site’s content and discuss with other participants.</p><p>HelloEspoo.fi provides information for people who have moved to Espoo from abroad. The site is continuously being developed, so feedback on both translations and content is very important to us.</p><p>The languages used in the workshop are easy Finnish and English. However, we hope Espoo residents who speak the languages used on the site to join. The languages are Albanian, Arabic, Spanish, Farsi (Persian), Chinese, French, Ukrainian, Russian, Vietnamese, and Estonian.</p><p><a href=\"https://link.webropol.com/s/helloespooworkshop2026 \">Sign up by 29 April 2026 at the latest by filling in the form.</a></p><p>We will offer coffee, tea, and snacks to participants.</p><p>Welcome to share your thoughts!</p><p>#HelloEspoo</p>" }, "short_description": { "fi": "Testaamme HelloEspoo.fi:n tekoälykäännöksiä albaniaksi, arabiaksi, espanjaksi, farsiksi, kiinaksi, ranskaksi, ukrainaksi, venäjäksi, vietnamiksi ja viroksi.", "sv": "Vi testar AI-översättningarna på webbplatsen på albanska, arabiska, spanska, farsi, kinesiska, franska, ukrainska, ryska, vietnamesiska och estniska.", "en": "We test the AI translations on the website in Albanian, Arabic, Spanish, Farsi, Chinese, French, Ukrainian, Russian, Vietnamese and Estonian." }, "location_extra_info": { "fi": "Sininen huone", "en": "The Blue Room" }, "name": { "fi": "Työpaja: Tule mukaan kehittämään HelloEspoo.fi-sivustoa", "sv": "Workshop: Kom med och utveckla webbplatsen HelloEspoo.fi", "en": "Workshop: Join Us in Developing the HelloEspoo.fi Website" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwl64/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwmoy", "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/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le: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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 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": 1824194, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-05T13:44:39.116077Z", "last_modified_time": "2026-03-05T13:44:39.116099Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1dfdcd25-c607-4050-88d3-78f2356c215a.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Valkoinen koira leijuu avaruudessa. Teksti: Maagisen viikon lukineuvontaa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T13:59:06.097213Z", "last_modified_time": "2026-03-05T13:59:06.097228Z", "date_published": null, "start_time": "2026-03-23T15:00:00Z", "end_time": "2026-03-23T16: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, "info_url": null, "provider": { "fi": "Lukihero", "sv": "Lukihero", "en": "Lukihero" }, "description": { "fi": "<p>Vinkkejä ja tukea oppimiseen – et ole yksin</p><p>Menevätkö sanat solmuun tai numerot sekaisin?</p><p> Hyppiikö teksti riviltä toiselle, tuntuuko lukeminen raskaalta tai onko vaikea hahmottaa kokonaisuuksia ja löytää olennaista?</p><p>Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan!</p><p> Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.</p><p>Lukineuvonnassa saat:</p><p>✨ tietoa lukivaikeuksista ja muista oppimisen haasteista</p><p> ✨ konkreettisia vinkkejä ja helppoja harjoituksia lukemisen ja kirjoittamisen tueksi</p><p> ✨ ohjausta hyödyllisiin sovelluksiin ja apuvälineisiin</p><p> (esim. äänikirjat, puheentunnistus, tekstin jäsentämisen työkalut)</p><p> ✨ keskusteluapua ja tukea arjen oppimistilanteisiin</p><p>Palvelu on maksutonta, ja neuvontaa antavat HEROn erityisopetuksen ammattilaiset.</p><p>Mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p>", "sv": "<p>Tips och stöd för lärandet – du är inte ensam</p><p>Blir orden till knutar eller siffrorna förväxlade?</p><p>Hoppar texten från rad till rad, känns läsningen tung eller är det svårt att få en helhetsbild och hitta det väsentliga?</p><p>Kom till läsrådgivningen som Helsingforsregionens förening för inlärningssvårigheter (HERO) erbjuder!</p><p>I en lugn och uppmuntrande miljö får du praktiskt stöd för vardagens lärandesituationer.</p><p>I läsrådgivningen får du:</p><p>✨ information om dyslexi och andra inlärningssvårigheter</p><p>✨ konkreta tips och enkla övningar som stöd för läsning och skrivning</p><p>✨ handledning i användbara appar och hjälpmedel</p><p>(t.ex. ljudböcker, tal‑till‑text, verktyg för att strukturera text)</p><p>✨ samtalsstöd och hjälp i vardagliga lärandesituationer</p><p>Tjänsten är kostnadsfri och handledningen ges av HEROs specialpedagogiska yrkespersoner.</p><p>Ibland deltar också den underbara LäsHunden Halla, som skapar lugn, mod och glädje i lässtunderna 🐾</p>", "en": "<p>Do words get tangled or numbers mixed up?</p><p>Does the text jump from line to line, does reading feel heavy, or is it hard to grasp the whole picture and find what’s essential?</p><p>Come to the reading guidance offered by the Helsinki Region Association for Learning Disabilities (HERO)!</p><p>In a calm and encouraging environment, you will receive practical support for everyday learning situations.</p><p>In the reading guidance you will get:</p><p>✨ information about dyslexia and other learning challenges</p><p>✨ concrete tips and simple exercises to support reading and writing</p><p>✨ guidance on useful apps and assistive tools</p><p>(e.g. audiobooks, speech‑to‑text, text‑structuring tools)</p><p>✨ someone to talk to and support for everyday learning situations</p><p>The service is free of charge, and the guidance is provided by HERO’s special education professionals. Sometimes the lovely Reading Dog Halla is also present, bringing calm, courage and good vibes to reading moments 🐾</p>" }, "short_description": { "fi": "Vinkkejä ja tukea oppimiseen – et ole yksin", "sv": "Tips och stöd för lärandet – du är inte ensam", "en": "Tips and support for learning – you are not alone" }, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "name": { "fi": "Maagisen viikon lukineuvontaa", "sv": "Läsrådgivning under den Magiska Veckan", "en": "Magical Week Reading Guidance" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwmoy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwm24", "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", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "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": "2026-03-05T11:46:30.433053Z", "last_modified_time": "2026-03-05T11:53:25.867964Z", "date_published": null, "start_time": "2026-03-24T09:00:00Z", "end_time": "2026-03-24T09: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, "info_url": null, "provider": 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 on auki seuraaviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 24.3 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) keskiviikko 25.3 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 1.4 klo 10.30</li><li>Nöykkiön kirjasto tiistai 7.4 klo 11.00</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 8.4 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) tiistai 14.4 klo 11.00</li><li>Ison Omenan kirjasto (Nuortentila VOX) keskiviikko 15.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 21.4 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) perjantai 24.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 5.5 klo 11.00</li><li>Kauklahden kirjasto tiistai 19.5 klo 11.00</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>" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "location_extra_info": null, "name": { "fi": "Vauvamuskari" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwm24/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwnoa", "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: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", "url": "https://tapahtumasyotto.espoo.fi/media/images/instrument-g128ad72a9_1920.jpg", "name": "", "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": "2026-03-05T11:49:02.424978Z", "last_modified_time": "2026-03-05T11:53:05.255115Z", "date_published": null, "start_time": "2026-03-25T08:30:00Z", "end_time": "2026-03-25T09: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, "info_url": null, "provider": 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 on auki seuraaviin muskareihin:</p><ul><li>Ison Omenan kirjasto (Nuortentila VOX) tiistai 24.3 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) keskiviikko 25.3 klo 10.30</li><li>Viherlaakson kirjasto keskiviikko 1.4 klo 10.30</li><li>Nöykkiön kirjasto tiistai 7.4 klo 11.00</li><li>Sellon kirjasto (Jaminurkka) keskiviikko 8.4 klo 10.30</li><li>Lippulaivan kirjasto (Salonki) tiistai 14.4 klo 11.00</li><li>Ison Omenan kirjasto (Nuortentila VOX) keskiviikko 15.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 21.4 klo 11.00</li><li>Tapiolan kirjasto (nuortentila) perjantai 24.4 klo 10.30</li><li>Entressen kirjasto (Sininen huone) tiistai 5.5 klo 11.00</li><li>Kauklahden kirjasto tiistai 19.5 klo 11.00</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>" }, "short_description": { "fi": "Vauvamuskarissa opetellaan tunnettuja ja uudempiakin lauluja, ja soitetaan ja tutustutaan monipuolisesti erilaisiin soittimiin ja leikkeihin musiikin tahdissa." }, "location_extra_info": null, "name": { "fi": "Vauvamuskari" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwnoa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwoda", "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" }, { "@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:agozxhwphi/?format=api" }, "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": [], "images": [ { "id": 1824195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T08:11:06.891688Z", "last_modified_time": "2026-03-04T08:11:06.891703Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/99b4014d-82c1-4320-bcf9-4af95ae431be.jpg", "name": "", "cropping": "80,0,925,844", "photographer_name": "", "alt_text": "Kuvassa on piiretty Pekka Ja Susi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824195/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-04T08:44:21.895419Z", "last_modified_time": "2026-03-05T10:56:25.219212Z", "date_published": null, "start_time": "2026-03-22T11:00:00Z", "end_time": "2026-03-22T11: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, "info_url": null, "provider": null, "description": { "fi": "<p>Pekka ja Susi on tarina kekseliäisyydestä ja yhteistyön voimasta. Sergei Prokofievin klassikkoteoksessa Pekka ja eläinystävät kohtaavat niityllä suden. Susi uhkaa pientä ankkaa, mutta Pekka ja ystävät keksivät keinon, jolla ankka pelastetaan suden suusta - eikä sudellekaan käy hullummin!</p><p>Teos on sävelletty vuonna 1936 alunperin sinfoniaorkesterin esitettäväksi. Lippulaivan kirjastossa kuullaan teoksesta uudelleensovitettu versio jousitriolle ja kertojalle. Sadun ovat juuri tätä esitystä varten kuvittaneet taiteilijat Sanna Seetri ja Kaisu Sirviö. </p><p> </p><p>Sergei Prokofiev: Pekka ja Susi op.67, sovitus jousitriolle ja kertojalle.</p><p> </p><p>Elina Simes, kertoja</p><p>Elina Päkkilä, viulu</p><p>Elina Heikkinen, alttoviulu</p><p>Liina-Mari Raivola, sello</p><p> </p><p>Esityksen kuvitus: Sanna Seetri ja Kaisu Sirviö</p>", "sv": "<p>Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.</p><p><br></p><p>Sergej Prokofjev: Peter och vargen, op. 67, arrangerad för stråktrio och berättare.</p><p><br></p><p>Elina Simes, berättare</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrationer till föreställningen: Sanna Seetri och Kaisu Sirviö</p>", "en": "<p>Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish</p><p><br></p><p>Sergei Prokofiev: Peter and the Wolf, Op. 67, arranged for string trio and narrator.</p><p><br></p><p>Elina Simes, narrator</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrations for the performance: Sanna Seetri and Kaisu Sirviö</p>" }, "short_description": { "fi": "Tervetuloa katsomaan Pekka ja Susi-lastenkonserttia Salonkiin sunnuntaina 22.3. klo 13 & klo 15", "sv": "Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.", "en": "Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "name": { "fi": "Pekka ja Susi-lastenkonsertti", "sv": "Peter och vargen - barnkonsert", "en": "Peter and the wolf - childrens concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwoda/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwovi", "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" }, { "@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:agozxhwphi/?format=api" }, "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": 1824195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T08:11:06.891688Z", "last_modified_time": "2026-03-04T08:11:06.891703Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/99b4014d-82c1-4320-bcf9-4af95ae431be.jpg", "name": "", "cropping": "80,0,925,844", "photographer_name": "", "alt_text": "Kuvassa on piiretty Pekka Ja Susi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824195/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-04T08:44:22.021110Z", "last_modified_time": "2026-03-05T10:56:25.167030Z", "date_published": null, "start_time": "2026-03-22T13:00:00Z", "end_time": "2026-03-22T13: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, "info_url": null, "provider": null, "description": { "fi": "<p>Pekka ja Susi on tarina kekseliäisyydestä ja yhteistyön voimasta. Sergei Prokofievin klassikkoteoksessa Pekka ja eläinystävät kohtaavat niityllä suden. Susi uhkaa pientä ankkaa, mutta Pekka ja ystävät keksivät keinon, jolla ankka pelastetaan suden suusta - eikä sudellekaan käy hullummin!</p><p>Teos on sävelletty vuonna 1936 alunperin sinfoniaorkesterin esitettäväksi. Lippulaivan kirjastossa kuullaan teoksesta uudelleensovitettu versio jousitriolle ja kertojalle. Sadun ovat juuri tätä esitystä varten kuvittaneet taiteilijat Sanna Seetri ja Kaisu Sirviö. </p><p> </p><p>Sergei Prokofiev: Pekka ja Susi op.67, sovitus jousitriolle ja kertojalle.</p><p> </p><p>Elina Simes, kertoja</p><p>Elina Päkkilä, viulu</p><p>Elina Heikkinen, alttoviulu</p><p>Liina-Mari Raivola, sello</p><p> </p><p>Esityksen kuvitus: Sanna Seetri ja Kaisu Sirviö</p>", "sv": "<p>Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.</p><p><br></p><p>Sergej Prokofjev: Peter och vargen, op. 67, arrangerad för stråktrio och berättare.</p><p><br></p><p>Elina Simes, berättare</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrationer till föreställningen: Sanna Seetri och Kaisu Sirviö</p>", "en": "<p>Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish</p><p><br></p><p>Sergei Prokofiev: Peter and the Wolf, Op. 67, arranged for string trio and narrator.</p><p><br></p><p>Elina Simes, narrator</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrations for the performance: Sanna Seetri and Kaisu Sirviö</p>" }, "short_description": { "fi": "Tervetuloa katsomaan Pekka ja Susi-lastenkonserttia Salonkiin sunnuntaina 22.3. klo 13 & klo 15", "sv": "Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.", "en": "Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "name": { "fi": "Pekka ja Susi-lastenkonsertti", "sv": "Peter och vargen - barnkonsert", "en": "Peter and the wolf - childrens concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwovi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwphi", "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" }, { "@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": [], "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:agozxhwoda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwovi/?format=api" } ], "images": [ { "id": 1824195, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-04T08:11:06.891688Z", "last_modified_time": "2026-03-04T08:11:06.891703Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/99b4014d-82c1-4320-bcf9-4af95ae431be.jpg", "name": "", "cropping": "80,0,925,844", "photographer_name": "", "alt_text": "Kuvassa on piiretty Pekka Ja Susi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824195/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-04T08:44:21.294754Z", "last_modified_time": "2026-03-05T10:56:24.689724Z", "date_published": null, "start_time": "2026-03-22T11:00:00Z", "end_time": "2026-03-22T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": null, "description": { "fi": "<p>Pekka ja Susi on tarina kekseliäisyydestä ja yhteistyön voimasta. Sergei Prokofievin klassikkoteoksessa Pekka ja eläinystävät kohtaavat niityllä suden. Susi uhkaa pientä ankkaa, mutta Pekka ja ystävät keksivät keinon, jolla ankka pelastetaan suden suusta - eikä sudellekaan käy hullummin!</p><p>Teos on sävelletty vuonna 1936 alunperin sinfoniaorkesterin esitettäväksi. Lippulaivan kirjastossa kuullaan teoksesta uudelleensovitettu versio jousitriolle ja kertojalle. Sadun ovat juuri tätä esitystä varten kuvittaneet taiteilijat Sanna Seetri ja Kaisu Sirviö. </p><p> </p><p>Sergei Prokofiev: Pekka ja Susi op.67, sovitus jousitriolle ja kertojalle.</p><p> </p><p>Elina Simes, kertoja</p><p>Elina Päkkilä, viulu</p><p>Elina Heikkinen, alttoviulu</p><p>Liina-Mari Raivola, sello</p><p> </p><p>Esityksen kuvitus: Sanna Seetri ja Kaisu Sirviö</p>", "sv": "<p>Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.</p><p><br></p><p>Sergej Prokofjev: Peter och vargen, op. 67, arrangerad för stråktrio och berättare.</p><p><br></p><p>Elina Simes, berättare</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrationer till föreställningen: Sanna Seetri och Kaisu Sirviö</p>", "en": "<p>Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish</p><p><br></p><p>Sergei Prokofiev: Peter and the Wolf, Op. 67, arranged for string trio and narrator.</p><p><br></p><p>Elina Simes, narrator</p><p>Elina Päkkilä, violin</p><p>Elina Heikkinen, viola</p><p>Liina-Mari Raivola, cello</p><p><br></p><p>Illustrations for the performance: Sanna Seetri and Kaisu Sirviö</p>" }, "short_description": { "fi": "Tervetuloa katsomaan Pekka ja Susi-lastenkonserttia Salonkiin sunnuntaina 22.3. klo 13 & klo 15", "sv": "Välkommen till Peter och vargen – barnkonsert söndagen den 22 mars kl. 13 och 15! Evenemanget är på finska.", "en": "Welcome to the Peter and the wolf -childrens concert on sunday 22.3. at 13 & 15 o clock! The event is finnish" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "name": { "fi": "Pekka ja Susi-lastenkonsertti", "sv": "Peter och vargen - barnkonsert", "en": "Peter and the wolf - childrens concert" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwphi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwpyy", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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": 1490230, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-23T12:31:26.106421Z", "last_modified_time": "2025-01-23T12:31:26.106442Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3ca6343f-2480-43ce-8cb7-6726b4293a99.jpg", "name": "", "cropping": "772,0,3805,3034", "photographer_name": "", "alt_text": "Äänimalja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T10:03:04.705373Z", "last_modified_time": "2026-03-05T10:03:04.705390Z", "date_published": "2026-03-05T09:01:10.923000Z", "start_time": "2026-05-20T15:00:00Z", "end_time": "2026-05-20T16: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. Rentoutuksen aikana voit istua tuolilla tai maata joogamatolla. Kirjastolla on 10 kpl joogamattoja joita voit lainata. Voit tuoda mukaan myös oman joogamaton. Vetäjänä toimii musiikkipedagogi Sakari Heikka.</p><p>#rentoutus #äänimalja #rentoutuminen #meditaatio</p>", "en": "<p>Welcome to relax with the beautiful sound of singing bowls. During relaxation, you can sit on a chair or lie on a yoga mat. The library has 10 yoga mats that you can borrow. You can also bring your own yoga mat. The relaxation is led by Music pedagogue Sakari Heikka.</p><p>#relaxation #singingbowls #meditation</p>" }, "short_description": { "fi": "Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. ", "en": "Welcome to relax with the beautiful sound of singing bowls." }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "name": { "fi": "Äänimaljarentoutus", "en": "Singing Bowl Relaxation" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwpyy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwqg4", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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": 1490230, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-23T12:31:26.106421Z", "last_modified_time": "2025-01-23T12:31:26.106442Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3ca6343f-2480-43ce-8cb7-6726b4293a99.jpg", "name": "", "cropping": "772,0,3805,3034", "photographer_name": "", "alt_text": "Äänimalja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490230/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T10:01:06.491011Z", "last_modified_time": "2026-03-05T10:01:06.491028Z", "date_published": "2026-03-05T09:51:00.174000Z", "start_time": "2026-03-25T15:00:00Z", "end_time": "2026-03-25T16: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. Rentoutuksen aikana voit istua tuolilla tai maata joogamatolla. Kirjastolla on 10 kpl joogamattoja joita voit lainata. Voit tuoda mukaan myös oman joogamaton. Vetäjänä toimii musiikkipedagogi Sakari Heikka.</p><p>#rentoutus #äänimalja #rentoutuminen #meditaatio</p>", "en": "<p>Welcome to relax with the beautiful sound of singing bowls. During relaxation, you can sit on a chair or lie on a yoga mat. The library has 10 yoga mats that you can borrow. You can also bring your own yoga mat. The relaxation is led by Music pedagogue Sakari Heikka.</p><p>#relaxation #singingbowls #meditation</p>" }, "short_description": { "fi": "Tervetuloa rentoutumaan ja kuuntelemaan äänimaljojen kaunista sointia. ", "en": "Welcome to relax with the beautiful sound of singing bowls." }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "name": { "fi": "Äänimaljarentoutus", "en": "Singing Bowl Relaxation" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwqg4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4bryh4i", "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" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4brykly/?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:KOTO", "sub_events": [], "images": [ { "id": 153076, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T10:57:29.523947Z", "last_modified_time": "2024-03-15T10:57:29.523981Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/pexels-porapak-apichodilok-346709.jpg", "name": "", "cropping": "501,0,2499,1998", "photographer_name": "", "alt_text": "ihminen soittaa ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153076/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T07:30:47.327137Z", "last_modified_time": "2026-03-05T09:57:08.985175Z", "date_published": null, "start_time": "2026-03-05T14:30:00Z", "end_time": "2026-03-05T15: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Välillä haastamme myös itseämme soittamalla melodioita ja opettamalla uusia sointuja ja komppeja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Olet aina tervetullut mukaan! Kirjastolla on myös ukuleleja joita voit lainata tunnin ajaksi.</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta</p><p><br></p><p>Ryhmä kokoontuu torstaisin klo 16.30-17.30 Sellon kirjaston Jaminurkassa. Ensimmäinen tunti on torstaina 29.1.2026</p><p>Huom. ei tuntia viikolla 19.2 ja 30.4 </p><p><br></p><p>#musiikki #ukulele #sello #ryhmä #kirjasto</p>", "en": "<p>Thursday at 16.30-17.30 in Sello Library Jaminurkka.</p><p> </p><p>Welcome to the Espoo City Library intermediate ukulele group. We play popular Finnish and English songs. From time to time we challenge ourselves by learning new chords, melodies and strums. Relaxing atmosphere and community are important values of the group. There are ukuleles in the library that you can borrow for the lesson.</p><p><br></p><p>Participation is free and no pre-registration is required.</p><p><br></p><p>First lesson is Thrusday 29.1.2026</p><p>No class 19th of February and 30th of April</p><p>#music #ukulele #sello #library</p>" }, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Participation is free of charge and no pre-registration" }, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "name": { "fi": "PERUTTU Ukulelen jatkoryhmä", "en": "CANCELLED Ukulele, Intermediate Group" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4bryh4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4di3fta", "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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4di3ide/?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:KOTO", "sub_events": [], "images": [ { "id": 150432, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T12:23:54.433662Z", "last_modified_time": "2024-03-15T12:23:54.433684Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulele-2205860_1920.jpg", "name": "", "cropping": "518,0,1402,885", "photographer_name": "", "alt_text": "kolme ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T11:21:34.210850Z", "last_modified_time": "2026-03-05T09:55:40.945017Z", "date_published": null, "start_time": "2026-03-05T15:45:00Z", "end_time": "2026-03-05T16: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Tunneilla on tarkoitus tutustua musiikkiin monipuolisesti. Harjoittelemme sointujen, sekä melodian soittamista kappaleiden avulla. Lisäksi teemme musiikin hahmottamista ja ryhmäytymistä tukevia harjoituksia leikkimällä ja piirtämällä. Opetus on oppilaslähtöistä. Kirjastolla on 15 ukulelea, joita voi lainata tunnin ajaksi.</p><p>Ensimmäinen tunti on 29.1.2026</p><p><strong>Tunnille mahtuu 15 lasta. Osallistuminen on maksutonta.</strong></p><p><strong>Ei tuntia </strong>\t19.2, 30.4 ja 14.5</p><p><br></p><p>Ennakkoilmoittautuminen: https://link.webropol.com/s/ukuleletunti</p><p>Ryhmää vetää Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p><p>#musiikki #ukulele #sello #lapset #nuoret</p>", "en": "<p>Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. We practice how to play melody and harmony with well-known songs. Teaching is student-centered. The Library has 15 ukuleles that can be borrowed for the lesson.</p><p><br></p><p>Pre-registration: https://link.webropol.com/s/ukuleletunti</p><p>First class is 29.1.2026</p><p><br></p><p><strong>15 children can attend the class. Participation is free of charge.</strong></p><p><strong>No class 19.2, 30.4 and 14.5</strong></p><p><br></p><p><br></p><p>Lauri Iljin teaches the group</p><p>lauri.iljin(at)espoo.fi</p>" }, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Kirjastolla on 15 lainasoitinta tunnin ajaksi. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. There are 15 ukuleles that can be borrowed for the class. Participation is free of charge." }, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "name": { "fi": "PERUTTU Ukulele 7-12-vuotiaiden ryhmätunti", "en": "CANCELLED Ukulele - 7- to 12-year-old" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4di3fta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwqye", "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: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": 1824196, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-05T09:12:04.683790Z", "last_modified_time": "2026-03-05T09:12:04.683807Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1251b4ab-89bc-435d-8dea-7601127bd2cc.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tapahtuman mainos, jossa puhujien kuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824196/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T09:12:48.139754Z", "last_modified_time": "2026-03-05T09:12:48.139773Z", "date_published": null, "start_time": "2026-03-07T12:00:00Z", "end_time": "2026-03-07T14: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, "info_url": null, "provider": null, "description": { "fi": "<p>Avoin yhteisötapahtuma, jossa juhlitaan kansainvälistä naistenpäivää 2026 teemalla ”Anna saadaksesi”. Tapahtuma on avoin kaikille, ja sen tarkoituksena on luoda yhteyksiä, oppia ja inspiroida.</p>", "en": "<p>An open community event celebrating International Women’s Day 2026 under the theme ‘Give to Gain,’ welcoming all to connect, learn, and be inspired.</p>" }, "short_description": { "fi": "Yhteisötapahtuma, jossa juhlitaan kansainvälistä naistenpäivää teemalla ”Anna saadaksesi”. Tapahtuman tarkoituksena on luoda yhteyksiä, oppia ja inspiroida.", "en": "An open community event celebrating International Women’s Day 2026 under the theme ‘Give to Gain,’ welcoming all to connect, learn, and be inspired." }, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "name": { "fi": "Women’s Day 2026 ", "en": "Women’s Day 2026 " }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwqye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn3el5q2y", "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/helmet:11733/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23al3y/?format=api" }, "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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5cjm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5eae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5fmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5gza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5ici/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5jn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5k5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5mjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5nyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5pf4/?format=api" } ], "images": [ { "id": 150743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-23T12:43:34.341615Z", "last_modified_time": "2024-05-17T10:30:18.739899Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Nimet%C3%B6n_malli_5.png", "name": "Kahvihetki.", "cropping": "293,0,1707,1414", "photographer_name": "Pixabay", "alt_text": "Kolme kahvikuppia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-12T11:48:40.296817Z", "last_modified_time": "2026-03-04T12:24:35.443396Z", "date_published": null, "start_time": "2026-01-16T07:00:00Z", "end_time": "2026-05-22T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Elinvoima" }, "description": { "fi": "<p>Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa.</p><p>Tervetuloa laulamaan, loruttelemaan, kuuntelemaan satuja ja viettämään aikaa alueen muiden vanhempien kanssa kahvikupin äärellä.</p><p>Järjestetään joka toinen perjantai klo 9-11 Entressen kirjaston Sinisessä huoneessa.</p><p>Järjestetään:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.1.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>Tapahtumaan on esteetön pääsy.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Familjekafé, som riktar sig till familjer med barn under skolåldern, kommer att starta i Entresse biblioteket.</p><p>Välkommen att sjunga, rimma, lyssna på sagor och umgås med andra föräldrar i området över fika.</p><p>Händer varje fredag från 9 till 11 i Sininen huone på Entresse biblioteket.</p><p>Händer:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.1.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>Evenemanget är på finska.</p><p><br></p><p>#HelloEspoo</p><p>Evenemanget är tillgängligt för rörelsehindrade.</p>", "en": "<p>Family Café is an event for families with children under school age, which will start in the Entresse library.</p><p>Welcome to sing, rhyme, listen to fairy tales and spend time with other parents in the area over a cup of coffee.</p><p>Organized on every Friday from 9 to 11 in the Sininen huone at Entresse library.</p><p>Event is organized on:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.1.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>The event is in Finnish.</p><p>The event is accessible for all.</p><p><br></p><p>#HelloEspoo</p>" }, "short_description": { "fi": "Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa.", "sv": "Familjekafé, som riktar sig till familjer med barn under skolåldern.", "en": "Family Café is an event for families with children under school age, which will start in the Entresse library." }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "name": { "fi": "Perhekahvila", "sv": "Familjekafé", "en": "Family Café" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5q2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnidmck5q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcoga/?format=api" }, "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": 1490245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T11:37:19.542981Z", "last_modified_time": "2025-03-17T11:37:19.543003Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bdb02369-37a7-4f2a-8066-d6a0186343a9.png", "name": "", "cropping": "132,0,653,522", "photographer_name": "", "alt_text": "Kuvassa popcornia ja klaffi.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T08:28:52.942709Z", "last_modified_time": "2026-03-04T11:44:58.278468Z", "date_published": null, "start_time": "2026-03-06T09:00:00Z", "end_time": "2026-03-06T11: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, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa Kino Lippulaivaan! Muutaman kerran kuukaudessa Lippulaivan kirjaston Salonki muotoutuu leffateatteriksi.</p><p>Elokuvahetki on tarkoitettu aikuisille. Elokuvien ikärajat on merkitty jokaisen elokuvan nimen perään.</p><p>Elokuvat:</p><p>9.1 Spencer (K-12, draama, elämäkerta)</p><p>23.1. Asteroid City (K-7, draama, komedia)</p><p>6.2. Rinnakkaiset äidit (K-12, draama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, draama, elämäkerta)</p><p>6.3. Kärsimys a kunnia (K-16, draama)</p><p>20.3. Judy (K-12, draama)</p><p>3.4. Rocketman (K-12, draama, elämäkerta, musikaali)</p><p>17.4. Black swan (K-16, draama, kauhu, trilleri)</p><p>15.5. Erämaan armoille (K-12, draama, seikkailu)</p><p>29.5. Kesäkirja (S, draama)</p><p><br></p><p>Ilmoitamme elokuvat noin kuukautta ennen.</p><p>#helloespoo</p>", "sv": "<p>Välkommen till Kino Lippulaiva! Några gånger i månaden förvandlas salongen i Lippulaiva bibliotek till en biograf. </p><p><br></p><p>Filmkvällarna är endast för vuxna. Åldersgränsen för varje film anges efter titeln. </p><p><br></p><p>Filmerna:</p><p>9.1 Spencer (K-12, drama, biografi)</p><p>23.1. Asteroid City (K-7, drama, komedi)</p><p>6.2. Rinnakkaiset äidit (K-12, drama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, drama, biografi)</p><p>6.3. Kärsimys a kunnia (K-16, drama)</p><p>20.3. Judy (K-12, drama)</p><p>3.4. Rocketman (K-12, drama, biografi, musikal)</p><p>17.4. Black swan (K-16, drama, skräck, triller)</p><p>15.5. Erämaan armoille (K-12, drama, äventyr)</p><p>29.5. Kesäkirja (S, drama)</p><p>Vi annonserar filmerna ungefär en månad i förväg. </p><p>#helloespoo</p>", "en": "<p>Welcome to Kino Lippulaiva! A few times a month, the Salonki in the Lippulaiva Library is transformed into a cinema. </p><p><br></p><p>Movie nights are for adults only. The age limit for each film is indicated after the title. </p><p><br></p><p><br></p><p>Films:</p><p>9.1 Spencer (K-12, drama, biography)</p><p>23.1. Asteroid City (K-7, drama, comedy)</p><p>6.2. Rinnakkaiset äidit (K-12, drama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, drama, biography)</p><p>6.3. Kärsimys a kunnia (K-16, drama)</p><p>20.3. Judy (K-12, drama)</p><p>3.4. Rocketman (K-12, drama, biography, musical)</p><p>17.4. Black swan (K-16, drama, horror, triller)</p><p>15.5. Erämaan armoille (K-12, drama, adventure)</p><p>29.5. Kesäkirja (S, drama)</p><p><br></p><p>We announce the films about a month in advance. </p><p>#helloespoo</p>" }, "short_description": { "fi": "Aikuisille suunnatussa leffahetkessä katsotaan ennakkoon valittu elokuva vaihtelevista genreistä.", "sv": "Detta är ett tillfälle för vuxna att se en på förhand utvald film från olika genrer.", "en": "Aimed at adults, this is a time to watch a pre-selected film from a variety of genres." }, "location_extra_info": null, "name": { "fi": "Aikuisten päiväleffa", "sv": "Film för vuxna på dagtid", "en": "Daytime movie for adults" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmck5q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwrma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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": 1494900, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-19T07:52:12.728630Z", "last_modified_time": "2026-02-19T07:52:12.728648Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0ba4a0a5-003e-48c4-ab74-4e939d865d31.jpg", "name": "", "cropping": "448,0,1600,1152", "photographer_name": "", "alt_text": "Sienikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494900/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-04T11:36:39.272608Z", "last_modified_time": "2026-03-04T11:36:39.272625Z", "date_published": "2026-03-04T12:25:40.209000Z", "start_time": "2026-03-28T12:00:00Z", "end_time": "2026-03-28T14: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, "info_url": null, "provider": null, "description": { "fi": "<p>Maaginen viikko valtaa kirjaston! Tervetuloa tanssimaan maagiseen tunnelmaan hyvän musiikin tahdissa! Saat vapaasti pukeutua teeman mukaisesti tai tulla testaamaan kirjastolta löytyviä rooliasuja. Tapahtuma on lapsille ja perheille suunnattu.</p>" }, "short_description": { "fi": "Musiikkia, rooliasuja ja maagista tunnelmaa!" }, "location_extra_info": { "fi": "Jaminurkka" }, "name": { "fi": "Lasten fantastinen disko" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwrma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }