Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=57
{ "meta": { "count": 21751, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=58", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=56" }, "data": [ { "id": "jiiri:3a093b67-2379-4ba7-ba13-b6d49c1689da", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?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:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Linked_Events_-projekti_-_Kattotapahtuma_20232596007066" }, "description": null, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14614/?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:p4354/?format=api" } ], "created_time": "2026-01-09T10:10:41.712128Z", "last_modified_time": "2026-01-09T10:10:41.712161Z", "date_published": "2026-01-09T10:01:29Z", "start_time": "2026-01-16T06:00:00Z", "end_time": "2026-01-16T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 50, "minimum_attendee_capacity": 5, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kattotapahtuman ja alitapahtumien julkaisu" }, "info_url": null, "description": { "fi": "<div><p>Pitäisi näkyä LE:ssä järkevästi kattotapahtuma ja alitapahtuma</p></div>" }, "name": { "fi": "UUSI Linked Events -projekti - Kattotapahtuma #2023" }, "provider_contact_info": null, "location_extra_info": { "fi": "Alagalleria" }, "provider": { "fi": "Annantalo (KYMP)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:3a093b67-2379-4ba7-ba13-b6d49c1689da/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3foh7a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494421, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-09T08:04:19.780664Z", "last_modified_time": "2026-01-09T08:04:19.780679Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f74c9d9f-6abd-4a5f-bede-8832a059fd02.jpg", "name": "", "cropping": "262,0,938,675", "photographer_name": "HERO", "alt_text": "HERO Helsingin seudun erilaiset oppijat ry:n logo, jossa hehkulamppu, jolla kasvot.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494421/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T11:19:54.556758Z", "last_modified_time": "2026-01-09T08:05:06.620547Z", "date_published": null, "start_time": "2026-04-09T14:00:00Z", "end_time": "2026-04-09T15: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, "short_description": { "fi": "Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan! Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.", "en": "In a calm and encouraging environment, you will receive practical help for everyday learning." }, "info_url": null, "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>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p><p>Ma 2.2 Lippulaiva klo 17-18:30 </p><p>Ma 2.3 Iso Omena klo 17-18:30</p><p>To 9.4 Tapiola klo 17-18, Lukukoira Halla mukana</p>", "en": "<p>📚💚 Tips and support for learning – you are not alone</p><p><br></p><p>Do words get tangled up or numbers mixed up?Does the text jump from line to line, does reading feel difficult, or is it hard to grasp the big picture and find the essentials?</p><p>In a calm and encouraging environment, you will receive practical help for everyday learning.</p><p>Reading guidance provides you with:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and easy exercises to support reading and writing</p><p>✨ guidance on useful applications and assistive devices</p><p>(e.g., audiobooks, speech recognition, text structuring tools)</p><p>✨ conversation assistance and support for everyday learning situations</p><p><br></p><p>The service is free of charge, and advice is provided by HEROn's special education professionals.</p><p>Sometimes, the adorable reading dog Halla is also there to bring peace, encouragement, and good cheer to reading situations. 🐾</p><p>Mon, Feb. 2, Lippulaiva, 5:00–6:30 p.m. </p><p>Mon, Feb. 3, Iso Omena, 5:00–6:30 p.m.</p><p>Thu, Apr. 9, Tapiola, 5:00–6:00 p.m., with reading dog Halla</p><p>Come to the Helsingin seudun erilaiset oppijat (HERO) help and guidance for learning difficulties in finnish. In a calm and encouraging environment, you will receive practical help for everyday learning.</p>" }, "name": { "fi": "Maksutonta lukineuvontaa", "en": "Help and guidance for learning difficulties in finnish" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foh7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3fog4m", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494421, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-09T08:04:19.780664Z", "last_modified_time": "2026-01-09T08:04:19.780679Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f74c9d9f-6abd-4a5f-bede-8832a059fd02.jpg", "name": "", "cropping": "262,0,938,675", "photographer_name": "HERO", "alt_text": "HERO Helsingin seudun erilaiset oppijat ry:n logo, jossa hehkulamppu, jolla kasvot.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494421/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T11:17:36.865750Z", "last_modified_time": "2026-01-09T08:04:50.989373Z", "date_published": null, "start_time": "2026-03-02T15:00:00Z", "end_time": "2026-03-02T16: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, "short_description": { "fi": "Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan! Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.", "en": "\nIn a calm and encouraging environment, you will receive practical help for everyday learning." }, "info_url": null, "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>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p><p>Ma 2.2 Lippulaiva klo 17-18:30 </p><p>Ma 2.3 Iso Omena klo 17-18:30</p><p>To 9.4 Tapiola klo 17-18, Lukukoira Halla mukana</p>", "en": "<p>📚💚 Tips and support for learning – you are not alone</p><p> </p><p>Do words get tangled up or numbers mixed up?Does the text jump from line to line, does reading feel difficult, or is it hard to grasp the big picture and find the essentials?</p><p>In a calm and encouraging environment, you will receive practical help for everyday learning.</p><p>Reading guidance provides you with:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and easy exercises to support reading and writing</p><p>✨ guidance on useful applications and assistive devices</p><p>(e.g., audiobooks, speech recognition, text structuring tools)</p><p>✨ conversation assistance and support for everyday learning situations</p><p> </p><p>The service is free of charge, and advice is provided by HEROn's special education professionals.</p><p>Sometimes, the adorable reading dog Halla is also there to bring peace, encouragement, and good cheer to reading situations. 🐾</p><p>Mon, Feb. 2, Lippulaiva, 5:00–6:30 p.m. </p><p>Mon, Feb. 3, Iso Omena, 5:00–6:30 p.m.</p><p>Thu, Apr. 9, Tapiola, 5:00–6:00 p.m., with reading dog Halla</p><p>Come to the Helsingin seudun erilaiset oppijat (HERO) help and guidance for learning difficulties in finnish. In a calm and encouraging environment, you will receive practical help for everyday learning.</p>" }, "name": { "fi": "Maksutonta lukineuvontaa", "en": "Help and guidance for learning difficulties in finnish" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fog4m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3fogje", "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/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494421, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-09T08:04:19.780664Z", "last_modified_time": "2026-01-09T08:04:19.780679Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f74c9d9f-6abd-4a5f-bede-8832a059fd02.jpg", "name": "", "cropping": "262,0,938,675", "photographer_name": "HERO", "alt_text": "HERO Helsingin seudun erilaiset oppijat ry:n logo, jossa hehkulamppu, jolla kasvot.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494421/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T11:16:30.575868Z", "last_modified_time": "2026-01-09T08:04:27.924284Z", "date_published": null, "start_time": "2026-02-02T15:00:00Z", "end_time": "2026-02-02T16: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, "short_description": { "fi": "Tule Helsingin seudun erilaisten oppijoiden ry:n (HERO) lukineuvontaan! Saat rauhallisessa ja kannustavassa ympäristössä käytännön apua oppimisen arkeen.", "en": "In a calm and encouraging environment, you will receive practical help for everyday learning." }, "info_url": null, "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>Toisinaan mukana on myös ihastuttava Lukukoira Halla, joka tuo lukutilanteisiin rauhaa, rohkaisua ja hyvää mieltä 🐾</p><p>Ma 2.2 Lippulaiva klo 17-18:30 </p><p>Ma 2.3 Iso Omena klo 17-18:30</p><p>To 9.4 Tapiola klo 17-18, Lukukoira Halla mukana</p>", "en": "<p>📚💚 Tips and support for learning – you are not alone</p><p> </p><p>Do words get tangled up or numbers mixed up?Does the text jump from line to line, does reading feel difficult, or is it hard to grasp the big picture and find the essentials?</p><p>In a calm and encouraging environment, you will receive practical help for everyday learning.</p><p>Reading guidance provides you with:</p><p>✨ information about reading difficulties and other learning challenges</p><p>✨ concrete tips and easy exercises to support reading and writing</p><p>✨ guidance on useful applications and assistive devices</p><p>(e.g., audiobooks, speech recognition, text structuring tools)</p><p>✨ conversation assistance and support for everyday learning situations</p><p> </p><p>The service is free of charge, and advice is provided by HEROn's special education professionals.</p><p>Sometimes, the adorable reading dog Halla is also there to bring peace, encouragement, and good cheer to reading situations. 🐾</p><p>Mon, Feb. 2, Lippulaiva, 5:00–6:30 p.m. </p><p>Mon, Feb. 3, Iso Omena, 5:00–6:30 p.m.</p><p>Thu, Apr. 9, Tapiola, 5:00–6:00 p.m., with reading dog Halla</p><p>Come to the Helsingin seudun erilaiset oppijat (HERO) help and guidance for learning difficulties in finnish. In a calm and encouraging environment, you will receive practical help for everyday learning.</p>" }, "name": { "fi": "Maksutonta lukineuvontaa", "en": "Help and guidance for learning difficulties in finnish" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fogje/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn2dkfpwq", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfhmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfigi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfixe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfjg4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfjvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfkgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfkvi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfleq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfltm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfmb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfmqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfm7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfnnq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfn4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfoku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfoze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfphm/?format=api" } ], "images": [ { "id": 1490143, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-06T11:14:37.024924Z", "last_modified_time": "2025-08-06T11:14:37.024937Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/37c46fa5-c92b-4e19-9368-b9c6c030e4d8.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuvassa on tuolijumppaajia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-09T06:39:18.912696Z", "last_modified_time": "2026-01-09T06:39:18.912714Z", "date_published": null, "start_time": "2026-01-12T08:00:00Z", "end_time": "2026-05-04T08:05: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, "short_description": { "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!", "sv": "Stolgymnastik, stretching och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!", "en": "Chair gymnastics, bodywork and balance every Monday. (no instruction during public holidays) Welcome!" }, "info_url": null, "description": { "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ma klo 10.00-10.30 Tuolijumppa</p><p>Ma klo 10.35-11.05 Kehonhuolto &tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Stolgymnastik, stretching och balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Mån 10.00-10.30 Stolgymnastik</p><p>Mån 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>", "en": "<p>Chair gymnastics, bodywork and balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>Mon 10.00-10.30 Chair exercises</p><p>Mon 10.35-11.05 Body care & balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Tuolijumppa, kehonhuolto & tasapaino", "sv": "Stolgymnastik, stretching och balans", "en": "Chair gymnastics, body maintenance & balance" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": " Espoon liikuntatoimi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfpwq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn2dkfx7q", "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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfqfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfqtu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfrdq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfrti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfscy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfsre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfs7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkftne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkft3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfuju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfuyi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfvhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfvwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfwey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfwta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfxby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfxqq/?format=api" } ], "images": [ { "id": 1490143, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-06T11:14:37.024924Z", "last_modified_time": "2025-08-06T11:14:37.024937Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/37c46fa5-c92b-4e19-9368-b9c6c030e4d8.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuvassa on tuolijumppaajia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-09T06:37:32.787182Z", "last_modified_time": "2026-01-09T06:37:32.787205Z", "date_published": null, "start_time": "2026-01-15T07:30:00Z", "end_time": "2026-05-07T07:35: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, "short_description": { "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka torstai (ei ohjausta arkipyhinä). Tervetuloa!", "sv": "Stolgymnastik, stretching och balans varje torsdag (ingen undervisning under helgdagar). Välkommen!", "en": "Chair gymnastics, bodywork and balance every Thursday (no instruction during public holidays). Welcome!" }, "info_url": null, "description": { "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka torstai (ei ohjausta arkipyhinä).</p><p>Aikataulu:</p><p>To klo 09.30-10.00 Tuolijumppa</p><p>To klo 10.05-10.35 Kehonhuolto &tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Stolgymnastik, stretching och balans varje torsdag (ingen undervisning under helgdagar).</p><p>Schema:</p><p>Tors 09.30-10.00 Stolgymnastik</p><p>Tors 10.05-10.35 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p>", "en": "<p>Chair gymnastics, bodywork and balance every Thursday (no instruction during public holidays).</p><p>Schedule:</p><p>Thursday 09.30-10.00 Chair exercises</p><p>Thursday 10.05-10.35 Body care & balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Tuolijumppa, kehonhuolto & tasapaino", "sv": "Stolgymnastik, stretching och balans", "en": "Chair gymnastics, body maintenance & balance" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfx7q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn2dkf6ga", "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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfyoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfyyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfzc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfzny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkfz2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf2ey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf2pi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf2z4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf3ei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf3ou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf3ze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf4ou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf42u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf5f4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf5qe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf53m/?format=api" } ], "images": [ { "id": 1490143, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-06T11:14:37.024924Z", "last_modified_time": "2025-08-06T11:14:37.024937Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/37c46fa5-c92b-4e19-9368-b9c6c030e4d8.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kuvassa on tuolijumppaajia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-09T06:34:59.249581Z", "last_modified_time": "2026-01-09T06:34:59.249612Z", "date_published": null, "start_time": "2026-01-13T11:30:00Z", "end_time": "2026-05-05T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista. Tervetuloa!", "sv": "Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs. Välkommen!", "en": "Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required. Welcome!" }, "info_url": null, "description": { "fi": "<p>Kevyt seniorijumppa joka tiistai (ei ohjausta arkipyhinä). Ei ennakkoilmoittautumista.</p><p><br></p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p>", "sv": "<p>Lätt seniorträning varje tisdag (ingen undervisning på helgerna). Ingen föranmälan krävs.</p><p><br></p><p>Arrangör: Esbo idrottsförvaltning</p><p>Välkommen!</p>", "en": "<p>Light senior exercise every Tuesday (no instruction on public holidays). No pre-registration required.</p><p>Organiser: Espoo sports department</p><p>Welcome!</p>" }, "name": { "fi": "Kevyt seniorijumppa", "sv": "Lätt senior motion", "en": "Light senior exercise" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Espoon liikuntatoimi", "sv": "Espoon liikuntatoimi", "en": "Espoon liikuntatoimi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dkf6ga/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm2jladzq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm2jlabsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm2jlacfq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm2jlacxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm2jladiy/?format=api" } ], "images": [ { "id": 1490749, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-16T07:16:46.641203Z", "last_modified_time": "2024-05-16T07:16:46.641224Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/RitvanSalonki.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Avoin kirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490749/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-02T10:43:17.933883Z", "last_modified_time": "2026-01-08T13:32:57.215370Z", "date_published": null, "start_time": "2026-01-27T11:30:00Z", "end_time": "2026-04-21T12: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, "short_description": { "fi": "Ritvan salongissa keskustellaan kirjallisuudesta suomen kielellä.", "sv": "I Ritvas salong diskuteras litteratur på finska.", "en": "In Ritva's salon, literature is discussed in Finnish." }, "info_url": null, "description": { "fi": "<p>Ritvan salongissa keskustellaan kirjallisuudesta suomen kielellä Elina tilassa paitsi 24.2. Maurissa.</p><p>TIISTAINA 27.01. KIRJANA ON Sanna Nyqvist: RANNALLA </p><p>Miten kirjailijat löysivät meren Tammi 2024, 283 s</p><p> </p><p>Miten maisema muuttaa ihmistä - ja ihminen maisemaa?</p><p>Rannalla on kiehtova matka suolantuoksuiseen kulttuurihistoriaan</p><p>ja kirjailijoiden lempirannoille. (lainaus teoksen takakannesta)</p><p> </p><p>TIISTAINA 24.02. KIRJANA ON Laura Lähteenmäki: Marian kirja WSOY 2025, 358 s</p><p> </p><p>Lumoava romaani voimakastahtoisesta naisesta suurmiehen rinnalla.</p><p>Keväällä 1848 nuori Maria Piponius ojentaa sahan uimakopin avaimen</p><p>kaikkien tuntemalle piirilääkärille Elias Lönnrotille.</p><p>Psykologisesti oivaltava, aistillinen ja kielellisesti loistelias Marian kirja</p><p>tempaa lukijansa keskelle yhden 1800-luvun tunnetuimman suomalaisen</p><p>perheen elämää. (Lainaus teoksen takakannesta)</p><p> </p><p>TIISTAINA 24.03. KIRJANA ON Riitta Jalonen: KUKA SINUT OMISTAA Tammi 2013, 159 s</p><p> </p><p>Kenellä on oikeus päättää sijoitetun lapsen elämästä?</p><p>Voiko toisen omistaa? Riitta Jalosen herkkävireinen romaani pureutuu</p><p>ajankohtaiseen aiheeseen lapsen näkökulmasta.</p><p>(Lainaus teoksen takakannesta)</p><p> </p><p>TIISTAINA 21.4. KIRJANA ON Maylis de Kerangal: SILLAN SYNTY Siltala 2022, 297 s</p><p>suom. Ville Keynäs ja Anu Partanen</p><p> </p><p>Freskomainen romaani jättimäiseltä siltatyömaalta.</p><p>Romaani seuraa lukuisia päähenkilöitään myyttisen Kalifornian kultamailla</p><p>kesyttämässä luontoa, taivuttamassa sitä ihmisen tahtoon.</p><p>Hankaluuksitta ei jättihanke etene.</p><p>De Kerangal liikkuu eri rekistereissä vaivatta, keksii omia sanoja, nopeuttaa ja hidastaa kerrontaa mielensä mukaan - luo maailmoja kielellä.</p><p>(Lainaus romaanin takakannesta)</p><p> </p><p>Lämpimästi tervetuloa uudet ja nykyiset piiriläiset!</p>", "sv": "<p>I Ritvas salong diskuteras litteratur på finska.</p>", "en": "<p>In Ritva's salon, literature is discussed in Finnish.</p>" }, "name": { "fi": "Lukupiiri Ritvan Salonki", "sv": "Läsningscirkel Ritvas Salong", "en": "Reading circle Ritva's Salon" }, "provider_contact_info": null, "location_extra_info": { "fi": "Elina ja Mauri 24.2.", "sv": "Elina/ Mauri 24.2.", "en": "Elina / Mauri 24.2." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm2jladzq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3s7lyi", "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: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: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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7j3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7kky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7kzy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7lje/?format=api" } ], "images": [ { "id": 1494415, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T12:20:55.416294Z", "last_modified_time": "2026-01-08T12:20:55.416313Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d0f19a48-601f-4583-9f5c-4a93f244e384.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Kuvassa pörröinen harmaa-mustaturkkinen koira Kiukku", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494415/?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-08T12:30:10.464463Z", "last_modified_time": "2026-01-08T12:31:06.379149Z", "date_published": null, "start_time": "2026-01-19T15:00:00Z", "end_time": "2026-05-12T15: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, "short_description": { "fi": "Tule lukemaan Kiukulle", "sv": "Kom och läsa för Kiukku", "en": "Come and read for Kiukku" }, "info_url": null, "description": { "fi": "<p>Pörröturkki Kiukku on lempeä, vaikka nimi kertoo muuta. Kiukku tykkää kun luet sille. Tervetuloa siis opettelemaan lukemista ja antamaan rapsutuksia! Kiukku Ompun kirjastossa MA 19.1. MA 16.2. MA 30.2. ja TI 12.5. kello 17-18.</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Pälsbollen Kiukku är mild, även om namnet antyder något annat.</p><p>Kiukku tycker om när du läser för honom. Välkommen alltså att öva läsning — och ge lite klappar!</p><p>Kiukku i Omppus bibliotek</p><p>Må 19.1, Må 16.2, Må 30.2 och Ti 12.5 kl. 17–18</p><p><br></p><p>#helloespoo</p>", "en": "<p>Fluffy‑furred Kiukku is gentle, even if the name suggests otherwise.</p><p>Kiukku loves it when you read to him. So come practice your reading — and give some pats too!</p><p>Kiukku at Iso Omena Library</p><p>Mon 19 Jan, Mon 16 Feb, Mon 30 Feb, and Tue 12 May at 17:00–18:00.</p><p><br></p><p>#helloespoo</p>" }, "name": { "fi": "Lukukoira Kiukku Ompun kirjastossa", "sv": "Läshunden Kiukku", "en": "Reading pet Kiukku in Iso Omena library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Saturiutta", "sv": "Saturiutta", "en": "Saturiutta" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7lyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3s7taq", "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/helmet:11733/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7mhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7msu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7m5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7nh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7nsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7n5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7oii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7osy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7o5i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7phu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7psm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7p6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7qiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7qta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7q5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7riq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7rsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7r44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7siu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7svi/?format=api" } ], "images": [ { "id": 1494416, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-07T10:19:37.030836Z", "last_modified_time": "2026-01-07T10:19:37.030859Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fc5981b7-efa0-41c3-8fbc-68e9779052e5.jpg", "name": "", "cropping": "0,160,640,800", "photographer_name": "Unsplash: Sylwia Bartyzel", "alt_text": "Suomen lippu veneen perässä veden päällä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494416/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T12:30:52.783397Z", "last_modified_time": "2026-01-08T12:30:52.783416Z", "date_published": null, "start_time": "2026-01-12T15:30:00Z", "end_time": "2026-05-25T16: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, "short_description": { "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.", "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. ", "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. " }, "info_url": null, "description": { "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p>", "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p>", "en": "<p>A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p>" }, "name": { "fi": "Puhutaan suomea -kielikahvila", "sv": "Låt oss prata finska- det finska språkkaféet", "en": "Let's speak Finnish -Finnish language cafe" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kajuutta", "sv": "Kajuutta", "en": "Kajuutta" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3s7taq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67755", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-15T05:13:40.034247Z", "last_modified_time": "2025-12-15T05:13:40.034263Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-15T05:13:39.818236Z", "last_modified_time": "2026-01-08T12:13:21.982258Z", "date_published": null, "start_time": "2026-01-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.", "sv": "A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.", "en": "The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EEDF2456D343287C50F9285027B99000/Tuu_leikkiin_LOPPUUNVARATTU_", "sv": "http://www.annantalo.fi/sv/evenemang/event/EEDF2456D343287C50F9285027B99000/Ska_vi_leka_Fullbokad_", "en": "http://www.annantalo.fi/en/events/event/EEDF2456D343287C50F9285027B99000/Let_s_play_Fully_booked_" }, "description": { "fi": "<p>A-alus kulkee maalla, merellä ja ilmassa, avaruudessa, tulevaisuudessa ja ennen kaikkea mielikuvituksessa. Aluksen tärkein osa olet sinä. Sukelletaan yhdessä leikin siivin tulevaisuuden Annantaloon.</p><p>Mitä tulevaisuuden Annantalossa tapahtuu, keitä siellä tapaat? Mikä siellä yllättää? Tuu leikkiin!</p><p>Annantalossa järjestetään Tuu leikkiin! -tulevaisuusleikki 7.–31.1.2026. Tapahtumien avulla kerätään lasten, nuorten ja perheiden näkemyksiä siitä, millainen Annantalo voisi olla tulevaisuudessa perusparannuksen jälkeen. Tule mukaan ideoimaan ja unelmoimaan!</p><p>Mukaan leikkiin mahtuu 5 lasta aikuisen kanssa. Työpaja on tarkoitettu 3-6-vuotiaille. Työpajan kesto 90 min.</p><p><b>HUOM! Vain ennakkoon ilmoittautuneille.</b><br><u><a href=\"https://link.webropol.com/ep/tuuleikkiin1\">Ilmoittaudu mukaan työpajaan</a></u></p><p>Tapahtuma on suomenkielinen ja maksuton.</p><p>Annantalo – lasten, nuorten ja perheiden oma monitaiteinen taidekeskus – uudistuu perusparannushankkeen yhteydessä 2030-luvun alkupuolella. Nyt on mahdollisuus vaikuttaa talon tulevaisuuteen! Tavoitteena on tehdä Annantalosta lasten ja pienten kaupungin tekijöiden ylpeyden aihe ja yhä rakastetumpi helmi pääkaupunkiseudun lastenkulttuurikohteiden joukossa – talon kulttuurihistoriaa ja paikan henkeä kunnioittaen.</p>", "sv": "<p>A-skeppet färdas på land, till sjöss och i luften, i rymden, i framtiden och framför allt i fantasin.</p><p>Viktigast på skeppets är du för du kan påverka Annegårdens framtid genom att leka med oss och berätta allt möjligt. Vad händer och sker månne på Annegården i framtiden, enligt dig? Vem kommer du att att möta där? Vad kommer att överraska dig – och vad inte?</p><p>Vi ordnar framtidsleken Ska vi leka? på Annegården 7–31.1.2026. Med hjälp av evenemangen samlar vi in barns, ungas och familjers åsikter om hurdan Annegården kunde vara i framtiden efter renoveringen. Kom med, kläck vilda idéer och dröm om framtiden!</p><p>5 barn (med en vuxen) ryms med i leken. Verkstaden är avsedd för 3–6-åringar. Verkstaden är 90 minuter lång.</p><p><b>OBS! Endast med förhandsanmälan.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiin1\">Anmäl dig till verkstaden</a></u></p><p>Evenemanget är avgiftsfritt. Evenemanget är på finska.</p><p>Helsingfors konstcentrum för barn och unga, Annegården, renoveras i början av 2030-talet. Nu har stadsborna av alla åldrar möjlighet att påverka gårdens framtid. Också barn och unga är välkomna att planera och säga sin åsikt med början 7.1.2026.</p><p>Annegården är barns, ungas och familjers mångsidiga konstcentrum samt Helsingfors största aktör inom barnkultur. Renoveringsarbetet vid Annegården inleds 2032 enligt en preliminär tidtabell. Det är framför allt orsaker som har att göra med den fysiska byggnadens utrymmen och byggnadens tekniska livslängd som gör att staden nu går in för en renovering. Till exempel måste tillgängligheten bli bättre och utrymmena modernare.</p><p>Samtidigt får staden och stadsborna tillsammans en möjlighet att planera och utveckla själva verksamheten, alltså de tjänster staden erbjuder helsingforsborna i Annegården. Därför är det viktigt att så många som möjlighet av de olika användarna, nuvarande och framtida kunderna och partnerna tar tillfället i akt och berättar för staden om hur de ser de framtida behoven. Blicken riktas mot framtiden genom lek och fantasi från och med 7.1.2026.</p>", "en": "<p>The A-ship travels on land, sea and air, in space, in the future and, above all, through your imagination. You are the most important part of this ship.</p><p>Let's play together and dive into the Annantalo of the future. What is happening in the Annantalo of the future, who are you meeting there? What surprises are in store? Let’s Play!</p><p>‘Let’s Play!’ imaginary expedition into the future will be held at Annantalo from 7 to 31 January 2026. The events will be used to gather the views of children, young people and families on what Annantalo could be like in the future, after the renovation. Come and join us in brainstorming and dreaming!</p><p>The workshop can accommodate up to 5 children (with an adult) at a time, and it is intended for children aged 3–6. Workshop duration 90 min. <br> <br><b>PLEASE NOTE! Only for pre-registered participants.</b> <br><u><a href=\"https://link.webropol.com/ep/tuuleikkiin1\">Register for the workshop</a></u></p><p>The event is in Finnish and free of charge.</p><p>Annantalo Children and Youth Art Centre in Helsinki will be renovated in the early 2030s, and now the city residents – including children – have a chance to influence its future.</p><p>Annantalo is a multidisciplinary arts centre for children, young people and families and it is the largest children's culture operator in Helsinki. The construction works of the Annantalo renovation are scheduled to start in 2032. The renovation needs are essentially related to the physical facilities and the technical lifespan of the building, such as improving its accessibility and modernising the facilities. Major renovation projects also provide an opportunity to plan and develop the services offered. This is why Annantalo wants to engage in a dialogue with its different user groups, current customers and partners, and also potential future customers about their needs in the future. Looking to the future through play and make-believe from 7 January 2026 onwards.</p>" }, "name": { "fi": "Tuu leikkiin! [LOPPUUNVARATTU] – Tulevaisuusleikki tulevaisuuden tutkimusmatkailijoille", "sv": "Ska vi leka? [Fullbokad] – Framtidslek för framtidens upptäcktsresande", "en": "Let's play! [Fully booked] – An imaginary expedition into the future for explorers of the future" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Järj. Annantalo", "sv": "Arr. Annegården", "en": "Org. Annantalo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67755/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3fn5qq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnuuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnvma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnv4m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnwku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnw5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnxmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnx44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnylu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fny3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnzmi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fnz2q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn2ju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn2xq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn3fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn3tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn4dm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn4tm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn5bu/?format=api" } ], "images": [ { "id": 1494407, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-08T12:07:43.924416Z", "last_modified_time": "2026-01-08T12:07:43.924431Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/335587cc-465c-4cf6-94e0-7db32f2f5963.jpg", "name": "", "cropping": "384,0,1920,1536", "photographer_name": "", "alt_text": "Tasty snack", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494407/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-01-08T12:08:37.467359Z", "last_modified_time": "2026-01-08T12:08:37.467377Z", "date_published": null, "start_time": "2026-01-13T14:00:00Z", "end_time": "2026-05-19T14: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, "short_description": { "fi": "Tervetuloa mukaan Lippulaivan kirjastossa joka tiistai kello 16.00 - 17.30 järjestettävään Tasty Snack -kokkikerhoon.", "sv": "Välkommen till matlagningsklubben Tasty Snack varje tisdag kl. 16.00-17.30 på Lippulaiva bibliotek.", "en": "Welcome to the Tasty Snack cooking club every Tuesday from 16.00 to 17.30 at the Lippulaivan Library." }, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan Lippulaivan kirjastossa joka tiistai ja perjantai järjestettävään kokkikerhoon</p><p>Kokkikerhossa valmistamme yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia To Go -snackseja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Sambuuseja? Tule mukaan oppimaan ja herkuttelemaan! Ruoka-aineallergiat ja erityisruokavaliot huomioidaan ryhmän toiminnassa.</p><p>Tilaisuus on suomeksi, mutta voit osallistua ryhmään myös auttavalla suomen taidolla.</p><p>Ryhmään ei tarvitse ilmoittautua, ja ryhmään mahtuu 12 osallistujaa. Voit kysyä lisätietoa osoitteesta info@asadfriigym.fi.</p><p>Tapahtuman järjestää Harrastuspolku Espoo.</p><p>Huom! Kerhoa ei pidetä pyhinä, eikä loma-aikoina.</p>", "sv": "<p>Välkommen till Tasty Snack -matlagningsklubben som äger rum varje tisdag och fredag på Lippulaivans bibliotek.</p><p>I mellanmålsgruppen tillverkar vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga snacks, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Har du provat att baka bröd själv? Eller laga bubbelte? Samosas? Kom med och lär dig och ät gott! Födoämnesallergier och specialdieter beaktas i gruppens verksamhet.</p><p>Detta evenemang är på finska.</p><p>Du behöver inte anmäla dig till den här gruppen och det ryms med 12 deltagare. Om du behöver mer information, skicka e-post till info@asadfriigym.fi.</p>", "en": "<p>Welcome to the Tasty Snack -cooking club, we work together to prepare simple, fun and tasty snacks, treats and dishes. The menu includes fast and affordable To Go snacks, surprising flavour trends from around the world, guaranteed snack staples and recipes the participants want to prepare. Have you tried making your own bread? What about boba tea? Sambuus pastries? Come and learn and enjoy the treats you have created! Food allergies and special diets are taken into account in the group's activities.</p><p>This hobby is organised in Finnish but you can take part in the group if you are a beginner in learning Finnish.</p><p>You don't need registrate for this group, and there is 12 places in the group. You can ask more information from e-mail info@asadfriigym.fi.</p>" }, "name": { "fi": "Tasty Snack- kokkikerho lapsille ja nuorille", "sv": "Tasty Snack- matlagningsklubb för barn och ungdomar", "en": "Tasty Snack- cooking club for children and young people" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kapyysi", "sv": "Kapyysi", "en": "Kapyysi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn5qq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3fof2i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le: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:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn6b4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn6rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn7ai/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn7pe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fn754/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foani/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foa3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foblu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fob3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3focma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foc4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fodm4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fod24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foeky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3foe2a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fofli/?format=api" } ], "images": [ { "id": 1494408, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-08T11:47:21.371510Z", "last_modified_time": "2026-01-08T11:47:21.371526Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ce0a405d-6fd3-455e-8e86-67c000133340.jpg", "name": "", "cropping": "384,0,1920,1536", "photographer_name": "", "alt_text": "Tasty snack", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494408/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-01-08T11:47:52.689644Z", "last_modified_time": "2026-01-08T11:47:52.689668Z", "date_published": null, "start_time": "2026-01-16T13:30:00Z", "end_time": "2026-05-22T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tervetuloa mukaan Lippulaivan kirjastossa joka perjantai kello 15.30 - 17.00 järjestettävään Tasty Snack -kokkikerhoon.", "sv": "Välkommen till matlagningsklubben Tasty Snack varje fredag kl. 15.30-17.00 på Lippulaiva bibliotek.", "en": "Welcome to the Tasty Snack cooking club every Friday from 15.30 to 17.00 at the Lippulaivan Library." }, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan Lippulaivan kirjastossa joka tiistai ja perjantai järjestettävään kokkikerhoon</p><p>Kokkikerhossa valmistamme yhdessä simppeleitä, hauskoja ja maukkaita välipaloja, herkkuja ja ruokia. Ruokalistalle kuuluu nopeita ja edullisia To Go -snackseja, yllätyksellisiä makutrendejä maailmalta, takuuvarmoja peruspurtavia sekä toivereseptejä. Oletko kokeillut tehdä itse leipää? Entäs Bobateetä? Sambuuseja? Tule mukaan oppimaan ja herkuttelemaan! Ruoka-aineallergiat ja erityisruokavaliot huomioidaan ryhmän toiminnassa.</p><p>Tilaisuus on suomeksi, mutta voit osallistua ryhmään myös auttavalla suomen taidolla.</p><p>Ryhmään ei tarvitse ilmoittautua, ja ryhmään mahtuu 12 osallistujaa. Voit kysyä lisätietoa osoitteesta info@asadfriigym.fi.</p><p>Tapahtuman järjestää Harrastuspolku Espoo.</p><p>Huom! Kerhoa ei pidetä pyhinä, eikä loma-aikoina.</p>", "sv": "<p>Välkommen till Tasty Snack -matlagningsklubben som äger rum varje tisdag och fredag på Lippulaivans bibliotek.</p><p>I mellanmålsgruppen tillverkar vi enkla, roliga och smakliga mellanmål, delikatesser och maträtter tillsammans. På menyn finns snabba och förmånliga snacks, överraskande smaktrender från hela världen, bombsäkra tilltugg samt önskerecept. Har du provat att baka bröd själv? Eller laga bubbelte? Samosas? Kom med och lär dig och ät gott! Födoämnesallergier och specialdieter beaktas i gruppens verksamhet.</p><p>Detta evenemang är på finska.</p><p>Du behöver inte anmäla dig till den här gruppen och det ryms med 12 deltagare. Om du behöver mer information, skicka e-post till info@asadfriigym.fi.</p>", "en": "<p>Welcome to the Tasty Snack -cooking club, we work together to prepare simple, fun and tasty snacks, treats and dishes. The menu includes fast and affordable To Go snacks, surprising flavour trends from around the world, guaranteed snack staples and recipes the participants want to prepare. Have you tried making your own bread? What about boba tea? Sambuus pastries? Come and learn and enjoy the treats you have created! Food allergies and special diets are taken into account in the group's activities.</p><p>This hobby is organised in Finnish but you can take part in the group if you are a beginner in learning Finnish.</p><p>You don't need registrate for this group, and there is 12 places in the group. You can ask more information from e-mail info@asadfriigym.fi.</p>" }, "name": { "fi": "Tasty Snack- kokkikerho lapsille ja nuorille", "sv": "Tasty Snack- matlagningsklubb för barn och ungdomar", "en": "Tasty Snack- cooking club for children and young people" }, "provider_contact_info": null, "location_extra_info": { "fi": "Kapyysi", "sv": "Kapyysi", "en": "Kapyysi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fof2i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz3fohqa", "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: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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494410, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T11:14:58.461693Z", "last_modified_time": "2026-01-08T11:14:58.461708Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7978d04c-c8c1-46f5-89c4-9e54d8abd894.jpg", "name": "", "cropping": "134,0,604,471", "photographer_name": "", "alt_text": "Kuvassa lukee englanniksi kamppailulajityöpajan tiedot", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494410/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T11:20:40.835319Z", "last_modified_time": "2026-01-08T11:40:52.152670Z", "date_published": null, "start_time": "2026-01-11T11:30:00Z", "end_time": "2026-01-11T13: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, "short_description": { "fi": "Tervetuloa osallistumaan lempeään perinteiseen taistelulajien työpajaan. Työpaja pidetään englanniksi.", "en": "Welcome to join traditional martial arts workshop in Lippulaiva library on 11.1. from 13:30 - 15:30 in Salonki" }, "info_url": null, "description": { "fi": "<p>A Gentle Traditional Martial Arts Workshop</p><p> </p><p>The event is open for event and free of charge. Welcome!</p><p> </p><p>Led by Stefan Wu (Indonesia)</p><p>Inspired by Shaolin Kungfu & Indonesian Silat</p><p> </p><p>A calm, non-contact practice focusing on balance, body awareness & breathing</p><p> </p><p><strong>Languages</strong></p><p>Chinese · English</p>", "en": "<p>Hellävarainen perinteinen taistelulajien työpaja kaikenikäisille. Tapahtuma on avoin kaikille ja maksuton. Tervetuloa!</p><p><br></p><p>Ohjaaja: Stefan Wu (Indonesia)</p><p>Inspiraationa Shaolin Kungfu ja Indonesian Silat</p><p><br></p><p>Rauhallinen, kontaktiton harjoitus, jossa keskitytään tasapainoon, kehon tietoisuuteen ja hengitykseen.</p><p><br></p><p><strong>Kielet</strong></p><p>Kiina · Englanti</p>" }, "name": { "fi": "Rooted and light - Hellävarainen perinteinen taistelulajien työpaja", "en": "Rooted and light - A Gentle Traditional Martial Arts Workshop" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz3fohqa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnz2jspue", "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:agggfz7aem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz2jsml4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz2jsnqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz2jsohu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz2jso5u/?format=api" } ], "images": [ { "id": 1494402, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-08T09:59:34.903566Z", "last_modified_time": "2026-01-08T09:59:34.903582Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/38415f75-b693-4338-a7e1-234b551391d1.jpg", "name": "", "cropping": "274,0,2602,2327", "photographer_name": "", "alt_text": "Cara lukukoira", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494402/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-08T09:59:48.492378Z", "last_modified_time": "2026-01-08T09:59:48.492395Z", "date_published": null, "start_time": "2026-01-28T15:45:00Z", "end_time": "2026-04-22T15: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, "short_description": { "fi": "Lukulemmikki Cara odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:45 - 18:30.", "sv": "Läshunden Cara ser fram emot läsare på Lippulaiva biblioteket kl. 17:45 - 18:30.", "en": "Reading Buddy Cara is eagerly awaiting readers at Lippulaiva Library from 17:45 - 18:30." }, "info_url": null, "description": { "fi": "<p>Lukukoira Cara odottaa innolla lukijoita Lippulaivan kirjastoon klo 17:45 - 18:30 .</p><p>Kevään 2026 lukukerrat:</p><p>Ke 28.1.</p><p>Ke 25.2.</p><p>Ke 25.3.</p><p>Ke 22.4.</p><p>Tervetuloa!</p>", "sv": "<p>Läshunden Cara ser fram emot läsare på Lippulaiva biblioteket kl. 17:45 - 18:30.</p><p>Läsdagar våren 2026</p><p>Ons 28.1.</p><p>Ons 25.2.</p><p>Ons 25.3.</p><p>Ons 22.4.</p><p>Välkommen!</p>", "en": "<p>Reading Buddy Cara is eagerly awaiting readers at Lippulaiva Library from 17:45 to 18:30.</p><p>Spring semester 2026:</p><p>Wednesday 28.1.</p><p>Wednesday 25.3.</p><p>Wednesday 25.3.</p><p>Wednesday 22.4.</p><p>Welcome!</p>" }, "name": { "fi": "Lukukoira Cara", "sv": "Läshunden Cara", "en": "Reading Buddy Cara" }, "provider_contact_info": null, "location_extra_info": { "fi": "Komentosilta", "sv": "Komentosilta", "en": "Komentosilta" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnz2jspue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzz35nn4", "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/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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35gaa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35goy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35g2i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35hhi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35htm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35h7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35in4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35i24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35jhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35jsy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35j6m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35kku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35kw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35lcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35lo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35l3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35mgq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35mua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35naq/?format=api" } ], "images": [ { "id": 1494400, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-08T08:19:17.616707Z", "last_modified_time": "2026-01-08T08:19:17.616723Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/05b3e43c-3700-4186-9c1e-77857a84fb52.png", "name": "", "cropping": "96,0,322,226", "photographer_name": "", "alt_text": "Kaksi aikuista ja yksi lapsi kippistävät kahvikupeilla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494400/?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-08T08:32:06.015688Z", "last_modified_time": "2026-01-08T08:32:06.015708Z", "date_published": null, "start_time": "2026-01-12T08:00:00Z", "end_time": "2026-05-25T08: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, "short_description": { "fi": "Tule kahvikupposelle ja nauttimaan muiden lapsiperheiden seurasta!", "sv": "Kom och ta en kopp kaffe och umgås med andra barnfamiljer! Arrangör: Espoonlahti församling.", "en": "Come for a cup of coffee and enjoy the company of other families with children! " }, "info_url": null, "description": { "fi": "<p>Tule kahvikupposelle ja nauttimaan muiden lapsiperheiden seurasta! Järjestäjänä Espoonlahden seurakunta. </p><p>Maanantaisin 12.1. alkaen klo 10-11.30. Lippulaivan kirjasto, 3,krs. Kajuutta. </p><p>#helloespoo</p>", "sv": "<p>Kom och ta en kopp kaffe och umgås med andra barnfamiljer! Arrangör: Espoonlahti församling.</p><p>Måndagar från och med 12 januari, kl. 10.00–11.30. Lippulaiva-biblioteket, 3:e våningen, Kajuutta. </p><p>#helloespoo</p>", "en": "<p>Come for a cup of coffee and enjoy the company of other families with children! Organized by the Espoonlahden seurakunta</p><p>Mondays starting January 12, 10:00–11:30 a.m. Lippulaiva Library, 3rd floor, Kajuutta. </p><p>#helloespoo</p>" }, "name": { "fi": "Perhekahvila", "sv": "Familjecafé", "en": "Family café" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzz35nn4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzseycm4", "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:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p7349/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexgou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexjja/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexlxq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexohq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexqwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsextei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexvwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsexyhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsex22i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsex5m4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzsex734/?format=api" } ], "images": [ { "id": 1494394, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-07T14:04:13.505248Z", "last_modified_time": "2026-01-07T14:04:13.505263Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/746f41b2-06ad-4ce4-ba8b-29914d48f61a.PNG", "name": "", "cropping": "0,0,756,756", "photographer_name": "", "alt_text": "graafinen kuva laskusta, laskimesta ja kolikkopinosta ja teksti: Talousneuvola. Tule pienen tai suuren talouskysymyksen kanssa - etsitään ratkaisuja yhdessä!", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494394/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-07T14:25:10.875922Z", "last_modified_time": "2026-01-07T14:25:10.875940Z", "date_published": null, "start_time": "2026-01-16T08:00:00Z", "end_time": "2026-06-05T11: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, "short_description": { "fi": "Tule pienen tai suuren talouskysymyksen kanssa - etsitään ratkaisua yhdessä!", "sv": "Kom med en liten eller stor ekonomifråga – vi hittar en lösning tillsammans!", "en": "Come with a small or big financial question – let’s find a solution together!" }, "info_url": { "fi": "https://www.oikeuspalveluvirasto.fi/talous-ja-velkaneuvonta/palvelumme/talousneuvola/", "sv": "https://www.oikeuspalveluvirasto.fi/sv/ekonomi-och-skuldradgivning/vara-tjanster/ekonomiradgivningen/", "en": "https://www.oikeuspalveluvirasto.fi/en/financial-and-debt-counselling/our-services/financial-counselling-clinic/" }, "description": { "fi": "<p>Talousneuvola on matalan kynnyksen palvelu, jossa voit keskustella ilman ajanvarausta arjen raha-asioista. Siellä voit pohtia tilannettasi, saada neuvoja ja kartoittaa vaihtoehtojasi asiantuntijoiden kanssa. Talousneuvolassa voit keskustella useiden eri ammattilaisten kanssa. Oikeusaputoimistojen talous- ja velkaneuvonta on yksi Talousneuvolan asiantuntijoista.</p><p><br></p><p>Paikan päällä mahdollisuus asioida tulkin kanssa,</p><p>puhelimitse palvelu suomeksi ja englanniksi.</p><p>Aukioloajat: Perjantaisin klo 10-14, vuoroviikoin paikan päällä Ison Omenan kirjaston kokoushuone Aallossta ja vuoroviikoin puhelimitse 040 639 39 44.</p><p><br></p><p>Kirjaston päivämäärät: </p><p>16.1.2026 </p><p>30.1.2026 </p><p>13.2.2026 </p><p>27.2.2026 </p><p>13.3.2026 </p><p>27.3.2026</p><p>10.4.2026</p><p>24.4.2026 </p><p>8.5.2026 </p><p>22.5.2026 </p><p>5.6.2026 </p><p><br></p><p>Puhelinpalvelun päivämäärät: </p><p>23.1.2026 </p><p>6.2.2026 </p><p>20.2.2026 </p><p>6.3.2026 </p><p>20.3.2026</p><p>17.4.2026</p><p>15.5.2026</p><p>29.5.2026</p><p>12.6.2026</p>", "sv": "<p>Ekonomirådgivningen är en tjänst där du med låg tröskel kan diskutera vardagliga penningfrågor utan tidsbokning. Du kan reflektera över din situation, få råd och kartlägga dina alternativ tillsammans med sakkunniga. Hos ekonomirådgivningen kan du diskutera med flera olika sakkunniga, som t.ex. med ekonomi- och skuldrådgivare som arbetar under rättshjälpsbyråernas ekonomi- och skuldrådgivning.</p><p>På plats finns möjlighet att få hjälp med tolk.</p><p>Per telefon erbjuds service på finska och engelska.</p><p>Öppettider: Fredagar kl. 10–14.</p><p>Servicen ges varannan vecka på plats i Ison Omena-bibliotekets mötesrum Aallossa och varannan vecka per telefon på 040 639 39 44.</p><p><br></p><p>Datum för service på biblioteket:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.2.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>10.4.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>5.6.2026</p><p>Datum för telefonservice:</p><p>23.1.2026</p><p>6.2.2026</p><p>20.2.2026</p><p>6.3.2026</p><p>20.3.2026</p><p>17.4.2026</p><p>15.5.2026</p><p>29.5.2026</p><p>12.6.2026</p>", "en": "<p>Financial Counselling Clinics are a low-threshold service for discussing everyday financial questions without booking an appointment. You can reflect on your situation, receive advice and go through different options with experts. At a Financial Counselling Clinic, you can talk to various professionals e.g. Financial and debt counsellors working at legal aid offices.</p><p><br></p><p>On-site, you have the possibility to use an interpreter.</p><p>By phone, the service is available in Finnish and English.</p><p>Opening hours: Fridays from 10:00 to 14:00.</p><p>Service is provided every other week on-site at Iso Omena Library, meeting room Aalto, and every other week by phone at 040 639 39 44.</p><p><br></p><p>On-site service dates (Library):</p><p>16 January 2026</p><p>30 January 2026</p><p>13 February 2026</p><p>27 February 2026</p><p>13 March 2026</p><p>27 March 2026</p><p>10 April 2026</p><p>24 April 2026</p><p>8 May 2026</p><p>22 May 2026</p><p>5 June 2026</p><p>Phone service dates:</p><p>23 January 2026</p><p>6 February 2026</p><p>20 February 2026</p><p>6 March 2026</p><p>20 March 2026</p><p>17 April 2026</p><p>15 May 2026</p><p>29 May 2026</p><p>12 June 2026</p>" }, "name": { "fi": "Talousneuvola", "sv": "Ekonomirådgivningen", "en": "Financial Counselling Clinic" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aalto", "sv": "Aalto", "en": "Aalto" }, "provider": { "fi": "Oikeuspalveluvirasto", "sv": "Oikeuspalveluvirasto", "en": "Oikeuspalveluvirasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzseycm4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzrjjwjq", "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: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: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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjs4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjtya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjuiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjuym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjvjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjvze/?format=api" } ], "images": [ { "id": 1494393, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-07T12:55:19.468439Z", "last_modified_time": "2026-01-07T12:55:19.468455Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/131815e1-1596-4de0-9259-c6c3e5a9f2f1.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Keltaisella taustalla kuvattu graafisesti ihmisiä pöydän ympärillä puhumassa innokkaasti keskenään ja teksti English book club", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494393/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-07T13:11:56.342974Z", "last_modified_time": "2026-01-07T13:11:56.342993Z", "date_published": null, "start_time": "2026-01-29T16:00:00Z", "end_time": "2026-06-25T16: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, "short_description": { "fi": "Kevään sarjamme teemana on \"Muurit elämässämme\"", "sv": "Temat för vårens serie är \"Våra livs väggar.\"", "en": "Our theme for this spring series is \"The Walls of Our Lives.\" " }, "info_url": null, "description": { "fi": "<p>Kevään sarjamme teemana on \"Muurit elämässämme\"</p><p>Näiden viiden kuukauden aikana tutkimme rajoja, jotka muovaavat meitä. Ne voivat olla historian fyysisiä muureja, avioliiton rajoja, luonnon vuodenaikojen asettamia esteitä tai omien muistojen näkymättömiä muureja. Lukiessamme pohdimme, miten nämä “muurit” eivät vain ympäröi meitä. Ne muuttavat meitä ajan myötä – ehkä jopa niin, että niistä tulee osa “DNA:tamme” ja sitä perintöä, jonka jätämme jälkeemme.</p><p>Keskustelu ja kirjat ovat englanninkielisiä. </p><p><br></p><p><br></p><p> January: A Winter Book by Tove Jansson</p><p> Walls: Isolation & Memory</p><p><br></p><p> February: Dept. of Speculation by Jenny Offill</p><p> Walls: Identity & Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls: Endurance & Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls: The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy & Borders</p><p><br></p><p> </p><p><br></p><p><br></p><p><br></p>", "sv": "<p>Temat för vårens serie är \"Våra livs väggar.\"</p><p>Under dessa fem månader utforskar vi de gränser som formar oss. Det kan vara historiens fysiska väggar, hemmets väggar i ett äktenskap, naturens årstidsväggar eller de osynliga väggarna i våra egna minnen. När vi läser funderar vi över hur dessa “väggar” inte bara omger oss. De förändrar oss så småningom – kanske till och med så att de blir en del av vårt eget “DNA” och det arv vi lämnar efter oss.</p><p>Vi diskutera på engelska. </p><p><br></p><p><br></p><p><br></p><p> January: A Winter Book by Tove Jansson</p><p> Walls: Isolation & Memory</p><p><br></p><p> February: Dept. of Speculation by Jenny Offill</p><p> Walls: Identity & Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls: Endurance & Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls: The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy & Borders</p>", "en": "<p>Our theme for this spring series is \"The Walls of Our Lives.\" </p><p>Throughout these five months, we will explore the boundaries that shape us. Whether they are the physical walls of history, the domestic walls of a marriage, the seasonal walls of nature, or the invisible walls of our own memories. As we read, we consider how these \"walls\" don't just surround us. They eventually change us, perhaps even becoming part of our very \"DNA\" and the legacy we leave behind.</p><p><br></p><p><br></p><p><br></p><p> January: A Winter Book by Tove Jansson</p><p> Walls: Isolation & Memory</p><p><br></p><p> February: Dept. of Speculation by Jenny Offill</p><p> Walls: Identity & Intimacy</p><p><br></p><p>March The Old Man and the Sea by Ernest Hemingway</p><p>Walls: Endurance & Nature</p><p><br></p><p>April: Time Shelter by Georgi Gospodinov</p><p>Walls: The Trap of the Past</p><p><br></p><p>May: The Fall of the Berlin Wall: The Revolutionary Legacy of 1989 by Jeffrey A. Engel</p><p> Walls: Legacy & Borders</p><p><br></p><p>#helloespoo</p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "sv": "Bokcirkel på engelska", "en": "English Book Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aalto", "sv": "Aalto", "en": "Aalto" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjwjq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzrjj2oi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjxh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjx7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjysi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjzh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjjz24/?format=api" } ], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:25:42.568663Z", "last_modified_time": "2026-01-07T12:25:42.568681Z", "date_published": null, "start_time": "2026-01-12T11:00:00Z", "end_time": "2026-05-11T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle viitenä maanantaina klo 13:00 - 14:15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.00 - 14.15</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:00 - 14:15.</p><ul><li>12.1.</li><li>9.2.</li><li>9.3.</li><li>13.4.</li><li>11.5.</li></ul>" }, "name": { "fi": "Välkky Hiirisuon asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj2oi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnzrjj6bm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20324/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3a4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj3vy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj4im/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj43e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj5oq/?format=api" } ], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "name": "", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?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-07T12:23:07.300657Z", "last_modified_time": "2026-01-07T12:23:07.300674Z", "date_published": null, "start_time": "2026-01-09T11:00:00Z", "end_time": "2026-05-15T11:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Karakallion asukaspuistolle viitenä perjantaina klo 13 - 14:15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>", "sv": "<p>Välkky kör till Karakallios invånarpark! En gång i månaden kl. 13.00 - 14.15</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>", "en": "<p>Välkky arrives at the Karakallio residents' park! Once a month at 13:00 - 14:15.</p><ul><li>9.1.</li><li>6.2.</li><li>6.3.</li><li>17.4.</li><li>15.5.</li></ul>" }, "name": { "fi": "Välkky Karakallion asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnzrjj6bm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }