Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=92
{ "meta": { "count": 31685, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=93", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=91" }, "data": [ { "id": "espoo_le:agoa4bqvpq", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqz6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-30T07:32:21.543198Z", "last_modified_time": "2026-01-30T07:32:21.543216Z", "date_published": null, "start_time": "2026-05-21T07:00:00Z", "end_time": "2026-05-21T08: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqvpq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa4bqxam", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqz6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-30T07:32:21.453029Z", "last_modified_time": "2026-01-30T07:32:21.453047Z", "date_published": null, "start_time": "2026-04-09T07:00:00Z", "end_time": "2026-04-09T08: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqxam/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa4bqydu", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqz6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-30T07:32:21.366443Z", "last_modified_time": "2026-01-30T07:32:21.366459Z", "date_published": null, "start_time": "2026-03-12T08:00:00Z", "end_time": "2026-03-12T09: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqydu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa4bqzca", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqz6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494687, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-30T07:31:57.519589Z", "last_modified_time": "2026-01-30T07:31:57.519604Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7ae893a-d1e2-4f7e-b561-df2727c27ce6.png", "name": "", "cropping": "55,0,353,298", "photographer_name": "", "alt_text": "Kirjoja ja neuleita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494687/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-30T07:32:21.267706Z", "last_modified_time": "2026-01-30T07:32:21.267724Z", "date_published": null, "start_time": "2026-02-12T08:00:00Z", "end_time": "2026-02-12T09: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Novellikoukku", "sv": "Novellvirkningshake", "en": "Short story crochet hook" }, "short_description": { "fi": "Kuunnellaan novelleja ja tehdään käsitöitä", "sv": "Vi lyssnar på noveller och handarbetar", "en": "We listen to short stories and do handicrafts" }, "location_extra_info": { "fi": "Aula", "sv": "Lobby", "en": "Lobby" }, "description": { "fi": "<p>Tervetuloa istahtamaan alas, kuuntelemaan novelleja ja tekemään samalla omaa käsityötä. Novellit suomenkielellä.</p><p>Novellikoukku jokaisen kuukauden toisena torstaina klo 10.00-11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "sv": "<p>Välkommen att slå dig ner, lyssna på noveller och samtidigt arbeta med ditt eget hantverk. Novellerna är på finska.</p><p>Novellkroken ordnas den andra torsdag varje månad kl. 10:00–11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>", "en": "<p>Welcome to sit down, listen to short stories, and work on your own handicraft at the same time. The short stories are in Finnish.</p><p>Short Story Crochet Hook takes place on the second Thursday of each month from 10:00 to 11:30:</p><p>12.2.2026</p><p>12.3.2026</p><p>9.4.2026</p><p>21.5.2026</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa4bqzca/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa3tsjuy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494686, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T07:40:04.684412Z", "last_modified_time": "2026-01-15T07:40:04.684428Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c4faa873-dcda-461c-b0b5-eb3cee352fba.png", "name": "", "cropping": "350,0,1250,900", "photographer_name": "", "alt_text": "Tapahtuman mainos", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494686/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-30T07:11:16.334539Z", "last_modified_time": "2026-01-30T07:11:16.334557Z", "date_published": null, "start_time": "2026-01-31T12:00:00Z", "end_time": "2026-01-31T15: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, "provider_contact_info": null, "provider": { "fi": "Tunne Rintasi ry" }, "info_url": { "fi": "https://tunnerintasi.fi/tule-kuulemaan-puheenvuoroja-naisten-hyvinvoinnista-ja-terveydesta/" }, "name": { "fi": "Naisen hyvinvointi -tapahtuma" }, "short_description": { "fi": "Tule kuulemaan asiantuntijoiden puheenvuoroja naisten hyvinvoinnista ja terveydestä!" }, "location_extra_info": { "fi": "Lava/ aula" }, "description": { "fi": "<p>Asiantuntijat kertovat esimerkiksi seuraavista teemoista:</p><p>Elämäntavat ja hyvinvointi, Idil Hussein, erikoissuunnittelija, Terveyden ja hyvinvoinnin laitos THL</p><p>mielen hyvinvointi, Anna Vuorio, toiminnanjohtaja, Naistenkartano ry</p><p>hormonit ja naisen hyvinvointi, Sara Veleva, naistentautien ja synnytysten erikoislääkäri, FT, Lääkärikeskus Aava</p><p>rintojen terveys, Pilvi Kyrönlahti, järjestösuunnittelija, Tunne rintasi ry</p><p>Uudenmaan Martat kertovat tapahtumassa, miten voit lisätä kasviksia ruokavalioosi helposti.</p><p>Tapahtuman kieli on helppo suomi. Voit esittää kysymyksiä myös englannin, somalin ja venäjän kielillä. </p><p>Tarjoamme lastenhoitoapua 2-6 -vuotiaille lapsille. Tarjoamme osallistujille myös kahvit. Tapahtuma on ilmainen.</p><p>Tule rohkeasti mukaan!</p><p>Tapahtuman järjestäjät: Tunne rintasi ry, Naisten kartano ry ja Uudenmaan martat ry.</p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa3tsjuy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn6b5ltjm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5lvfa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T13:19:50.991450Z", "last_modified_time": "2026-01-21T13:19:50.991466Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ace7c1f1-678c-4965-bd03-313898623409.png", "name": "Kohtaamiskahvilassa on aina luvassa tärkeää tietoa, mutta myös hyvää seuraa ja kuppi kuumaa.", "cropping": "0,0,1080,1080", "photographer_name": "Heli Lekka", "alt_text": "Yksi kolmekymppinen ja neljä eläkeikäistä naista kahvilla Ison Omenan kirjastossa. Tektsi: Kohtaamiskahvila 2026.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-21T13:25:31.469405Z", "last_modified_time": "2026-01-30T07:08:46.568490Z", "date_published": null, "start_time": "2026-02-12T11:00:00Z", "end_time": "2026-02-12T13: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Kohtaamiskahvila" }, "short_description": { "fi": "Kuntalaisten kohtaamispaikka, jossa alueen toimijat jakavat tärkeää tietoa palveluista." }, "location_extra_info": { "fi": "Stage" }, "description": { "fi": "<p>Kohtaamiskahvila kokoontuu kerran kuukaudessa torstaisin Ison Omenan kirjaston Stagella. Joka kerta on luvassa tietoiskuja tärkeistä senioreiden ja myös muun ikäisten arkeen liittyvistä tärkeistä asioista.</p><p>Tervetuloa mukaan keskustelemaan, oppimaan ja tutustumaan uusiin ihmisiin. Kohtaamiskahvilassa on aina hyvä tunnelma ja kuppi kuumaa kahvia tai teetä tarjolla.</p><p><br></p><p>To 12.2. Mistä syntyy Osallisuus?</p><p><br></p><p>Ystävällisyyden viikon kohtaamiskahvila</p><p> </p><p>Mitä osallisuus tarkoittaa? Millaista osallisuustyötä Espoon kaupungilla tehdään? Miten ystävällisyys liittyy osallisuustyöhön? </p><p> </p><p>Tilaisuudessa keskustellaan ja voi osallistua kahteen osallistumisprosessiin, joissa kartoitetaan asukkaiden näkemyksiä seuraavista aiheista: </p><p>Millaista vuorovaikutus Espoon henkilöstön kanssa on ollut asukkaiden kokemuksen mukaan? </p><p>Miten hyvinvoinnin, terveyden ja osallisuuden järjestöavustuksia tulisi kohdentaa tilanteessa, jossa hakukriteerit täyttäviä hakemuksia on enemmän kuin jaettavia määrärahoja?</p><p>To 12.3. Eläkeläisten rooli yhteisöissä.</p><p>To 16.4. Omaishoitajuus</p><p>To 21.5. Asiaa Muistista</p><p>Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5ltjm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn6b5lt4u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5lvfa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T13:19:50.991450Z", "last_modified_time": "2026-01-21T13:19:50.991466Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ace7c1f1-678c-4965-bd03-313898623409.png", "name": "Kohtaamiskahvilassa on aina luvassa tärkeää tietoa, mutta myös hyvää seuraa ja kuppi kuumaa.", "cropping": "0,0,1080,1080", "photographer_name": "Heli Lekka", "alt_text": "Yksi kolmekymppinen ja neljä eläkeikäistä naista kahvilla Ison Omenan kirjastossa. Tektsi: Kohtaamiskahvila 2026.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-21T13:25:31.597682Z", "last_modified_time": "2026-01-30T07:08:46.518242Z", "date_published": null, "start_time": "2026-03-12T11:00:00Z", "end_time": "2026-03-12T13: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Kohtaamiskahvila" }, "short_description": { "fi": "Kuntalaisten kohtaamispaikka, jossa alueen toimijat jakavat tärkeää tietoa palveluista." }, "location_extra_info": { "fi": "Stage" }, "description": { "fi": "<p>Kohtaamiskahvila kokoontuu kerran kuukaudessa torstaisin Ison Omenan kirjaston Stagella. Joka kerta on luvassa tietoiskuja tärkeistä senioreiden ja myös muun ikäisten arkeen liittyvistä tärkeistä asioista.</p><p>Tervetuloa mukaan keskustelemaan, oppimaan ja tutustumaan uusiin ihmisiin. Kohtaamiskahvilassa on aina hyvä tunnelma ja kuppi kuumaa kahvia tai teetä tarjolla.</p><p><br></p><p>To 12.2. Mistä syntyy Osallisuus?</p><p><br></p><p>Ystävällisyyden viikon kohtaamiskahvila</p><p> </p><p>Mitä osallisuus tarkoittaa? Millaista osallisuustyötä Espoon kaupungilla tehdään? Miten ystävällisyys liittyy osallisuustyöhön? </p><p> </p><p>Tilaisuudessa keskustellaan ja voi osallistua kahteen osallistumisprosessiin, joissa kartoitetaan asukkaiden näkemyksiä seuraavista aiheista: </p><p>Millaista vuorovaikutus Espoon henkilöstön kanssa on ollut asukkaiden kokemuksen mukaan? </p><p>Miten hyvinvoinnin, terveyden ja osallisuuden järjestöavustuksia tulisi kohdentaa tilanteessa, jossa hakukriteerit täyttäviä hakemuksia on enemmän kuin jaettavia määrärahoja?</p><p>To 12.3. Eläkeläisten rooli yhteisöissä.</p><p>To 16.4. Omaishoitajuus</p><p>To 21.5. Asiaa Muistista</p><p>Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5lt4u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn6b5lujy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5lvfa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T13:19:50.991450Z", "last_modified_time": "2026-01-21T13:19:50.991466Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ace7c1f1-678c-4965-bd03-313898623409.png", "name": "Kohtaamiskahvilassa on aina luvassa tärkeää tietoa, mutta myös hyvää seuraa ja kuppi kuumaa.", "cropping": "0,0,1080,1080", "photographer_name": "Heli Lekka", "alt_text": "Yksi kolmekymppinen ja neljä eläkeikäistä naista kahvilla Ison Omenan kirjastossa. Tektsi: Kohtaamiskahvila 2026.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-21T13:25:31.717719Z", "last_modified_time": "2026-01-30T07:08:46.476234Z", "date_published": null, "start_time": "2026-04-16T10:00:00Z", "end_time": "2026-04-16T12: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Kohtaamiskahvila" }, "short_description": { "fi": "Kuntalaisten kohtaamispaikka, jossa alueen toimijat jakavat tärkeää tietoa palveluista." }, "location_extra_info": { "fi": "Stage" }, "description": { "fi": "<p>Kohtaamiskahvila kokoontuu kerran kuukaudessa torstaisin Ison Omenan kirjaston Stagella. Joka kerta on luvassa tietoiskuja tärkeistä senioreiden ja myös muun ikäisten arkeen liittyvistä tärkeistä asioista.</p><p>Tervetuloa mukaan keskustelemaan, oppimaan ja tutustumaan uusiin ihmisiin. Kohtaamiskahvilassa on aina hyvä tunnelma ja kuppi kuumaa kahvia tai teetä tarjolla.</p><p><br></p><p>To 12.2. Mistä syntyy Osallisuus?</p><p><br></p><p>Ystävällisyyden viikon kohtaamiskahvila</p><p> </p><p>Mitä osallisuus tarkoittaa? Millaista osallisuustyötä Espoon kaupungilla tehdään? Miten ystävällisyys liittyy osallisuustyöhön? </p><p> </p><p>Tilaisuudessa keskustellaan ja voi osallistua kahteen osallistumisprosessiin, joissa kartoitetaan asukkaiden näkemyksiä seuraavista aiheista: </p><p>Millaista vuorovaikutus Espoon henkilöstön kanssa on ollut asukkaiden kokemuksen mukaan? </p><p>Miten hyvinvoinnin, terveyden ja osallisuuden järjestöavustuksia tulisi kohdentaa tilanteessa, jossa hakukriteerit täyttäviä hakemuksia on enemmän kuin jaettavia määrärahoja?</p><p>To 12.3. Eläkeläisten rooli yhteisöissä.</p><p>To 16.4. Omaishoitajuus</p><p>To 21.5. Asiaa Muistista</p><p>Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5lujy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn6b5luye", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5lvfa/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494596, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-21T13:19:50.991450Z", "last_modified_time": "2026-01-21T13:19:50.991466Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ace7c1f1-678c-4965-bd03-313898623409.png", "name": "Kohtaamiskahvilassa on aina luvassa tärkeää tietoa, mutta myös hyvää seuraa ja kuppi kuumaa.", "cropping": "0,0,1080,1080", "photographer_name": "Heli Lekka", "alt_text": "Yksi kolmekymppinen ja neljä eläkeikäistä naista kahvilla Ison Omenan kirjastossa. Tektsi: Kohtaamiskahvila 2026.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494596/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2026-01-21T13:25:31.838530Z", "last_modified_time": "2026-01-30T07:08:46.430851Z", "date_published": null, "start_time": "2026-05-21T10:00:00Z", "end_time": "2026-05-21T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Kohtaamiskahvila" }, "short_description": { "fi": "Kuntalaisten kohtaamispaikka, jossa alueen toimijat jakavat tärkeää tietoa palveluista." }, "location_extra_info": { "fi": "Stage" }, "description": { "fi": "<p>Kohtaamiskahvila kokoontuu kerran kuukaudessa torstaisin Ison Omenan kirjaston Stagella. Joka kerta on luvassa tietoiskuja tärkeistä senioreiden ja myös muun ikäisten arkeen liittyvistä tärkeistä asioista.</p><p>Tervetuloa mukaan keskustelemaan, oppimaan ja tutustumaan uusiin ihmisiin. Kohtaamiskahvilassa on aina hyvä tunnelma ja kuppi kuumaa kahvia tai teetä tarjolla.</p><p><br></p><p>To 12.2. Mistä syntyy Osallisuus?</p><p><br></p><p>Ystävällisyyden viikon kohtaamiskahvila</p><p> </p><p>Mitä osallisuus tarkoittaa? Millaista osallisuustyötä Espoon kaupungilla tehdään? Miten ystävällisyys liittyy osallisuustyöhön? </p><p> </p><p>Tilaisuudessa keskustellaan ja voi osallistua kahteen osallistumisprosessiin, joissa kartoitetaan asukkaiden näkemyksiä seuraavista aiheista: </p><p>Millaista vuorovaikutus Espoon henkilöstön kanssa on ollut asukkaiden kokemuksen mukaan? </p><p>Miten hyvinvoinnin, terveyden ja osallisuuden järjestöavustuksia tulisi kohdentaa tilanteessa, jossa hakukriteerit täyttäviä hakemuksia on enemmän kuin jaettavia määrärahoja?</p><p>To 12.3. Eläkeläisten rooli yhteisöissä.</p><p>To 16.4. Omaishoitajuus</p><p>To 21.5. Asiaa Muistista</p><p>Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn6b5luye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4nev4p4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494504, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T10:35:59.118945Z", "last_modified_time": "2026-01-16T10:35:59.118968Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3b56f196-3b4f-4357-a3e6-c64ad8000292.png", "name": "", "cropping": "148,0,852,705", "photographer_name": "", "alt_text": "Sellon kirjaston lastenosasto, värikkäitä hyllyjä täynnä lastenkirjoja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494504/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-16T10:29:11.646225Z", "last_modified_time": "2026-01-30T07:03:53.058059Z", "date_published": null, "start_time": "2026-01-30T16:00:00Z", "end_time": "2026-02-01T15: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Muumit-lukumaratonin kirjastokatsomo" }, "short_description": { "fi": "Mahdollisuus seurata Ylen Muumit-lukumaratonin suoraa lähetystä kirjastossa" }, "location_extra_info": { "fi": "Stage" }, "description": { "fi": "<p>Yle Areena esittää 30.01.-01.02. suoran lähetyksen, jossa tunnetut suomalaiset lukevat ääneen Tove Janssonin kaikki yhdeksän pitkää muumikirjaa. Ison Omenan kirjaston Stagella voit istahtaa seuraamaan lukumaratonia lyhyeksi tai pidemmäksi tuokioksi. Lukumaraton alkaa 30.01. klo 18, ja sitä esitetään viikonloppuna kirjaston ollessa avoinna.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4nev4p4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn5nklxwq", "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: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:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5nkl3dy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493962, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-11-28T12:44:29.503562Z", "last_modified_time": "2026-01-19T13:11:32.534323Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png", "name": "", "cropping": "0,0,1920,1920", "photographer_name": "Espoon kaupunki", "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-19T13:21:57.970260Z", "last_modified_time": "2026-01-29T14:01:05.839838Z", "date_published": null, "start_time": "2026-02-17T14:00:00Z", "end_time": "2026-02-17T16: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, "provider_contact_info": null, "provider": null, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "name": { "fi": "Perhepaja: SLIME TIME! Tehdään yhdessä leikkilimaa", "sv": "Workshop för familjer: SLIME TIME! Låt oss göra lekdeg tillsammans", "en": "Workshop for Families: SLIME TIME! Let's make slime together" }, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits." }, "location_extra_info": { "fi": "Paja tai Sininen huone", "sv": "Verkstad eller Sininen huone", "en": "Maker Space or Sininen huone " }, "description": { "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5nklxwq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoaukl6ca", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494685, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-14T12:48:47.287804Z", "last_modified_time": "2025-02-14T12:48:47.287818Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/07288f28-3b96-43ab-a541-701ad76500c8.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "canva", "alt_text": "pelinappuloita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494685/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-01-29T14:00:37.610552Z", "last_modified_time": "2026-01-29T14:00:37.610571Z", "date_published": null, "start_time": "2026-02-18T11:00:00Z", "end_time": "2026-02-18T13: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, "provider_contact_info": null, "provider": null, "info_url": { "fi": "https://helmet.finna.fi/Content/tapahtumat", "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv", "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb" }, "name": { "fi": "Talviloman lautapelikerho", "sv": "Brädspelsklubb under vinterlovet", "en": "Winter break board game club" }, "short_description": { "fi": "Tule pelaamaan! ", "sv": "Kom och spel! ", "en": "Come and play! " }, "location_extra_info": { "fi": "Lastenosasto", "sv": "Barnavdelningen", "en": "Children's section" }, "description": { "fi": "<p>Tule pelailemaan lautapelejä keskiviikkona 18.2.2026 klo 13 kirjaston lastenosastolle.</p><p>Suunnattu alakouluikäisille, mutta avoin kaikille halukkaille, tervetuloa!</p><p><br></p><p>Järjestäjä: Kirjasto</p>", "sv": "<p>Kom och spela brädspel onsdagen den 18 februari 2026 kl. 13.00 i barnavdelningen på biblioteket.</p><p>Riktar sig till barn i grundskolan, men är öppet för alla som vill vara med. Välkommen!</p><p><br></p><p>Arrangör: Biblioteket</p>", "en": "<p>Come and play board games on Wednesday, February 18, 2026, at 1 p.m. in the children's section of the library.</p><p><br></p><p>Open to all ages, but aimed at elementary school children. Welcome!</p><p><br></p><p>Organizer: Library</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoaukl6ca/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoaukl6y4", "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:p4878/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494234, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-17T11:43:03.399265Z", "last_modified_time": "2025-12-17T11:43:03.399283Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b1e003d1-f85e-40d6-90bb-806e401bb1d3.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Mario ja Bowser ajavat autoilla kilpaa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-01-29T13:33:34.672576Z", "last_modified_time": "2026-01-29T13:33:34.672594Z", "date_published": null, "start_time": "2026-02-16T11:00:00Z", "end_time": "2026-02-16T13: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Mario Kart -turnaus", "sv": "Mario Kart-turnering", "en": "Mario Kart tournament" }, "short_description": { "fi": "Lapsille ja nuorille suunnattu Mario Kart -turnaus kirjastossa.", "sv": "En Mario Kart-turnering för barn och unga på biblioteket.", "en": "A Mario Kart tournament for children and young people at the library." }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "description": { "fi": "<p>Mario Kart -turnaus lapsille ja nuorille Kibessä. </p><p><br></p><p>Tervetuloa mukaan kisailemaan!</p>", "sv": "<p>Mario Kart-turnering för barn och unga i Kibe. </p><p>Välkommen att delta i tävlingen!</p>", "en": "<p>Mario Kart tournament for children and young people in the library's Kibe space. </p><p> Welcome to join the competition!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoaukl6y4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoat4raiq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494683, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T13:04:49.102601Z", "last_modified_time": "2026-01-29T13:04:49.102617Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/37380a77-eac5-4a13-9ee6-1862e5c58eaa.jpg", "name": "", "cropping": "0,0,1024,1024", "photographer_name": "", "alt_text": "Sargam intialaisen laulurymän värikäs logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494683/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T13:12:28.101382Z", "last_modified_time": "2026-01-29T13:32:29.486966Z", "date_published": null, "start_time": "2026-02-21T13:30:00Z", "end_time": "2026-02-21T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "Sargam lauluryhmä ", "sv": "Songgruppen Sargam", "en": "Sargam singing group" }, "short_description": { "fi": "Juhlista Kansainvälistä äidinkielen päivää ja Satakielikuukauden alkua Sargam‑lauluryhmän värikkään musiikkijuhlan merkeissä.", "sv": "Fira Internationella modersmålsdagen och början på den Flerspråkiga månaden med en glädjefylld musikfest av sånggruppen Sargam.", "en": "Celebrate International Mother Language Day and the beginning of Multilingual Month with a joyful musical fest by the singing group Sargam." }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "description": { "fi": "<p>Juhlista Kansainvälistä äidinkielen päivää ja Satakielikuukauden alkua Sargam‑lauluryhmän värikkään musiikkijuhlan merkeissä.</p><p>Tämä sydämellinen ja avoin tapahtuma tuo yhteen intialaistaustaisia lapsia juhlistamaan kielellistä moninaisuutta musiikin avulla. Maksuton tilaisuus tarjoaa monipuolisen valikoiman lauluja useilla intialaisilla kielillä sekä suomeksi, höystettynä kepeillä keskusteluilla oman äidinkielen ylläpitämisestä Suomessa.</p><p>Musiikin universaalin kielen kautta nuoret esiintyjät muistuttavat meitä siitä, että jokainen äidinkieli on silta — yhdistäen sydämiä, kulttuureja ja sukupolvia harmoniassa.</p><p>Sargam, Sajal Saun johtama lauluryhmä, on kokoonpano, jossa musiikki ylittää rajat ja yhdistää intialaisten ja länsimaisten perinteiden elävän hengen. Heidän esityksensä juhlistavat luovuutta ja iloa kulttuurien, soittimien ja musiikkityylien rikkaan yhdistelmän kautta. Ryhmän ohjelmisto ulottuu bengalista, hindistä ja tamilista englantiin ja ajoittain suomeen — heijastaen uskoa siihen, että musiikki koskettaa sydäntä sanojen tuolla puolen.</p><p><br></p><p>Satakielikuukausi</p><p>#helloespoo</p>", "sv": "<p>Fira Internationella modersmålsdagen och början på den Flerspråkiga månaden med en glädjefylld musikfest av sånggruppen Sargam.</p><p>Detta varma och inkluderande evenemang samlar barn med indisk bakgrund för att hylla det språkliga mångfaldet genom musik. Den kostnadsfria sammankomsten bjuder på ett färgstarkt urval av sånger på flera indiska språk samt på finska, sammanvävt med lättsamma samtal om hur man bevarar sitt modersmål när man bor i Finland.</p><p>Genom musikens universella språk påminner de unga artisterna oss om att varje modersmål är en bro — som förenar hjärtan, kulturer och generationer i harmoni.</p><p>Sargam, lett av Sajal Sau, är en sånggrupp där musiken överskrider gränser och förenar den rika andan i indiska och västerländska traditioner. Deras uppträdanden firar kreativitet och glädje genom en fusion av kulturer, instrument och musikstilar. Gruppens repertoar omfattar bengali, hindi, tamil, engelska och ibland finska, vilket speglar deras övertygelse om att musik talar till hjärtat bortom orden.</p>", "en": "<p>Celebrate International Mother Language Day and the beginning of Multilingual Month with a joyful musical fest by the singing group Sargam.</p><p>This heartwarming and inclusive event brings together children from Indian backgrounds to honour linguistic diversity through music. The free gathering features a vibrant selection of songs in several Indian languages as well as Finnish, woven together with light‑hearted conversations about maintaining one’s mother tongue while living in Finland.</p><p>Through the universal language of music, young performers remind us that every mother tongue is a bridge — connecting hearts, cultures, and generations in harmony.</p><p>Sargam, led by Sajal Sau, is a singing group where music transcends boundaries and blends the rich spirit of Indian and Western traditions. Their performances celebrate creativity and joy through a fusion of cultures, instruments, and musical styles. The group’s repertoire spans Bengali, Hindi, Tamil, English and occasionally Finnish, reflecting their belief that music speaks to the heart beyond words.</p><p><br></p><p>#helloespoo</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoat4raiq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoat4ra6e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494684, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-29T12:52:03.845829Z", "last_modified_time": "2026-01-29T12:52:03.845851Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9db5bfeb-0d37-453a-8538-8487c19bfa23.png", "name": "", "cropping": "100,0,700,600", "photographer_name": "", "alt_text": "NÄEN! - Kilahde-taidekollektiivin näyttely (Sellon kirjaston Vitriinigalleria 1.2.-13.3.2026)", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494684/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T13:08:04.038868Z", "last_modified_time": "2026-01-29T13:11:20.119653Z", "date_published": "2026-01-29T12:14:00Z", "start_time": "2026-02-01T08:00:00Z", "end_time": "2026-03-13T16: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, "provider_contact_info": null, "provider": null, "info_url": null, "name": { "fi": "NÄEN! - Kilahde-taidekollektiivin yhteisnäyttely ", "sv": "NÄEN! - Gemensam utställning av Kilahde konstnärskollektiv", "en": "NÄEN! - Joint Exhibition by Kilahde Art Collective" }, "short_description": { "fi": "Kilahde-taidekollektiivin viiden taiteilijan yhteisnäyttely sisältää muun muassa maalauksia, piirustuksia sekä valokuvia.", "sv": "Den gemensamma utställningen av fem konstnärer från konstkollektivet Kilahde omfattar målningar, teckningar och fotografier.", "en": "The joint exhibition by five artists from the Kilahde art collective includes paintings, drawings, and photographs." }, "location_extra_info": { "fi": "Vitriinigalleria (kirjaston ylempi kerros)", "sv": "Glassmontern & dess vägggalleri (bibliotekets övre våning)", "en": "Showcase Gallery (upper floor of the library)" }, "description": { "fi": "<p>Kilahde-taidekollektiivin kuudes näyttely pohtii tulevaisuutta ja sinne kurkistamista. Onko tulevaa ilman mennyttä? <em>NÄEN!</em> -näyttely kutsuu katsojan mukaansa syventymään huomiseen. Elämä vilisee silmissä. Entä tulevaisuus?</p><p>Visioita on monella, mutta ainut varmuus on muutos. Kuinka käy, jos ei haluakaan muuttua tai kasvaa? Taiteilijat lähestyvät aihetta omien kokemusten sekä näkökulmien kautta. Yhdessä teokset muodostavat rikkaan kokonaisuuden, joka jättää jäljen.</p><p>Näyttelykokonaisuus sisältää muun muassa maalauksia, piirustuksia sekä valokuvia.</p><p>Näyttelyn taiteilijat:</p><ul><li><strong>Netta Saari</strong></li><li><strong>Elsi Wikman</strong></li><li><strong>Roosa Kirjonen</strong></li><li><strong>Jasmi Torkkel</strong></li><li><strong>Sanni Laine</strong></li></ul><p>Kilahde on vuonna 2023 perustettu taidekollektiivi, joka toimii pääsääntöisesti pääkaupunkiseudulla. </p><p>Mitä sinä näet?</p><p>Taidenäyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p><p>Kilahde Instagramissa: <a href=\"https://www.instagram.com/kilahdekollektiivi\">@kilahdekollektiivi</a></p>", "sv": "<p>Den sjätte utställningen av konstkollektivet Kilahde reflekterar över framtiden och vad som väntar. Finns det en framtid utan det förflutna? Utställningen inbjuder betraktaren att fördjupa sig i morgondagen. Konstnärerna närmar sig ämnet genom sina egna erfarenheter och perspektiv. Tillsammans bildar verken en rik helhet som lämnar ett bestående intryck.</p><p>Utställningen omfattar bland annat målningar, teckningar och fotografier.</p><p>Utställningens konstnärer:</p><ul><li><strong>Netta Saari</strong></li><li><strong>Elsi Wikman</strong></li><li><strong>Roosa Kirjonen</strong></li><li><strong>Jasmi Torkkel</strong></li><li><strong>Sanni Laine</strong></li></ul><p>Hur ser framtiden ut? Vad ser du?</p><p>Kilahde är ett konstnärskollektiv som grundades 2023 och som huvudsakligen är verksamt i huvudstadsregionen.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p><p>Instagram: <a href=\"https://www.instagram.com/kilahdekollektiivi\">@kilahdekollektiivi</a></p>", "en": "<p>The sixth exhibition by the Kilahde art collective reflects on the future and what lies ahead. Is there a future without the past? The exhibition invites viewers to immerse themselves in tomorrow. The artists approach the subject through their own experiences and perspectives. Together, the works form a rich whole that leaves a lasting impression.</p><p>The exhibition includes paintings, drawings and photographs.</p><p>Artists in the exhibition:</p><ul><li><strong>Netta Saari</strong></li><li><strong>Elsi Wikman</strong></li><li><strong>Roosa Kirjonen</strong></li><li><strong>Jasmi Torkkel</strong></li><li><strong>Sanni Laine</strong></li></ul><p>What does the future look like? What do you see?</p><p>Kilahde is an art collective founded in 2023 that is mainly active in the capital region.</p><p>The exhibition can be seen during the library opening hours. Welcome!</p><p>Instagram: <a href=\"https://www.instagram.com/kilahdekollektiivi\">@kilahdekollektiivi</a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoat4ra6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoatopyjy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatop3ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494681, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T11:51:24.331033Z", "last_modified_time": "2026-01-29T11:51:24.331049Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5643e372-411b-47d7-836b-aff6a586d5cf.png", "name": "", "cropping": "0,80,1120,1200", "photographer_name": "", "alt_text": "graafinen tummasävyinen kuva jossa hahmo lähettää sydämen mallisen ilmapallon taivaalle jossa tähdistä muodostuu koiran hahmo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494681/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T12:12:42.754209Z", "last_modified_time": "2026-01-29T12:12:42.754227Z", "date_published": null, "start_time": "2026-03-23T16:00:00Z", "end_time": "2026-03-23T17: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, "provider_contact_info": null, "provider": { "fi": "Kiveko ry", "sv": "Kiveko ry", "en": "Kiveko ry" }, "info_url": null, "name": { "fi": " Vertaistukiryhmä lemmikin menettäneille", "sv": "Kamratstödsgrupp för dem som har förlorat ett husdjur (på finska)", "en": "Peer support group for those who have lost a pet (in Finnish)" }, "short_description": { "fi": " Vertaistukiryhmä lemmikin menettäneille", "sv": "Kamratstödsgrupp för dem som har förlorat ett husdjur (på finska)", "en": "Peer support group for those who have lost a pet (in Finnish)" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "description": { "fi": "<p>Vertaistukiryhmä lemmikin menettäneille.</p><p>Yksi osa lemmikin omistamisen taivalta on usein hyvin haastava luopumisen hetki. Tukeakseen lemmikin menettäneitä suruprosessissa Kivenlahden koirakerho Kiveko ry järjestää keväällä 2026 pilottiluonteisen vertaistukiryhmä Ison Omenan kirjastossa. </p><p><br></p><p>Mitä ryhmä tarjoaa?</p><p>Turvallisen ja empaattisen tilan jakaa tunteita ja muistoja, mahdollisuuden saada vertaistukea muilta saman kokeneilta, tilaisuuden tulla kuuntelemaan, keskustelemaan tai vain olemaan läsnä. </p><p>Ryhmä kokoontuu kolmena maanantaina Ison Omenan kirjastossa seuraavina aikoina:</p><p>Ma 2.3.2026 klo 18:10-19.30</p><p>Ma 9.3.2026 klo 18:00-19:30</p><p>Ma 23.3.2026 klo 18:00-19:30</p><p><br></p><p>Osallistuminen on maksutonta eikä edellytä Kivekon jäsenyyttä. Ryhmä on avoin kaikille, mutta osallistuminen edellyttää täysi-ikäisyyttä. Mukaan mahtuu 8 osallistujaa ilmoittautumisjärjestyksessä. </p><p>Ilmoittaudu viimeistään 23.2. lähettämällä sähköpostia osoitteeseen kivekoposti@gmail.com. Kerro ilmoittautumisviestissä nimesi, puhelinnumerosi ja lyhyt esittely tilanteestasi (minkä eläimen menetit ja milloin).Jos sinulla on kysymyksiä tähän pilottiryhmään liittyen, laitathan viestiä em. sähköpostiin. Tule mukaan kulkemaan hetki yhdessä – suru on helpompi kantaa, kun sen voi jakaa.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kamratstödsgrupp för dem som har förlorat ett husdjur</p><p>En del av att äga ett husdjur är det ofta mycket svåra ögonblicket då man måste ta farväl. För att stötta personer som sörjer ett husdjurs bortgång ordnar Kivenlahti hundklubb Kiveko rf en pilotkamratstödsgrupp på Iso Omena‑biblioteket våren 2026.</p><p><br></p><p>Vad erbjuder gruppen?</p><p>Ett tryggt och empatiskt rum att dela känslor och minnen, en möjlighet att få kamratstöd av andra som upplevt samma sak, samt en chans att lyssna, samtala eller bara vara närvarande.</p><p>Gruppen träffas tre måndagar på Iso Omena‑biblioteket vid följande tider:</p><p>Må 2.3.2026 kl. 18.10–19.30</p><p>Må 9.3.2026 kl. 18.00–19.30</p><p>Må 23.3.2026 kl. 18.00–19.30</p><p>Deltagandet är kostnadsfritt och kräver inte medlemskap i Kiveko. Gruppen är öppen för alla, men deltagare måste vara myndiga. Det finns plats för 8 deltagare i anmälningsordning.</p><p>Anmäl dig senast 23.2. genom att skicka e‑post till kivekoposti@gmail.com. Ange ditt namn, telefonnummer och en kort beskrivning av din situation (vilket djur du förlorade och när).</p><p>Om du har frågor om denna pilotgrupp, skicka gärna ett meddelande till samma adress.</p><p>Kom med och dela en stund tillsammans – sorgen blir lättare att bära när den delas.</p><p>Varmt välkommen!</p>", "en": "<p>Peer support group for those who have lost a pet</p><p>One part of the journey of having a pet is the often very difficult moment of letting go. To support people grieving the loss of a pet, the Kivenlahti Dog Club Kiveko ry will organise a pilot peer support group at the Iso Omena Library in spring 2026.</p><p><br></p><p>What does the group offer?</p><p>A safe and empathetic space to share feelings and memories, an opportunity to receive peer support from others who have experienced the same, and a chance to listen, talk, or simply be present.</p><p>The group meets on three Mondays at Iso Omena Library at the following times:</p><p>Mon 2 March 2026, 18:10–19:30</p><p>Mon 9 March 2026, 18:00–19:30</p><p>Mon 23 March 2026, 18:00–19:30</p><p>Participation is free and does not require Kiveko membership. The group is open to everyone, but participants must be adults. There is space for 8 participants in order of registration.</p><p>Register by 23 February by sending an email to kivekoposti@gmail.com. In your message, include your name, phone number, and a short description of your situation (which animal you lost and when).</p><p>If you have any questions about this pilot group, please contact the same email address.</p><p>Join us for a moment together – grief becomes lighter when it can be shared.</p><p>Warmly welcome!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatopyjy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoatopzoi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatop3ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494681, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T11:51:24.331033Z", "last_modified_time": "2026-01-29T11:51:24.331049Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5643e372-411b-47d7-836b-aff6a586d5cf.png", "name": "", "cropping": "0,80,1120,1200", "photographer_name": "", "alt_text": "graafinen tummasävyinen kuva jossa hahmo lähettää sydämen mallisen ilmapallon taivaalle jossa tähdistä muodostuu koiran hahmo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494681/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T12:12:42.677884Z", "last_modified_time": "2026-01-29T12:12:42.677902Z", "date_published": null, "start_time": "2026-03-09T16:00:00Z", "end_time": "2026-03-09T17: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, "provider_contact_info": null, "provider": { "fi": "Kiveko ry", "sv": "Kiveko ry", "en": "Kiveko ry" }, "info_url": null, "name": { "fi": " Vertaistukiryhmä lemmikin menettäneille", "sv": "Kamratstödsgrupp för dem som har förlorat ett husdjur (på finska)", "en": "Peer support group for those who have lost a pet (in Finnish)" }, "short_description": { "fi": " Vertaistukiryhmä lemmikin menettäneille", "sv": "Kamratstödsgrupp för dem som har förlorat ett husdjur (på finska)", "en": "Peer support group for those who have lost a pet (in Finnish)" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "description": { "fi": "<p>Vertaistukiryhmä lemmikin menettäneille.</p><p>Yksi osa lemmikin omistamisen taivalta on usein hyvin haastava luopumisen hetki. Tukeakseen lemmikin menettäneitä suruprosessissa Kivenlahden koirakerho Kiveko ry järjestää keväällä 2026 pilottiluonteisen vertaistukiryhmä Ison Omenan kirjastossa. </p><p><br></p><p>Mitä ryhmä tarjoaa?</p><p>Turvallisen ja empaattisen tilan jakaa tunteita ja muistoja, mahdollisuuden saada vertaistukea muilta saman kokeneilta, tilaisuuden tulla kuuntelemaan, keskustelemaan tai vain olemaan läsnä. </p><p>Ryhmä kokoontuu kolmena maanantaina Ison Omenan kirjastossa seuraavina aikoina:</p><p>Ma 2.3.2026 klo 18:10-19.30</p><p>Ma 9.3.2026 klo 18:00-19:30</p><p>Ma 23.3.2026 klo 18:00-19:30</p><p><br></p><p>Osallistuminen on maksutonta eikä edellytä Kivekon jäsenyyttä. Ryhmä on avoin kaikille, mutta osallistuminen edellyttää täysi-ikäisyyttä. Mukaan mahtuu 8 osallistujaa ilmoittautumisjärjestyksessä. </p><p>Ilmoittaudu viimeistään 23.2. lähettämällä sähköpostia osoitteeseen kivekoposti@gmail.com. Kerro ilmoittautumisviestissä nimesi, puhelinnumerosi ja lyhyt esittely tilanteestasi (minkä eläimen menetit ja milloin).Jos sinulla on kysymyksiä tähän pilottiryhmään liittyen, laitathan viestiä em. sähköpostiin. Tule mukaan kulkemaan hetki yhdessä – suru on helpompi kantaa, kun sen voi jakaa.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kamratstödsgrupp för dem som har förlorat ett husdjur</p><p>En del av att äga ett husdjur är det ofta mycket svåra ögonblicket då man måste ta farväl. För att stötta personer som sörjer ett husdjurs bortgång ordnar Kivenlahti hundklubb Kiveko rf en pilotkamratstödsgrupp på Iso Omena‑biblioteket våren 2026.</p><p><br></p><p>Vad erbjuder gruppen?</p><p>Ett tryggt och empatiskt rum att dela känslor och minnen, en möjlighet att få kamratstöd av andra som upplevt samma sak, samt en chans att lyssna, samtala eller bara vara närvarande.</p><p>Gruppen träffas tre måndagar på Iso Omena‑biblioteket vid följande tider:</p><p>Må 2.3.2026 kl. 18.10–19.30</p><p>Må 9.3.2026 kl. 18.00–19.30</p><p>Må 23.3.2026 kl. 18.00–19.30</p><p>Deltagandet är kostnadsfritt och kräver inte medlemskap i Kiveko. Gruppen är öppen för alla, men deltagare måste vara myndiga. Det finns plats för 8 deltagare i anmälningsordning.</p><p>Anmäl dig senast 23.2. genom att skicka e‑post till kivekoposti@gmail.com. Ange ditt namn, telefonnummer och en kort beskrivning av din situation (vilket djur du förlorade och när).</p><p>Om du har frågor om denna pilotgrupp, skicka gärna ett meddelande till samma adress.</p><p>Kom med och dela en stund tillsammans – sorgen blir lättare att bära när den delas.</p><p>Varmt välkommen!</p>", "en": "<p>Peer support group for those who have lost a pet</p><p>One part of the journey of having a pet is the often very difficult moment of letting go. To support people grieving the loss of a pet, the Kivenlahti Dog Club Kiveko ry will organise a pilot peer support group at the Iso Omena Library in spring 2026.</p><p><br></p><p>What does the group offer?</p><p>A safe and empathetic space to share feelings and memories, an opportunity to receive peer support from others who have experienced the same, and a chance to listen, talk, or simply be present.</p><p>The group meets on three Mondays at Iso Omena Library at the following times:</p><p>Mon 2 March 2026, 18:10–19:30</p><p>Mon 9 March 2026, 18:00–19:30</p><p>Mon 23 March 2026, 18:00–19:30</p><p>Participation is free and does not require Kiveko membership. The group is open to everyone, but participants must be adults. There is space for 8 participants in order of registration.</p><p>Register by 23 February by sending an email to kivekoposti@gmail.com. In your message, include your name, phone number, and a short description of your situation (which animal you lost and when).</p><p>If you have any questions about this pilot group, please contact the same email address.</p><p>Join us for a moment together – grief becomes lighter when it can be shared.</p><p>Warmly welcome!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatopzoi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoatop2ka", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatop3ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494681, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T11:51:24.331033Z", "last_modified_time": "2026-01-29T11:51:24.331049Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5643e372-411b-47d7-836b-aff6a586d5cf.png", "name": "", "cropping": "0,80,1120,1200", "photographer_name": "", "alt_text": "graafinen tummasävyinen kuva jossa hahmo lähettää sydämen mallisen ilmapallon taivaalle jossa tähdistä muodostuu koiran hahmo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494681/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T12:12:42.598879Z", "last_modified_time": "2026-01-29T12:12:42.598897Z", "date_published": null, "start_time": "2026-03-02T16:00:00Z", "end_time": "2026-03-02T17: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, "provider_contact_info": null, "provider": { "fi": "Kiveko ry", "sv": "Kiveko ry", "en": "Kiveko ry" }, "info_url": null, "name": { "fi": " Vertaistukiryhmä lemmikin menettäneille", "sv": "Kamratstödsgrupp för dem som har förlorat ett husdjur (på finska)", "en": "Peer support group for those who have lost a pet (in Finnish)" }, "short_description": { "fi": " Vertaistukiryhmä lemmikin menettäneille", "sv": "Kamratstödsgrupp för dem som har förlorat ett husdjur (på finska)", "en": "Peer support group for those who have lost a pet (in Finnish)" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "description": { "fi": "<p>Vertaistukiryhmä lemmikin menettäneille.</p><p>Yksi osa lemmikin omistamisen taivalta on usein hyvin haastava luopumisen hetki. Tukeakseen lemmikin menettäneitä suruprosessissa Kivenlahden koirakerho Kiveko ry järjestää keväällä 2026 pilottiluonteisen vertaistukiryhmä Ison Omenan kirjastossa. </p><p><br></p><p>Mitä ryhmä tarjoaa?</p><p>Turvallisen ja empaattisen tilan jakaa tunteita ja muistoja, mahdollisuuden saada vertaistukea muilta saman kokeneilta, tilaisuuden tulla kuuntelemaan, keskustelemaan tai vain olemaan läsnä. </p><p>Ryhmä kokoontuu kolmena maanantaina Ison Omenan kirjastossa seuraavina aikoina:</p><p>Ma 2.3.2026 klo 18:10-19.30</p><p>Ma 9.3.2026 klo 18:00-19:30</p><p>Ma 23.3.2026 klo 18:00-19:30</p><p><br></p><p>Osallistuminen on maksutonta eikä edellytä Kivekon jäsenyyttä. Ryhmä on avoin kaikille, mutta osallistuminen edellyttää täysi-ikäisyyttä. Mukaan mahtuu 8 osallistujaa ilmoittautumisjärjestyksessä. </p><p>Ilmoittaudu viimeistään 23.2. lähettämällä sähköpostia osoitteeseen kivekoposti@gmail.com. Kerro ilmoittautumisviestissä nimesi, puhelinnumerosi ja lyhyt esittely tilanteestasi (minkä eläimen menetit ja milloin).Jos sinulla on kysymyksiä tähän pilottiryhmään liittyen, laitathan viestiä em. sähköpostiin. Tule mukaan kulkemaan hetki yhdessä – suru on helpompi kantaa, kun sen voi jakaa.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kamratstödsgrupp för dem som har förlorat ett husdjur</p><p>En del av att äga ett husdjur är det ofta mycket svåra ögonblicket då man måste ta farväl. För att stötta personer som sörjer ett husdjurs bortgång ordnar Kivenlahti hundklubb Kiveko rf en pilotkamratstödsgrupp på Iso Omena‑biblioteket våren 2026.</p><p><br></p><p>Vad erbjuder gruppen?</p><p>Ett tryggt och empatiskt rum att dela känslor och minnen, en möjlighet att få kamratstöd av andra som upplevt samma sak, samt en chans att lyssna, samtala eller bara vara närvarande.</p><p>Gruppen träffas tre måndagar på Iso Omena‑biblioteket vid följande tider:</p><p>Må 2.3.2026 kl. 18.10–19.30</p><p>Må 9.3.2026 kl. 18.00–19.30</p><p>Må 23.3.2026 kl. 18.00–19.30</p><p>Deltagandet är kostnadsfritt och kräver inte medlemskap i Kiveko. Gruppen är öppen för alla, men deltagare måste vara myndiga. Det finns plats för 8 deltagare i anmälningsordning.</p><p>Anmäl dig senast 23.2. genom att skicka e‑post till kivekoposti@gmail.com. Ange ditt namn, telefonnummer och en kort beskrivning av din situation (vilket djur du förlorade och när).</p><p>Om du har frågor om denna pilotgrupp, skicka gärna ett meddelande till samma adress.</p><p>Kom med och dela en stund tillsammans – sorgen blir lättare att bära när den delas.</p><p>Varmt välkommen!</p>", "en": "<p>Peer support group for those who have lost a pet</p><p>One part of the journey of having a pet is the often very difficult moment of letting go. To support people grieving the loss of a pet, the Kivenlahti Dog Club Kiveko ry will organise a pilot peer support group at the Iso Omena Library in spring 2026.</p><p><br></p><p>What does the group offer?</p><p>A safe and empathetic space to share feelings and memories, an opportunity to receive peer support from others who have experienced the same, and a chance to listen, talk, or simply be present.</p><p>The group meets on three Mondays at Iso Omena Library at the following times:</p><p>Mon 2 March 2026, 18:10–19:30</p><p>Mon 9 March 2026, 18:00–19:30</p><p>Mon 23 March 2026, 18:00–19:30</p><p>Participation is free and does not require Kiveko membership. The group is open to everyone, but participants must be adults. There is space for 8 participants in order of registration.</p><p>Register by 23 February by sending an email to kivekoposti@gmail.com. In your message, include your name, phone number, and a short description of your situation (which animal you lost and when).</p><p>If you have any questions about this pilot group, please contact the same email address.</p><p>Join us for a moment together – grief becomes lighter when it can be shared.</p><p>Warmly welcome!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoatop2ka/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn5m5huui", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5m5hvqe/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-19T12:43:09.534413Z", "last_modified_time": "2026-01-19T12:43:09.534437Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/160b46c7-c595-4c4a-9ede-015b2dba51fe.png", "name": "Sanna Vaara, eli Räppäri Vaara luotsaa Ison Omenan kirjaston lavarunoklubia.", "cropping": "293,0,1707,1414", "photographer_name": "Julia Alakulju", "alt_text": "Hymyilevä Sanna Vaara ja Omppu Open micin logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494544/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-19T12:58:28.604392Z", "last_modified_time": "2026-01-29T11:17:43.704899Z", "date_published": null, "start_time": "2026-01-29T15:30:00Z", "end_time": "2026-01-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, "provider_contact_info": null, "provider": { "fi": "Espoon kirjailijat ry.", "sv": "Espoon kirjailijat ry.", "en": "Espoon kirjailijat ry." }, "info_url": null, "name": { "fi": "Omppu Open Mic - Runostage", "sv": "Omppu Open Mic - Runostage", "en": "Omppu Open Mic - Live poetry" }, "short_description": { "fi": "Tervetuloa lavarunoilemaan tai kuuntelemaan nykyrunoutta!", "sv": "Välkommen att uppträda med spoken word eller lyssna på nutida poesi!", "en": "Welcome to perform spoken word or enjoy contemporary poetry!" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "description": { "fi": "<p>Tervetuloa lavarunoklubille esittämään omia tekstejäsi lämpimissä tunnelmissa. Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara. Tammikuun Runostagella 29.1. esiintyy myös runoilija Leena Sainio. Ilmoittautumiset paikan päällä (esitykset max 5min)</p><p><br></p><p>Runoja saa esittää millä kielellä tahansa.</p><p>#helloespoo</p><p><br></p><p>Kaikki päivät:</p><p>29.1.</p><p>26.2.</p><p>26.3.</p><p>7.5.</p>", "sv": "<p>Välkommen till vår spoken word‑klubb för att framföra dina egna texter i en varm och inbjudande stämning. Kvällen leds av Sanna Vaara, även känd som Räppäri Vaara. På januaris Runostage den 29.1 uppträder poeten Leena Sainio.</p><p>Anmälan sker på plats (framträdanden max 5 minuter).</p><p><br></p><p>Alla dagar:</p><p>29.1.</p><p>26.2.</p><p>26.3.</p><p>7.5.</p>", "en": "<p>Welcome to our spoken word club to share your own texts in a warm and welcoming atmosphere. The evening will be hosted by Sanna Vaara, also known as Räppäri Vaara. At the January Runostage on 29 January, poet Leena Sainio will also perform.</p><p>Sign‑ups take place on site (performances max 5 minutes).</p><p><br></p><p>You can perform in language you prefer.</p><p>#helloespoo</p><p><br></p><p>All dates:</p><p>29.1.</p><p>26.2.</p><p>26.3.</p><p>7.5.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5m5huui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn5m5hthm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5m5hvqe/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-19T12:43:09.534413Z", "last_modified_time": "2026-01-19T12:43:09.534437Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/160b46c7-c595-4c4a-9ede-015b2dba51fe.png", "name": "Sanna Vaara, eli Räppäri Vaara luotsaa Ison Omenan kirjaston lavarunoklubia.", "cropping": "293,0,1707,1414", "photographer_name": "Julia Alakulju", "alt_text": "Hymyilevä Sanna Vaara ja Omppu Open micin logo", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494544/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-19T12:58:28.872256Z", "last_modified_time": "2026-01-29T11:17:43.549218Z", "date_published": null, "start_time": "2026-03-26T14:30:00Z", "end_time": "2026-03-26T16: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, "provider_contact_info": null, "provider": { "fi": "Espoon kirjailijat ry.", "sv": "Espoon kirjailijat ry.", "en": "Espoon kirjailijat ry." }, "info_url": null, "name": { "fi": "Omppu Open Mic - Runostage", "sv": "Omppu Open Mic - Runostage", "en": "Omppu Open Mic - Live poetry" }, "short_description": { "fi": "Tervetuloa lavarunoilemaan tai kuuntelemaan nykyrunoutta!", "sv": "Välkommen att uppträda med spoken word eller lyssna på nutida poesi!", "en": "Welcome to perform spoken word or enjoy contemporary poetry!" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "description": { "fi": "<p>Tervetuloa lavarunoklubille esittämään omia tekstejäsi lämpimissä tunnelmissa. Seremoniamestarina toimii Sanna Vaara eli Räppäri Vaara. Tammikuun Runostagella 29.1. esiintyy myös runoilija Leena Sainio. Ilmoittautumiset paikan päällä (esitykset max 5min)</p><p><br></p><p>Runoja saa esittää millä kielellä tahansa.</p><p>#helloespoo</p><p><br></p><p>Kaikki päivät:</p><p>29.1.</p><p>26.2.</p><p>26.3.</p><p>7.5.</p>", "sv": "<p>Välkommen till vår spoken word‑klubb för att framföra dina egna texter i en varm och inbjudande stämning. Kvällen leds av Sanna Vaara, även känd som Räppäri Vaara. På januaris Runostage den 29.1 uppträder poeten Leena Sainio.</p><p>Anmälan sker på plats (framträdanden max 5 minuter).</p><p><br></p><p>Alla dagar:</p><p>29.1.</p><p>26.2.</p><p>26.3.</p><p>7.5.</p>", "en": "<p>Welcome to our spoken word club to share your own texts in a warm and welcoming atmosphere. The evening will be hosted by Sanna Vaara, also known as Räppäri Vaara. At the January Runostage on 29 January, poet Leena Sainio will also perform.</p><p>Sign‑ups take place on site (performances max 5 minutes).</p><p><br></p><p>You can perform in language you prefer.</p><p>#helloespoo</p><p><br></p><p>All dates:</p><p>29.1.</p><p>26.2.</p><p>26.3.</p><p>7.5.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5m5hthm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }