Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=116
{ "meta": { "count": 29982, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=117", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=115" }, "data": [ { "id": "espoo_le:agozxhs5eq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "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": 1824115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-12T11:00:10.372253Z", "last_modified_time": "2026-04-12T11:00:10.372265Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/99036925-6c98-4499-b195-e8ca42cca306.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva, jossa lastenvaunut esiintymislavalla.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-12T11:00:36.750258Z", "last_modified_time": "2026-04-12T11:00:36.750274Z", "date_published": null, "start_time": "2026-05-04T15:30:00Z", "end_time": "2026-05-04T16:20:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yhteisöteatteri Jäänsärkijöiden improryhmä 'Varatut Kätilöt' " }, "location_extra_info": { "fi": "Lava" }, "provider": null, "short_description": { "fi": "Yhteisöteatteri Jäänsärkijöiden improryhmä 'Varatut Kätilöt' esittää improvisoituja kohtauksia." }, "info_url": null, "description": { "fi": "<p>Yhteisöteatteri Jäänsärkijöiden improryhmä 'Varatut Kätilöt' esittää improvisoituja kohtauksia Sellon kirjaston aulassa maanantaina 4.5. klo 18.30. Vapaa pääsy, kesto noin 50 minuuttia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs5eq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhs5sq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1824116, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-12T10:48:07.127822Z", "last_modified_time": "2026-04-12T10:48:07.127836Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f5a223e9-7d8b-4806-8725-d198485c55f3.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva, jossa lapset harrastavat capoeiraa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824116/?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-04-12T10:48:14.375446Z", "last_modified_time": "2026-04-12T10:48:14.375461Z", "date_published": null, "start_time": "2026-05-10T11:15:00Z", "end_time": "2026-05-10T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten Capoeira työpaja", "sv": "Capoeira-workshop för barn", "en": "Capoeira workshop for children" }, "location_extra_info": { "fi": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "provider": { "fi": "Kulttuuriyhdistys Naava ry", "sv": "Kulttuuriyhdistys Naava ry", "en": "Kulttuuriyhdistys Naava ry" }, "short_description": { "fi": "Lasten Capoeira työpaja", "sv": "Capoeira-workshop för barn", "en": "Capoeira workshop for children" }, "info_url": null, "description": { "fi": "<p>Capoeira on brasilialainen kamppailulaji, tanssin ja fyysisen pelin yhteensulautuma. Capoeira on moniulotteinen laji ja sitä pelataan itse soitetun ja lauletun afrobrasilialaisen musiikin tahdissa.</p><p><br></p><p><br></p>", "sv": "<p>Capoeira är en brasiliansk kampsport som förenar dans och fysisk lek. Capoeira är en mångfacetterad sport som utövas till tonerna av afro-brasiliansk musik som spelas och sjungs på plats.</p><p><br></p><p><br></p>", "en": "<p>Capoeira is a Brazilian martial art that blends dance and physical play. It is a multifaceted art form practiced to the rhythm of live Afro-Brazilian music.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs5sq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhs6xy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?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": 1824119, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-11T10:23:02.281333Z", "last_modified_time": "2026-04-11T10:23:02.281353Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5a562f93-a7e9-4e9e-bbf5-c4f846341e10.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Heed Finland", "alt_text": "ihmisiä pöytien äärellä mittaamassa terveysarvojaan", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824119/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-11T10:25:28.491232Z", "last_modified_time": "2026-04-11T10:25:28.491248Z", "date_published": null, "start_time": "2026-04-25T07:00:00Z", "end_time": "2026-04-25T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hyvinvointipäivä maahanmuuttajille: ilmaisia terveystarkastuksia ja neuvontaa", "en": "Well-being day for immigrants: free health checks and guidance" }, "location_extra_info": { "fi": "Sisääntuloaula", "en": "Entrance hall" }, "provider": { "fi": "HEED Finland ry", "en": "HEED Finland ry" }, "short_description": { "fi": "Huhtikuussa 25.4. teemme ilmaisia terveystarkastuksia ja annamme terveysneuvontaa Entressen kirjastossa kello 10-14.", "en": "On April 25 we’ll perform free health checks and give guidance on health matters at the Entresse Library, Espoon keskus, Espoo from 10 a.m. until 2 p.m." }, "info_url": { "fi": "https://www.heedfinland.fi/events/entresse2026/", "en": "https://www.heedfinland.fi/events/entresse2026/" }, "description": { "fi": "HYVINVOINTIPÄIVÄ MAAHANMUUTTAJILLE ENTRESSEN KIRJASTOSSA, ESPOOSSA:\nILMAISIA TERVEYSTARKASTUKSIA JA NEUVONTAA<p><strong>Huhtikuussa 25.4. teemme ilmaisia terveystarkastuksia ja annamme terveysneuvontaa Entressen kirjastossa kello 10-14.</strong></p><p>Hyvinvointipäivä Entressen kirjastossa on maksuton, ja avoin kaikille maahanmuuttajille. Terveystarkastusten jälkeen tarjoamme ilmaista, terveellistä välipalaa.</p><p>Korkea verenpaine, diabetes, infarktit, masennus, syöpä, maksa- ja munuaissairaudet, jne. yleistyvät myös maahanmuuttajien keskuudessa. Ennaltaehkäisy on parempi kuin hoito, ja säännölliset terveystarkastukset voivat auttaa havaitsemaan nämä sairaudet ajoissa!</p><p>Ilmaiset testit ja neuvontaa:</p><p>– Verenpaine</p><p>– Hemoglobiini</p><p>– Kehonkoostumus</p><p>– Kokonaiskolesteroli</p><p>– Verensokeri</p><p>Ilmaista neuvontaa:</p><p>– Vitamiinit D3 ja K2, kalsium</p><p>Jos haluat että mittaamme kokonaiskolesterisi ja verensokerisi, tule aikaisin aamusta äläkä syö aamiaista. Jotta tulokset olisivat tarkkoja, sinun on oltava syömättä 10-14 tuntia ennen testiä.</p><p>Kehonkoostumusmittausta varten on otettava pois kengät ja sukat, eli otathan tämän huomioon.</p><p>Terveystarkastus on avoin kaikille yli 18-vuotiaille.</p><p>Tapahtuman järjestää HEED Finlandin Terveys on rikkautta -hanke yhteistyössä Diak-ammattikorkeakoulun kanssa.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "WELL-BEING DAY FOR IMMIGRANTS AT ENTRESSE, ESPOON KESKUS:\nFREE HEALTH CHECKS AND GUIDANCE<p><strong>On April 25 we’ll perform free health checks and give guidance on health matters at the Entresse Library, Espoon keskus, Espoo from 10 a.m. until 2 p.m.</strong></p><p>Our Well-being Day at the Entresse Library is free of charge and open for all immigrants. After the health check we offer free, healthy snacks.</p><p>High blood pressure, diabetes, stroke, depression, cancer, liver and kidney problems, &c. are increasingly prevalent within the immigrant communities. Prevention is better than a cure, and regular health checks can help detect these diseases early on!</p><p>We offer free testing and guidance:</p><p>– Blood pressure</p><p>– Haemoglobin</p><p>– Body composition</p><p>– Total cholesterol</p><p>– Blood sugar</p><p>We offer free guidance:</p><p>– Vitamin D and K2, calcium</p><p>If you want to have you cholesterol and blood sugar levels tested, come early and without having breakfast. You need to fast for 10-14 for the test results to be accurate.</p><p>For the body composition test you will need to remove your shoes and socks, so please take this into account.</p><p>The health checks are available for anyone over the age of 18.</p><p>The event is organised by the HEED Finland project Health is Wealth in collaboration with the Diak University of Applied Sciences.</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs6xy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agny5rqv3m", "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:agggfz65fm/?format=api" }, { "@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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqy5a/?format=api" }, "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": 1824120, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-11T08:13:45.563661Z", "last_modified_time": "2026-04-11T08:13:45.563680Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fd012638-475d-44a7-acf3-82054e071d90.PNG", "name": "", "cropping": "0,0,2380,2380", "photographer_name": "", "alt_text": "Tapahtuman kuvausteksti julsiteessa. Turkoosipohja ja kuvia ihmisistä riemuitsemassa, lentämässä lentokoneella, itkemässä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824120/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-05T14:46:18.569216Z", "last_modified_time": "2026-04-11T08:15:06.589876Z", "date_published": null, "start_time": "2026-04-24T13:00:00Z", "end_time": "2026-04-24T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Connectoria ", "sv": "Connectoria", "en": "Connectoria" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen.", "sv": "Evenemanget för människor samman över generations- och kulturgränser.", "en": "The event brings people together across generations and cultures" }, "info_url": null, "description": { "fi": "<p>Tapahtuma tuo yhteen ihmisiä yli sukupolvi- ja kulttuurirajojen. Connectoriassa kerrotaan tarinoita ja jaetaan kokemuksia ympäri maailman eri ikäisten ihmisten välillä. Tapahtumassa pääset tutustumaan mielenkiintoisiin ihmisiin, joita et ehkä tavoittaisi tavallisessa arjessasi.</p><p>Tapaamme kerran kuussa perjantai-iltaisin. Joka kerta tutustumme toisiimme lisää jonkin erilaisen teeman ympärillä. Tervetuloa mukaan milloin tahansa. Tarjoamme aina myös kahvia ja teetä ja hieman syötävää.</p><p>Vuoden 2026 syksyn Connectoria:</p><p>pe 23.1. kello 16-18</p><p>pe 20.2. kello 16-18</p><p>pe 20.3. kello 16-18</p><p>pe 24.4. kello 16-18</p><p>pe 22.5. kello 16-18</p><p>pe 12.6. kello 16-18</p><p><br></p><p>HUHTIKUUSSA: </p><p>TARINOITA ENSIMMÄISISTÄ</p><p>Jotkut hetket jäävät mieleen ikuisesti…</p><p>Ei siksi, että ne olisivat olleet täydellisiä, vaan siksi, että ne olivat ensimmäisiä.</p><p>Ensimmäinen kerta, kun muutit uuteen maahan.</p><p>Ensimmäinen kerta, kun puolustit itseäsi.</p><p>Ensimmäinen kerta, kun aloitit alusta.</p><p>Ensimmäinen kerta, kun kokeilit jotain, joka muutti elämäsi.</p><p><br></p><p>Huhtikuussa luomme tilaa aidoille tarinoille, rehellisille muistoille, rohkeille aluille ja unohtumattomille hetkille.</p><p><br></p><p>Tällä kertaa jaamme kokemuksia, jotka ovat muokanneet meitä. Niitä kiusallisia. Niitä kauniita. Niitä tunteikkaita. Niitä elämää muuttaneita. Koska joskus ensimmäinen askel on jonkin uuden, suuren alku.</p><p><br></p><p>Liity seuraamme tässä kuussa, kun jaamme, kuuntelemme, nauramme, pohdimme ja luomme yhteyksiä hetkien kautta, jotka ovat tehneet meistä sen, mitä olemme. Tule kertomaan tarinasi, kuuntelemaan muiden tarinoita ja ole osa yhteisöä, jossa jokainen alku on tärkeä.</p><p><br></p><p>Mikä on sinun ”ensimmäinen kerta” tarinasi?</p><p>#helloespoo</p>", "sv": "<p>Evenemanget för människor samman över generations- och kulturgränser. På Connectoria delar människor i olika åldrar från hela världen berättelser och erfarenheter. Evenemanget ger dig möjlighet att möta intressanta personer som du kanske inte skulle träffa i din vanliga vardag.</p><p>Vi träffas en gång i månaden på fredagskvällar. Varje gång lär vi känna varandra genom ett nytt tema. Du är välkommen att delta när som helst. Vi bjuder alltid på kaffe, te och lite tilltugg.</p><p>Connectoria, våren 2026:</p><p>fre 23.1 kl. 16–18</p><p>fre 20.2 kl. 16–18</p><p>fre 20.3 kl. 16–18</p><p>fre 24.4 kl. 16–18</p><p>fre 22.5 kl. 16–18</p><p>fre 12.6 kl. 16–18</p><p><br></p><p>#helloespoo</p>", "en": "<p>The event brings people together across generations and cultures. At Connectoria, people of different ages from around the world share stories and experiences. The event gives you the chance to meet interesting people you might not encounter in your everyday life.</p><p>We meet once a month on Friday evenings. Each time, we get to know one another through a different theme. You are welcome to join at any time. We always offer coffee, tea, and a little something to eat.</p><p>Connectoria, Spring 2026:</p><p>Fri 23 January, 16:00–18:00</p><p>Fri 20 February, 16:00–18:00</p><p>Fri 20 March, 16:00–18:00</p><p>Fri 24 April, 16:00–18:00</p><p>Fri 22 May, 16:00–18:00</p><p>Fri 12 June, 16:00–18:00</p><p>APRIL: </p><p><br></p><p>Connectoria in Iso Omena library 24.4. at 4pm. Come share your story, or just litent to others and have a cup of tea and get to know new people in our area.</p><p><br></p><p>Theme in April is First time -stories.</p><p><br></p><p>Some moments stay with us forever…</p><p>Not because they were perfect, but because they were the first.</p><p>The first time you moved to a new country.</p><p>The first time you spoke up for yourself.</p><p>The first time you started over.</p><p>The first time you tried something that changed your life.</p><p><br></p><p>This April, we are creating space for real stories, honest memories, brave beginnings, and unforgettable moments.</p><p><br></p><p>FIRST TIME STORIES is about the experiences that shaped us. The awkward ones. The beautiful ones. The emotional ones. The life-changing ones. Because sometimes, the first step into something new becomes the beginning of everything.</p><p><br></p><p>What’s your “first time” story?</p><p><br></p><p>#helloespoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny5rqv3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68395", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "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": 1807911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-10T13:13:44.054115Z", "last_modified_time": "2026-04-10T13:13:44.054130Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787980.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1807911/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-10T13:13:43.879570Z", "last_modified_time": "2026-04-10T13:13:44.248038Z", "date_published": null, "start_time": "2026-09-01T12: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, "name": { "fi": "Seela Sellan taiteilijavierailu – haastattelijana Tuomo Holopainen", "sv": "Seela Sellas konstnärsbesök – intervjuare Tuomo Holopainen", "en": "Artist Visit by Seela Sella – Interview by Tuomo Holopainen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Seela Sellan taiteilijavierailu Kanneltalossa jouduttiin valitettavasti siirtämään sairastapauksen vuoksi syksyyn. Pahoittelemme aiheutunutta harmia!", "sv": "Under konstnärens besök diskuterar Seela Sella och Tuomo Holopainen den älskade skådespelarlegendens fenomenala resa på livets scener.", "en": "At the artist visit, Seela Sella and Tuomo Holopainen talk about the remarkable journey of the beloved acting legend through the stages of life." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/EFEA17224BC000B8217030299B608860/Seela_Sellan_taiteilijavierailu", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/EFEA17224BC000B8217030299B608860/Seela_Sellas_konstnarsbesok", "en": "http://www.kanneltalo.fi/en/events/event/EFEA17224BC000B8217030299B608860/_Artist_Visit_by_Seela_Sella" }, "description": { "fi": "<p>Seela Sellan taiteilijavierailu Kanneltalossa jouduttiin valitettavasti siirtämään sairastapauksen vuoksi syksyyn. Pahoittelemme aiheutunutta harmia!</p><p>Uusi esitysajankohta on tiistai 1.9. klo 15. Jo varatut liput käyvät uudelle päivälle sellaisenaan. Jos uusi päivämäärä ei sovi, voit vapauttaa varaamasi paikan linkin kautta: https://web.lippu.fi/palautus/ tai soittamalla lippu.fi Asiakaspalvelu lipun ostaneille numeroon: 030 514 214 (ark. 10-16) Puhelun hinta pvm/mpm.<br>Pahoittelemme aiheutunutta harmia!</p><p>Taiteilijavierailun aikana Seela Sella ja Tuomo Holopainen keskustelevat rakastetun näyttelijälegendan huikeasta matkasta elämän näyttämöillä.</p><p>Keskustelun pohjana on Antti Heikkisen kirjoittama kirja Sellasta (Otava 2025). <br>Seela Sella on esittänyt unohtumattomia rooleja jo seitsemällä vuosikymmenellä. Hän on raivannut tiensä Pispalasta koko kansan sydämiin ja hurmaa yhä yleisönsä tarkalla ja vivahteikkaalla näyttelijäntyöllään.</p><p>Tunteikas ja tarinallinen kirja vie mestarin matkassa eri estradeille sekä niiden taakse. Teoksessa Sella kertoo niin teatterityönsä kuin elämänkokemuksensa opeista viisaudella, innolla, rohkeudella ja erityisesti pilke silmäkulmassa. Erilainen elämäkerta on myös tarinoiden ja anekdoottien runsaudensarvi.</p><p>Kesto 45 min + kirjasigneeraukset<br>Yhteistyössä Kanneltalo, Helsingin työväenopisto ja Kannelmäen kirjasto</p><p>Vapaa pääsy, ennakkoilmoittautuminen https://www.lippu.fi/eventseries/name-4048014/?affiliate=NFI</p>", "sv": "<p>Under konstnärens besök diskuterar Seela Sella och Tuomo Holopainen den älskade skådespelarlegendens fenomenala resa på livets scener.</p><p>Diskussionen baseras på boken Sellasta (Otava 2025) av Antti Heikkinen. <br>Seela Sella har spelat oförglömliga roller redan i sju decennier. Hon har banat väg från Pispala ända in i nationens hjärtan och fortsätter att fängsla publiken med sitt precisa och nyanserade skådespeleri.<br>Denna känsloladdade och berättande bok tar oss med på en resa med mästaren till olika estrader och bakom dem. Sella delar med sig av sitt teaterarbete och sin livserfarenhet med visdom, entusiasm, mod och framför allt med glimten i ögat. Den annorlunda biografin är också ett ymnighetshorn av berättelser och anekdoter.</p><p>Längd 45 min + boksignering</p><p>I samarbete med Gamlasgården, Helsingfors arbetarinstitut och Gamlas bibliotek</p><p>Fritt inträde, förhandsanmälan</p>", "en": "<p>At the artist visit, Seela Sella and Tuomo Holopainen talk about the remarkable journey of the beloved acting legend through the stages of life.</p><p>The conversation draws on Antti Heikkinen's book Sellasta (Otava, 2025). <br>Seela Sella has performed unforgettable roles for seven decades. She has made her way from Pispala into the hearts of the entire nation and continues to captivate audiences with her precise and nuanced acting.<br>The heartfelt and story-driven book follows the master across various stages and behind the curtains. In it, Sella recounts the insights gained from her theatre work and life experiences with wisdom, passion, bravery and a playful sparkle in her eye. This unique biography is also a cornucopia of stories and anecdotes.</p><p>Duration 45 min + book signing</p><p>Together with Kanneltalo, the Helsinki Finnish Adult Education Centre and Kannelmäki Library</p><p>Free admission, advance registration</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68395/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68185", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "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": 1586459, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T09:13:03.464813Z", "last_modified_time": "2026-03-10T09:13:03.464827Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786067.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586459/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-03-10T09:13:03.291753Z", "last_modified_time": "2026-04-10T08:12:52.998818Z", "date_published": null, "start_time": "2026-03-24", "end_time": "2026-04-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita", "sv": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita", "en": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita" }, "location_extra_info": null, "provider": null, "short_description": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita", "sv": "http://www.stoa.fi/sv/evenemang/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita", "en": "http://www.stoa.fi/en/events/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita" }, "description": { "fi": "<p>Yksi Stadin suurimmista kaupunginosajuhlista, Kontufestarit 2025, rakentui talkoovoimalla.</p><p>Iiris Laurikaisen valokuvanäyttely vie keskelle kesäistä festaritunnelmaa: pääset seikkailemaan yleisön seassa, jännittämään bäkkärillä, rakentamaan lavaa ja näkemään kuinka kessa tyhjenee juhlahumusta.</p><p>”Kuvasin Kontufestareita kahden päivän ajan rakennuksesta purkuun. Pääsin todistamaan yhteisöllisyyttä ja sitä kuinka eri ikäpolvet sulautuivat yhteen nauttimaan tunnelmasta ja musiikista. Festareiden loputtua puisto jäi siistimmäksi kuin tullessa. Oli fiilis siitä että kaikki haluavat juhlien onnistuvan. Näyttelyllä halusin antaa jotain takaisin kaikille, jotka kokivat Kontufestarit tärkeiksi”<br>-Iiris Laurikainen</p><p>Talkoolaisia tuli ovista ja ikkunoista; järjestyshenkilöiksi, ensiapuryhmään, rakentajiksi, siivoukseen, tiedotukseen, spiikkereiksi, esiintyjien huoltoon, alueen koristeluun ja moneen muuhun. Yhtäkkiä kasassa oli osaava porukka, jolla oli tekemisen meininkiä ja reilua asennetta.</p><p>Syntyi juhlien juhla, rauhallinen ja iloinen kaiken kansan festari talkoilla ja yhdessä, asukkaiden, esiintyjien ja yritysten yhteistyöllä.</p><p>Kelkkapuisto, josta kaikki alkoi vuonna 2003, keräsi viime vuonna ennätyksellisen määrän yleisöä.</p><p>Festarityöryhmä: \"Tästä olemme erittäin ylpeitä ja haluamme esitellä tapahtumaa ja erityisesti sen tekijöitä valokuvaaja Iiris Laurikaisen kuvin. Hän oli yhtenä vapaaehtoisista valokuvaamassa tapahtumaa. Eläköön Kontula, Kontufestarit sekä sen tekijät ja kokijat, jotka yhdessä saivat aikaan juhlan!\"</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68185/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68394", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805816, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T13:13:44.163715Z", "last_modified_time": "2026-04-09T13:13:44.163731Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787978.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805816/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T13:13:44.068404Z", "last_modified_time": "2026-04-09T13:13:44.310270Z", "date_published": null, "start_time": "2026-05-19T09:00:00Z", "end_time": "2026-05-19T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/02288716891E4D1CAC71EBAA0FA00B7B/Lahde_mukaan_puistoparkourkavelylle", "sv": "http://www.malmitalo.fi/sv/evenemang/event/02288716891E4D1CAC71EBAA0FA00B7B/Lahde_mukaan_puistoparkourkavelylle", "en": "http://www.malmitalo.fi/en/events/event/02288716891E4D1CAC71EBAA0FA00B7B/Lahde_mukaan_puistoparkourkavelylle" }, "description": { "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68394/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68393", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805815, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T13:13:42.770487Z", "last_modified_time": "2026-04-09T13:13:42.770502Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787976.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805815/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T13:13:42.642898Z", "last_modified_time": "2026-04-09T13:13:42.929879Z", "date_published": null, "start_time": "2026-05-12T09:00:00Z", "end_time": "2026-05-12T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F8A59DE7FC4E04E046CF8398D2D4372B/Lahde_mukaan_puistoparkourkavelylle", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F8A59DE7FC4E04E046CF8398D2D4372B/Lahde_mukaan_puistoparkourkavelylle", "en": "http://www.malmitalo.fi/en/events/event/F8A59DE7FC4E04E046CF8398D2D4372B/Lahde_mukaan_puistoparkourkavelylle" }, "description": { "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68393/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68392", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805727, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T12:12:56.127096Z", "last_modified_time": "2026-04-09T12:12:56.127110Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787974.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805727/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T12:12:56.067229Z", "last_modified_time": "2026-04-09T12:12:56.212150Z", "date_published": null, "start_time": "2026-04-28T09:00:00Z", "end_time": "2026-04-28T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E46EB57F525DE604DC52D185CC4A325/Lahde_mukaan_puistoparkourkavelylle", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E46EB57F525DE604DC52D185CC4A325/Lahde_mukaan_puistoparkourkavelylle", "en": "http://www.malmitalo.fi/en/events/event/8E46EB57F525DE604DC52D185CC4A325/Lahde_mukaan_puistoparkourkavelylle" }, "description": { "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68392/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68391", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1805726, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T12:12:52.770885Z", "last_modified_time": "2026-04-09T12:12:52.770899Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787972.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1805726/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T12:12:52.659204Z", "last_modified_time": "2026-04-09T12:12:52.887808Z", "date_published": null, "start_time": "2026-04-14T09:00:00Z", "end_time": "2026-04-14T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "sv": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto", "en": "Lähde mukaan puistoparkourkävelylle – Malmin kirjasto" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5E41F4936AB701A95D8A938162779BC1/Lahde_mukaan_puistoparkourkavelylle", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5E41F4936AB701A95D8A938162779BC1/Lahde_mukaan_puistoparkourkavelylle", "en": "http://www.malmitalo.fi/en/events/event/5E41F4936AB701A95D8A938162779BC1/Lahde_mukaan_puistoparkourkavelylle" }, "description": { "fi": "<p>Haluaisitko saada ulkoiluseuraa ja löytää kiinnostavia kohteita kotikulmiltasi?</p><p>Lähdemme liikkeelle klo 12 Malmin kirjaston edestä ja kävelemme rauhallista tahtia 3–4 km, noin tunnin ajan.</p><p>Pysähdymme välillä tarkastelemaan mielenkiintoisia kohteita ja kokeilemme myös hauskaa, helppoa ja hyödyllistä puistoparkouria. Iloisella leikkimielellä harjoitamme mm. tasapainoa ja liikkuvuutta.</p><p>Laita jalkaan mukavat kävelykengät, pukeudu säänmukaisesti, ota matkaan juomapullo ja tule mukaan.</p><p>Tilaisuus on maksuton. Ei ennakkoilmoittautumista.</p><p>Olet lämpimästi tervetullut! Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68391/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnns4wuwy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4w52y/?format=api" }, "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": 150453, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-07T11:30:54.908155Z", "last_modified_time": "2025-12-01T09:54:37.517785Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/luetaanyhdess%C3%A4.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "valokuva kädestä, muistilapusta ja suomenkielen oppikirjasta", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150453/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T10:05:28.714665Z", "last_modified_time": "2026-04-09T10:16:04.095599Z", "date_published": null, "start_time": "2026-04-15T07:15:00Z", "end_time": "2026-04-15T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luetaan yhdessä", "sv": "Vi läser tillsammans", "en": "Let's Read Together" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Luetaan yhdessä-verkoston vapaaehtoiset", "sv": "Vi läser tillsammans -nätverket", "en": "Let's Read Together -network" }, "short_description": { "fi": "Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea. Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.", "sv": "Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!", "en": "Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!" }, "info_url": null, "description": { "fi": "<p>Tunneilla harjoitellaan puhumaan, lukemaan ja kirjoittamaan suomea.</p><p>Opettajina toimivat Luetaan yhdessä-verkoston vapaaehtoiset.</p><p>Ryhmä kokoontuu Entressen kirjastolla keskiviikkoisin 7.1.-27.5.2026 klo 10:15-11:45. Ei kuitenkaan 18.2. talvilomalla.</p><p><br></p><p>Ryhmän vetäjänä on Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Letar du efter en plats där du kan öva på att tala finska? Är de finländare du träffar bara för blyga för att prata med dig? Då är det här rätt plats för dig!</p><p>Finska modersmålstalare hjälper dig att öva på att kommunicera på finska. Vi läser texter, diskuterar olika ämnen och övar på att skriva varje gång. Det är inte nödvändigt att registrera sig i förväg, du kan bara dyka upp.</p><p>Gruppen träffas på Entresse biblioteket på onsdagar från den 7 januari till den 27 maj 2026 kl. 10.15–11.45. Det blir dock inget möte den 18 februari på grund av vinterlovet.</p><p>Gruppen leds av frivilliga från Vi läser tillsammans -nätverket/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts, discuss different topics and practice writing every time. It's not necessary to register in advance, you can just show up.</p><p>The group meets at the Entresse Library on Wednesdays from January 7 to May 27, 2026, from 10:15 to 11:45 a.m. However, there will be no meeting on February 18 due to winter break.</p><p><br></p><p>The group is run by the volunteers of Let's Read Together -network/ Eeva Pirinen, eevak.pirinen@gmail.com, p. 050 5980901.</p><p><br></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnns4wuwy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhs7su", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "images": [ { "id": 1824121, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T09:53:56.496230Z", "last_modified_time": "2026-04-09T09:53:56.496243Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e87e93fb-d841-46e3-8e46-211e3ca6229e.jpg", "name": "", "cropping": "116,0,964,848", "photographer_name": "", "alt_text": "kirjailijoita kirjojen kanssa yhteiskuvassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824121/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:27:09.321054Z", "last_modified_time": "2026-04-09T09:54:03.920664Z", "date_published": null, "start_time": "2026-04-11T11:00:00Z", "end_time": "2026-04-11T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "SOMALIKIRJALLISUUS- JA KULTTUURIMESSUT ", "en": "SOMALI LITERATURE AND CULTURE FAIR " }, "location_extra_info": { "fi": "Estradi", "en": "Estradi" }, "provider": null, "short_description": { "fi": "Messuilla tutustutaan Somalikieliseen aikuisten ja lasten kirjallisuuteen. ", "en": "The fair will introduce you to Somali-language literature for adults and children." }, "info_url": null, "description": { "fi": "SOMALIKIRJALLISUUS- JA KULTTUURIMESSUT<p><br></p><p>Messuilla tutustutaan Somalikieliseen aikuisten ja lasten kirjallisuuteen. Perjantaina 10.4.2026 klo 14 pidetään Leppävaaran Maahanmuuttajakohtaamis paikassa ja</p><p><strong>Lauantaina 11.4.2026 Klo 14 Entressen kirjastossa. Mukana ovat Kirjailijat Abdulaziz Ali Ibrahim Xildhiban Englannista ja Abdullahi Warsame Amalle Itävallasta.</strong></p><p>Tarjolla myös makeita ja suolaisia somalilaisia herkkuja.</p><p><br></p><p>Tervetuloa</p><p> </p>", "en": "SOMALI LITERATURE AND CULTURE FAIR<p> </p><p>The fair will introduce you to Somali-language literature for adults and children. Friday, April 10, 2026 at 2:00 PM at the Immigrant Encounter in Leppävaara and</p><p><strong>Saturday, April 11, 2026 at 2:00 PM at the Entresse Library. The authors are Abdulaziz Ali Ibrahim Xildhiban from England and Abdullahi Warsame Amalle from Austria.</strong></p><p>Sweet and savory Somali delicacies will also be available.</p><p> </p><p>Welcome</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhs7su/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtadq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtcsa/?format=api" }, "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": 1824122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T06:40:08.877128Z", "last_modified_time": "2026-04-14T07:20:57.326053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d3ef072-ce1a-48d5-9490-a0ebed07be1f.png", "name": "Kirjastokaveri: SOMALI", "cropping": "200,0,1000,800", "photographer_name": "Taru Mäkelä", "alt_text": "Eri-ikäisiä ja kulttuuritaustaisia piirroshahmoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:40:26.465824Z", "last_modified_time": "2026-04-09T06:41:09.181981Z", "date_published": null, "start_time": "2026-04-28T13:00:00Z", "end_time": "2026-04-28T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Kirjastokaveri: SOMALI", "en": "Library buddy: SOMALI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p>\nSOMALINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:<p><br></p><p>Joka tiistai klo 16–18:</p><ul><li>tiistaisin 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri</p><p>#kirjasto #kaveri</p><p>#somali #somalia</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language!</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p><br></p>\nMEET A SOMALI SPEAKING LIBRARY BUDDY:<p><br></p><p>Every Tuesday at 16–18:</p><ul><li>Tuesday 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#somali #somalia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtadq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtaue", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtcsa/?format=api" }, "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": 1824122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T06:40:08.877128Z", "last_modified_time": "2026-04-14T07:20:57.326053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d3ef072-ce1a-48d5-9490-a0ebed07be1f.png", "name": "Kirjastokaveri: SOMALI", "cropping": "200,0,1000,800", "photographer_name": "Taru Mäkelä", "alt_text": "Eri-ikäisiä ja kulttuuritaustaisia piirroshahmoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:40:26.590248Z", "last_modified_time": "2026-04-09T06:41:09.151889Z", "date_published": null, "start_time": "2026-05-05T13:00:00Z", "end_time": "2026-05-05T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Kirjastokaveri: SOMALI", "en": "Library buddy: SOMALI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p>\nSOMALINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:<p><br></p><p>Joka tiistai klo 16–18:</p><ul><li>tiistaisin 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri</p><p>#kirjasto #kaveri</p><p>#somali #somalia</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language!</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p><br></p>\nMEET A SOMALI SPEAKING LIBRARY BUDDY:<p><br></p><p>Every Tuesday at 16–18:</p><ul><li>Tuesday 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#somali #somalia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtaue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtbdu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtcsa/?format=api" }, "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": 1824122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T06:40:08.877128Z", "last_modified_time": "2026-04-14T07:20:57.326053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d3ef072-ce1a-48d5-9490-a0ebed07be1f.png", "name": "Kirjastokaveri: SOMALI", "cropping": "200,0,1000,800", "photographer_name": "Taru Mäkelä", "alt_text": "Eri-ikäisiä ja kulttuuritaustaisia piirroshahmoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:40:26.715743Z", "last_modified_time": "2026-04-09T06:41:09.122190Z", "date_published": null, "start_time": "2026-05-12T13: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": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Kirjastokaveri: SOMALI", "en": "Library buddy: SOMALI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p>\nSOMALINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:<p><br></p><p>Joka tiistai klo 16–18:</p><ul><li>tiistaisin 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri</p><p>#kirjasto #kaveri</p><p>#somali #somalia</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language!</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p><br></p>\nMEET A SOMALI SPEAKING LIBRARY BUDDY:<p><br></p><p>Every Tuesday at 16–18:</p><ul><li>Tuesday 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#somali #somalia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtbdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtccm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtcsa/?format=api" }, "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": 1824122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T06:40:08.877128Z", "last_modified_time": "2026-04-14T07:20:57.326053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d3ef072-ce1a-48d5-9490-a0ebed07be1f.png", "name": "Kirjastokaveri: SOMALI", "cropping": "200,0,1000,800", "photographer_name": "Taru Mäkelä", "alt_text": "Eri-ikäisiä ja kulttuuritaustaisia piirroshahmoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:40:26.956162Z", "last_modified_time": "2026-04-09T06:41:09.005276Z", "date_published": null, "start_time": "2026-05-26T13:00:00Z", "end_time": "2026-05-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Kirjastokaveri: SOMALI", "en": "Library buddy: SOMALI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p>\nSOMALINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:<p><br></p><p>Joka tiistai klo 16–18:</p><ul><li>tiistaisin 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri</p><p>#kirjasto #kaveri</p><p>#somali #somalia</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language!</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p><br></p>\nMEET A SOMALI SPEAKING LIBRARY BUDDY:<p><br></p><p>Every Tuesday at 16–18:</p><ul><li>Tuesday 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#somali #somalia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtccm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtcsa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?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:agozxhtadq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtaue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtbdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtbsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtccm/?format=api" } ], "images": [ { "id": 1824122, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-09T06:40:08.877128Z", "last_modified_time": "2026-04-14T07:20:57.326053Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5d3ef072-ce1a-48d5-9490-a0ebed07be1f.png", "name": "Kirjastokaveri: SOMALI", "cropping": "200,0,1000,800", "photographer_name": "Taru Mäkelä", "alt_text": "Eri-ikäisiä ja kulttuuritaustaisia piirroshahmoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824122/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-09T06:40:25.716657Z", "last_modified_time": "2026-04-09T06:41:08.467146Z", "date_published": null, "start_time": "2026-04-28T13:00:00Z", "end_time": "2026-05-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Kirjastokaveri: SOMALI", "en": "Library buddy: SOMALI" }, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon lainaamaan kirjoja, pelaamaan ja harrastamaan, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p>\nSOMALINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:<p><br></p><p>Joka tiistai klo 16–18:</p><ul><li>tiistaisin 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#kirjastokaveri</p><p>#kirjasto #kaveri</p><p>#somali #somalia</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library to loan books, play games and attend hobbies but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language!</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p><br></p>\nMEET A SOMALI SPEAKING LIBRARY BUDDY:<p><br></p><p>Every Tuesday at 16–18:</p><ul><li>Tuesday 28.4.2026–26.5.2026</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p><p>#librarybuddy #library #buddy</p><p>#somali #somalia</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtcsa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtdae", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824123, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-09T06:17:04.762788Z", "last_modified_time": "2026-04-09T06:17:04.762829Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/23cd5611-1fe8-4b8a-8bd9-65f979489456.png", "name": "", "cropping": "117,0,683,566", "photographer_name": "Sanna Korkelainen", "alt_text": "keraamisia kukkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824123/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-20T12:54:53.806177Z", "last_modified_time": "2026-04-09T06:17:12.722155Z", "date_published": null, "start_time": "2026-03-19T06:00:00Z", "end_time": "2026-04-29T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keramiikkanäyttely: Kukat jotka jäivät / Sanna Korkelainen", "sv": "keramikutställning: Blommor som blev kvar / Sanna Korkelainen", "en": "Ceramics exhibition: The flowers that stayed / Sanna Korkelainen" }, "location_extra_info": { "fi": "Vitriini", "sv": "vitrinskåp", "en": "display cabinet" }, "provider": { "fi": "Sanna Korkelainen", "sv": "Sanna Korkelainen", "en": "Sanna Korkelainen" }, "short_description": { "fi": "Tervetuloa katsomaan näyttelyä Tapiolan kirjastoon.", "sv": "Välkommen att besöka utställning i Hagalund biblioteken.", "en": "Welcome to an art exhibition in Tapiola Library." }, "info_url": null, "description": { "fi": "<p>Kukat jotka jäivät -keramiikkanäyttely on keramiikan harrastaja Sanna Korkelaisen hehkuva oodi kukkien runsaudelle. Hänen teoksissaan yhdistyvät rakkaus väreihin ja kukkaloistoon tavalla, joka tuo eloa ja väriä myös vuoden harmaimpiin hetkiin.</p><p>Keramiikan kautta kukkien kauneudesta voi nauttia silloinkin, kun puutarha vielä odottaa heräämistään kevään aurinkoon.</p><p>Yhteydenotot: sanna.korkelainen @ gmail.com</p>", "sv": "<p>Välkommen att besöka utställning i Hagalund biblioteken.</p><p>Utställningen kan ses under bibliotekets öpettider.</p>", "en": "<p>Welcome to an art exhibition in Tapiola Library.</p><p>Welcome! Exhibition can be seen at Librarys opening hours.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtdae/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtdmm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu5xu/?format=api" }, "event_status": "EventCancelled", "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": 1824124, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-03-14T07:57:27.001884Z", "last_modified_time": "2026-04-25T08:04:20.199073Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8bff21a9-2117-4883-99e2-5fe3bb2a1692.jpg", "name": "", "cropping": "106,0,534,427", "photographer_name": "Kuva Creative_Media_Imaging Pixabaystä", "alt_text": "Kuvassa henkilö pelaamassa lautapeliä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824124/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-03-20T11:28:23.163161Z", "last_modified_time": "2026-04-09T05:14:45.181789Z", "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, "name": { "fi": "PERUTTU: Pelikerho lapsille ja nuorille", "sv": "AVBRUTEN: Spelklubb för barn och ungdomar ", "en": "CANCELLED: Gaming club for children and youth" }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "provider": null, "short_description": { "fi": "Pelikerho lapsille ja nuorille", "sv": "Spelklubb för barn och ungdomar", "en": "Gaming club for children and youth" }, "info_url": null, "description": { "fi": "<p>Tervetuloa lasten ja nuorten pelikerhoon. Pelikerho kokoontuu Entressen kirjaston Kibessä torstaisin klo 17. Kerhossa pelataan lautapelejä, sekä konsolipelejä osallistujien toiveiden mukaan. Tervetuloa.</p>", "sv": "<p>Välkommen till spelklubben för barn och ungdomar. Klubben träffas i Kibe-avdelningen på Entresse-biblioteket på torsdagar kl. 17.00. Vi spelar brädspel och konsolspel, beroende på vad deltagarna vill spela. Välkommen.</p>", "en": "<p>Welcome to the children’s and youth’s game club. The club meets at the Kibe section of the Entresse Library on Thursdays at 5 p.m. We play board games and video games based on the participants preferences. Welcome!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtdmm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnh2ztfq4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?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/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7alq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2zthsu/?format=api" }, "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": 152115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-15T06:47:28.191606Z", "last_modified_time": "2024-08-15T06:47:28.191622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/book-1283865_1920.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/152115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T12:30:06.834588Z", "last_modified_time": "2026-04-08T14:00:32.448729Z", "date_published": null, "start_time": "2026-04-29T14:30:00Z", "end_time": "2026-04-29T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "location_extra_info": { "fi": "Apaja", "sv": "Apaja", "en": "Apaja" }, "provider": null, "short_description": { "fi": "Kalajärven kirjaston lukupiiri", "sv": "Kalajärvi biblioteks läsecirkel", "en": "Kalajärvi Library Reading Circle" }, "info_url": null, "description": { "fi": "<p>Kalajärven kirjaston lukupiiri kokoontuu Kevätkauden 2026 seuraavina keskiviikkoina klo 17:30-19:00 / Apaja-tilassa</p><p>7.1. Minna Maijalan \"Katri Vala: kulkuri & näkijä\"</p><p>4.2.<a href=\"https://helmet.finna.fi/Record/helmet.2015918?sid=5233842913\"> Antonio Muñoz Molinan \"Kuun tuuli\"</a></p><p>4.3. <a href=\"https://helmet.finna.fi/Record/helmet.2209693?sid=5233842283\">René Nyberg: Viimeinen juna Moskovaan</a></p><p>1.4. <a href=\"https://helmet.finna.fi/Record/helmet.2006299?sid=5261957995\">Tuomas Anhava: Kevään kukat, syksyn kuu</a></p><p>29.4. <a href=\"https://helmet.finna.fi/Record/helmet.2507863?sid=5280548197\">Johan Bargum: Ikämiehiä</a></p><p>27.5. <a href=\"https://helmet.finna.fi/Record/helmet.1445605?sid=5310605409\">Orhan Pamuk: Uusi elämä</a></p>", "sv": "<p>Kalajärvi biblioteks läsecirkel på finska</p>", "en": "<p>Kalajärvi Library Reading Circle in Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2ztfq4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }