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&page=40
{ "meta": { "count": 33065, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=41", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=39" }, "data": [ { "id": "espoo_le:agnsnbuuua", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2630/?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:agnsnbvaiq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494219, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-16T08:59:30.175118Z", "last_modified_time": "2025-12-16T08:59:30.175134Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0149cf2a-122d-4b0e-b714-7d3fe80b1424.png", "name": "", "cropping": "217,0,770,553", "photographer_name": "", "alt_text": "Kolme kuvaa, joissa jokaisessa seniori on opastamassa toista seniorissa jonkinlaisen digipulman kanssa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494219/?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": "2025-12-16T09:13:25.294961Z", "last_modified_time": "2026-04-02T06:07:32.868129Z", "date_published": null, "start_time": "2026-05-20T07:00:00Z", "end_time": "2026-05-20T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "description": { "fi": "<p>Kiireetöntä opastusta tietoteknisissä asioissa</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>Lugn, icke-brådskande handledning i IT-frågor</p><p>Handledningen omfattar vanligtvis grundläggande användning av mobiltelefon, surfplatta eller dator, elektroniska tjänster eller inköp av en enhet.</p><p>Boka tid via biblioteket antingen vid bibliotekets servicedisk eller genom att ringa 09-81657723.</p>", "en": "<p>Unhurried guidance in IT matters for seniors</p><p>The guidance usually covers basic use of a mobile phone, tablet, or computer, digital services, or purchasing a device.</p><p>Book an appointment at the library either at the service desk or by calling 09-81657723.</p>" }, "short_description": { "fi": "Kiireetöntä opastusta tietoteknisissä asioissa", "sv": "Lugn, icke-brådskande handledning i IT-frågor", "en": "Unhurried guidance in IT matters" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - digiopastusta seniorilta seniorille", "sv": "Enter rf – digital handledning från senior till senior", "en": "Enter ry – digital guidance from senior to senior" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuuua/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnsnbvaiq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuuua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuvoy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuwb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuwwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuxle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbux5i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuyre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuzea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbuzwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu2k4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu264/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu3si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu4fi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu4yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu5my/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu57u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu6si/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu7fe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbu7xa/?format=api" } ], "images": [ { "id": 1494219, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-16T08:59:30.175118Z", "last_modified_time": "2025-12-16T08:59:30.175134Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0149cf2a-122d-4b0e-b714-7d3fe80b1424.png", "name": "", "cropping": "217,0,770,553", "photographer_name": "", "alt_text": "Kolme kuvaa, joissa jokaisessa seniori on opastamassa toista seniorissa jonkinlaisen digipulman kanssa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494219/?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": "2025-12-16T09:13:20.600088Z", "last_modified_time": "2026-04-02T06:07:32.291878Z", "date_published": null, "start_time": "2026-01-14T08:00:00Z", "end_time": "2026-05-20T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "description": { "fi": "<p>Kiireetöntä opastusta tietoteknisissä asioissa</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>Lugn, icke-brådskande handledning i IT-frågor</p><p>Handledningen omfattar vanligtvis grundläggande användning av mobiltelefon, surfplatta eller dator, elektroniska tjänster eller inköp av en enhet.</p><p>Boka tid via biblioteket antingen vid bibliotekets servicedisk eller genom att ringa 09-81657723.</p>", "en": "<p>Unhurried guidance in IT matters for seniors</p><p>The guidance usually covers basic use of a mobile phone, tablet, or computer, digital services, or purchasing a device.</p><p>Book an appointment at the library either at the service desk or by calling 09-81657723.</p>" }, "short_description": { "fi": "Kiireetöntä opastusta tietoteknisissä asioissa", "sv": "Lugn, icke-brådskande handledning i IT-frågor", "en": "Unhurried guidance in IT matters" }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - digiopastusta seniorilta seniorille", "sv": "Enter rf – digital handledning från senior till senior", "en": "Enter ry – digital guidance from senior to senior" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnsnbvaiq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp5yy", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.584714Z", "last_modified_time": "2026-04-02T06:06:17.001222Z", "date_published": null, "start_time": "2026-05-19T07:00:00Z", "end_time": "2026-05-19T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp5yy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp5lu", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.490181Z", "last_modified_time": "2026-04-02T06:06:16.972611Z", "date_published": null, "start_time": "2026-05-12T07:00:00Z", "end_time": "2026-05-12T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp5lu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp44e", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.400549Z", "last_modified_time": "2026-04-02T06:06:16.941191Z", "date_published": null, "start_time": "2026-05-05T07:00:00Z", "end_time": "2026-05-05T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp44e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp4pm", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.306158Z", "last_modified_time": "2026-04-02T06:06:16.912156Z", "date_published": null, "start_time": "2026-04-28T07:00:00Z", "end_time": "2026-04-28T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp4pm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp4da", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.220384Z", "last_modified_time": "2026-04-02T06:06:16.882487Z", "date_published": null, "start_time": "2026-04-21T07:00:00Z", "end_time": "2026-04-21T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp4da/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp3va", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.129761Z", "last_modified_time": "2026-04-02T06:06:16.853520Z", "date_published": null, "start_time": "2026-04-14T07:00:00Z", "end_time": "2026-04-14T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp3va/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp3hu", "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: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:p2630/?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:agohvtp6ga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:24.033134Z", "last_modified_time": "2026-04-02T06:06:16.822023Z", "date_published": null, "start_time": "2026-04-07T07:00:00Z", "end_time": "2026-04-07T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp3hu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agohvtp6ga", "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: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:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpypu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpzfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpzta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtpz74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp2nq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp23a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp3hu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp3va/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp4da/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp4pm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp44e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp5lu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp5yy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttfwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttgha/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttgxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtthiy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtthy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvttika/?format=api" } ], "images": [ { "id": 1494915, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T13:31:10.669319Z", "last_modified_time": "2025-12-12T13:31:10.669334Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/09716021-71f6-45d4-b8a3-3dafe694fa7d.png", "name": "", "cropping": "218,0,769,552", "photographer_name": "", "alt_text": "Seniori-ikäisiä ihmisiä opettamassa toisiaan digilaitteilla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494915/?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": "2025-12-12T13:51:20.799712Z", "last_modified_time": "2026-04-02T06:06:16.093899Z", "date_published": null, "start_time": "2026-01-13T08:00:00Z", "end_time": "2026-05-19T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Enter", "sv": "Enter", "en": "Enter" }, "description": { "fi": "<p>Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole. Saat kiireetöntä opastusta tietoteknisissä asioissa.</p><p>Opastuksessa käydään yleensä läpi puhelimen, tabletin tai tietokoneen peruskäyttöä, sähköistä asiointia, tai laitteen hankintaa.</p><p>Varaa aika kirjastolta joko kirjaston palvelutiskiltä tai soittamalla 09-81657723</p>", "sv": "<p>De äldres IT-förening Enter ry:s frivilliga kamrathandledare hjälper seniorer med användningen av digitala apparater. Enters handledning är personlig, avgiftsfri och sker i lugn takt. Hos oss handleder seniorer andra seniorer.</p><p>Se aktuell information om platser där du kan få Enters handledning på svenska: https://www.entersenior.fi/sv/handledning/huvudstadsregionen/ </p>", "en": "<p>Enter ICT Association for Seniors offers personal, free of charge, peer tutoring for the elderly people. With us, seniors guide other seniors with the use of digital devices.</p><p>See where to get Enter's Digital Support in English: https://www.entersenior.fi/yhdistys/en/#widget-AC1oDwE4FeK62YQXuV3T</p>" }, "short_description": { "fi": "Tule kysymään mitä tahansa digitaalisesta laitteestasi, tyhmiä kysymyksiä ei ole", "sv": "Kom modigt och fråga vad som helst om din digitala apparat - det finns inga dumma frågor.", "en": "Come and ask anything of your digital device, there are no silly questions." }, "location_extra_info": { "fi": "Kari", "sv": "Kari", "en": "Kari" }, "name": { "fi": "Enter ry - Digiopastusta seniorilta seniorille", "sv": "Enter - Digistöd från seniorer till seniorer", "en": "Enter - Digital guidance from seniors to seniors" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohvtp6ga/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn2dx4j44", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet: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:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx3zim/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx32hy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx325q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx33ue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx34jm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx347m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx35vq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx36li/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx37cq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx37zq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4aoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4bee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4b4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4cru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4dje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4d7m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4ex4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4fpu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4ggm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4g6i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4huq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4iku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4jem/?format=api" } ], "images": [ { "id": 1490140, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-06T12:32:34.854849Z", "last_modified_time": "2025-08-06T12:32:34.854864Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c4bf282-bcc7-456f-ac98-f084f3f47a81.png", "name": "", "cropping": "172,0,519,347", "photographer_name": "", "alt_text": "Kuvassa teksti: Hei seniori, lähde mukaan polulle kohti parempaa hyvinvointia! Kiinnostaako terveyden ja hyvinvoinnin edistäminen yhdessä muiden seniorien kanssa?", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490140/?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-09T07:58:53.914548Z", "last_modified_time": "2026-04-02T05:47:13.130373Z", "date_published": null, "start_time": "2026-01-12T10:30:00Z", "end_time": "2026-06-15T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": null, "description": { "fi": "<p>Kiinnostaako sinua terveyden ja hyvinvoinnin edistäminen yhdessä muiden senioreiden kanssa?</p><p>Ikääntyneiden avoin hyvinvointipolku on suunniteltu tuomaan sisältöä ja energiaa elämääsi! </p><p>Maanantaisin klo 13-14.30</p><p>19.1.26 alkaen</p><p>Ison Omenan palvelutori, kokoustila MERI</p><p><br></p><p>Toiminta on maksutonta</p><p><br></p><p>TULE TAI SOITA!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917 </p>", "sv": "<p>Saknar du något att göra</p><p>och sällskap av jämnåriga?</p><p>Du är varmt välkommen till de äldres öppna vardagsrum,</p><p>OLKKARI</p><p>på måndagar med start 12.1. kl. 13-14:30</p><p>Iso Omena bibliotek (Meri-mötesrum)</p><p>Verksamheten är kostnadsfri</p><p><br></p><p>KOM ELLER RING!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917</p>", "en": "<p>Looking for something to do and the company of peers?</p><p>You are warmly welcome to the open lounge for seniors,</p><p>OLKKARI</p><p>On Mondays starting January 12th, from 13am to 2:30 pm.</p><p>Iso Omena Library (Meri meeting room)</p><p>Participation is free of charge</p><p><br></p><p>COME OR CALL!</p><p>Jouni 040 162 6427</p><p>Pirjo 046 877 1917</p>" }, "short_description": { "fi": "Ikätoverien seuraa, infoa ja keskustelua", "sv": "Trevligt sällskap, nyttig information och givande samtal", "en": "Good company, helpful info, and engaging conversation" }, "location_extra_info": { "fi": "Meri", "sv": "Meri", "en": "Meri" }, "name": { "fi": "Ison Omenan kirjaston senioreiden Hyvinvointipolku", "sv": "Seniorernas Välmåendestig i Iso Omena biblioteket", "en": "Wellbeing Path for Seniors at Iso Omena Library" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2dx4j44/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agny27foea", "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: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:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27ffpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27ff7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fgri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fhau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fhqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fibi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fiqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fjay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fjqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fkbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fkrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27flcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27flsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fmc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fmsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fncm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27fnsq/?format=api" } ], "images": [ { "id": 1494367, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-05T08:29:39.316473Z", "last_modified_time": "2026-01-05T08:29:39.316494Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/973e2aab-76dd-4cd7-8eb7-b948ff9f5782.jpeg", "name": "", "cropping": "232,0,818,586", "photographer_name": "", "alt_text": "Senioreita jumppaamassa tuolilla istuen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494367/?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-05T08:34:35.784381Z", "last_modified_time": "2026-04-02T05:45:40.185483Z", "date_published": null, "start_time": "2026-01-12T08:00:00Z", "end_time": "2026-05-04T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": null, "description": { "fi": "<p>Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä)</p><p>Aikataulu:</p><p>Ma klo 10.00-10.30 Tuolijumppa</p><p>Ma klo 10.35-11.05 Kehonhuolto &tasapaino</p><p>Järjestäjä: Espoon liikuntatoimi</p><p>Tervetuloa!</p><p><br></p><p>Tuolijumppa Ison Omenan kirjastossa myös joka keskiviikko 10:30-11:35</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar)</p><p>Schema:</p><p>Mån 10.00-10.30 Stolgymnastik</p><p>Mån 10.35-11.05 Kroppsvård och balans</p><p>Arrangör: Esbo idrottsavdelning</p><p>Välkommen!</p><p><br></p><p>Stolgympa på Ison Omenas bibliotek även varje onsdag kl. 10.30–11.35</p><p><br></p><p>#helloespoo</p>", "en": "<p>Chair gymnastics, streching and balance every Monday. (no instruction during public holidays)</p><p>Schedule:</p><p>Mon 10.00-10.30 Chair exercises</p><p>Mon 10.35-11.05 Body care & balance</p><p>Organiser: Espoo sports department</p><p>Welcome!</p><p><br></p><p>Chair exercise at Iso Omena Library also every Wednesday from 10:30 AM to 11:35 AM</p><p><br></p><p>#helloespoo</p>" }, "short_description": { "fi": "Tuolijumppa, kehonhuolto ja tasapaino joka maanantai. (ei ohjausta arkipyhinä) Tervetuloa!", "sv": "Stolgymnastik, kroppsvård och balans varje måndag. (ingen undervisning under helgdagar) Välkommen!", "en": "Chair gymnastics, streching and balance every Monday. (no instruction during public holidays) Welcome!" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "name": { "fi": "Tuolijumppa + kehonhuolto ja tasapaino Ison Omenan kirjastossa", "sv": "Stolgymnastik + kroppsvård och balans på Ison Omenas bibliotek", "en": "Chair exercise + body care and balance at Iso Omena Library" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agny27foea/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtpji", "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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824135, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-01T14:50:12.471495Z", "last_modified_time": "2026-04-01T14:50:12.471509Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b4d94afc-5da3-4134-a9c5-1f21a98ce5e7.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Jalkapallostadion, lähikuva nurmikosta ja jalkapallo sekä nuorimies pelaamassa pelikonsolia. Teksti: FIFA-TURNAUS", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824135/?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-04-01T14:59:10.395965Z", "last_modified_time": "2026-04-01T14:59:10.395982Z", "date_published": null, "start_time": "2026-04-07T12:30:00Z", "end_time": "2026-04-07T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": null, "description": { "fi": "<p>Fifaturnaus pajaloungessa tiistaina 7.4 klo 15.30-18:00. Alle 18 vuotiaille.</p>", "sv": "<p>FIFA-turnering i Paja Lounge tisdagen den 7 april kl. 15.30–18.00. För deltagare under 18 år.</p>", "en": "<p>FIFA tournament in the Paja Lounge on Tuesday 7 April from 15:30 to 18:00. For participants under 18.</p>" }, "short_description": { "fi": "Turnaus on alle 18-vuotiaille", "sv": "Turneringen är för deltagare under 18 år", "en": "The tournament is for participants under 18" }, "location_extra_info": { "fi": "Paja Lounge", "sv": "Paja Lounge", "en": "Paja Lounge" }, "name": { "fi": "FIFA -turnaus", "sv": "FIFA-turnering", "en": "FIFA tournament " }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtpji/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68272", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1683110, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-20T12:14:26.966488Z", "last_modified_time": "2026-03-20T12:14:26.966505Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786145.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1683110/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-20T12:14:26.610294Z", "last_modified_time": "2026-04-01T13:14:01.050494Z", "date_published": null, "start_time": "2026-06-13T11:30:00Z", "end_time": "2026-06-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes_Nevala_kesatekemista_ja_kohtaamisia", "sv": "http://www.malmitalo.fi/sv/evenemang/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes_Nevala_sommaraktiviteter_och_moten", "en": "http://www.malmitalo.fi/en/events/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes_Nevala_summer_activities_and_encounters" }, "provider": null, "description": { "fi": "<p>Tule mukaan puuhastelemaan nuorten ideoiman luovan tekemisen parissa ja tanssimaan monipuolisiin äänimaailmoihin vievän Rosettesin ja soft-rock-yhtye Nevalan tahtiin!</p><p><b>Päivän ohjelma</p><p>klo 14.30–18.30 Malmin kesätyönuorten ideoimaa kivaa kesätekemistä ja kohtaamisia kaiken ikäisille</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvän mielen toimintaa. Tule mukaan!<br>Paikka: Ala Malmin tori</p><p><b>klo 15.00–16.00 Nevala</b></p><p>Nevala on neljän entisen kämppäkaverin muodostama helsinkiläinen bändi, jonka musiikissa ystävyys, ajaton laulunkirjoitus ja pop nerous kohtaavat. Yhtyeen toinen albumi Take Me to the Honky Tonk käsittelee vapautumista ja hullaantumista – tapahtuvat ne sitten henkisesti, musiikillisesti tai halvassa yökerhossa.<br>Albumi on äänitetty pienessä hirsimökissä Väinö Karjalaisen johdolla, ja osa kappaleista on syntynyt Styrsön saarella Göteborgin edustalla.<br>Nevalan nelikkoa säestää bändi, jossa soittavat Riku Sonkkanen, Kalle Outila ja Adeola Ikuesan.<br>Paikka: Konttilava, Ala Malmin tori</p><p><b>klo 17.00–18.00 Rosettes</b></p><p>Rosettes on vuonna 2021 Helsingissä perustettu kokoonpano, jonka vaikutteet ulottuvat rytmimusiikin eri genreihin. DIY henkisyys yhdistyy soulin ja R’n’B:n grooveen sekä jazzmaiseen tunnelmaan.</p><p>Psykedeelinen ja tanssittava Rosettes on keikkaillut muun muassa Burghausenin jazzviikoilla ja Tavastialla. Viimeisin vinyylisingle Souvenir/Green Ray julkaistiin Timmion Recordsin kautta elokuussa 2024 ja debyyttialbumi Lifestyles 4.4.2025.</p><p>Kokoonpano:<br>Rosita Halonen – basso<br>Jaakko Hietakangas – kitara<br>Markus Hietamies – rummut<br>Tatu Kuisma – kitara<br>Tytti Roto – laulu ja koskettimet<br>Eero Tarmio – perkussio<br>Eero Koski – pasuuna<br>Ami Vuorinen – tenorisaksofoni</p>", "sv": "<p>Kom med och pyssla med kreativa aktiviteter som ungdomarna tänkt ut och dansa till Rosettes mångsidiga ljudvärldar och soft-rock-gruppen Nevala!</p><p><b>Dagens program</p><p>kl. 14.30–18.30<br>Trevliga sommaraktiviteter och möten för alla åldrar som planerats av unga sommarjobbare i Malm</b></p><p>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med!<br>Plats: Nedre Malms torg</p><p><b>kl. 15.00–16.00<br>Nevala</b></p><p>Nevala är ett band från Helsingfors som består av fyra vänner som tidigare bodde ihop. I deras musik möts vänskapen, tidlöst låtskrivande och popgenialitet. Bandets andra album, Take Me to the Honky Tonk, handlar om frigörelse och förälskelse – oavsett om det sker andligt, musikaliskt eller på en billig nattklubb.<br>Albumet spelades in i en liten timmerstuga under ledning av Väinö Karjalainen, och några av låtarna skrevs på ön Styrsö utanför Göteborg.<br>Nevala-kvartetten ackompanjeras av ett band bestående av Riku Sonkkanen, Kalle Outila och Adeola Ikuesan.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 17.00–18.00<br>Rosettes</b></p><p>Rosette är ett band som grundades 2021 i Helsingfors, och vars influenser kommer från olika genrer inom rytmisk musik. DIY-anda kombineras med soul- och R'n'B-grooves och en jazzig atmosfär.</p><p>Psykedeliska och dansanta Rosettes har spelat bland annat på Jazzveckan i Burghausen och på Tavastia. Den senaste vinylsingeln Souvenir/Green Ray släpptes genom Timmion Records i augusti 2024 och debutalbumet Lifestyles den 4 april 2025.</p><p><i>Sammansättning:</i><br>Rosita Halonen – bas<br>Jaakko Hietakangas – gitarr<br>Markus Hietamies – trummor<br>Tatu Kuisma – gitarr<br>Tytti Roto – sång och keyboard<br>Eero Tarmio – slagverk<br>Eero Koski – trombon<br>Ami Vuorinen – tenorsaxofon</p>", "en": "<p>Come join us for creative activities created by young people and dance to the diverse soundscapes of Rosettes and soft rock band Nevala!</p><p><b>The day’s programme</p><p>14.30–18.30<br>Fun summer activities and encounters for all ages, organised by the Malmi Youth Work Unit’s young summer workers</b></p><p>Malmi Youth Work Unit’s summer workers will provide enjoyable activities open to all. Join us!<br>Place: Ala-Malmi Square</p><p><b>15.00–16.00<br>Nevala</i></p><p>Nevala are a Helsinki-based band formed by four former roommates, whose music is a meeting of friendship, timeless songwriting and pop genius. The band’s second album Take Me to the Honky Tonk is about liberation and infatuation – whether they happen emotionally, musically or in a cheap nightclub.<br>The album was recorded in a small log cabin under the direction of Väinö Karjalainen, and some of the songs were written on the island of Styrsö off Gothenburg.<br>The Nevala quartet will be accompanied by a band featuring Riku Sonkkanen, Kalle Outila and Adeola Ikuesan.<br>Place: Container stage, Ala-Malmi Square</p><p><b>17.00-18.00<br>Rosettes</b></p><p>Rosettes are a Helsinki-based band founded in 2021, whose influences span different genres of rhythm music. The band combine a DIY mindset with soul, R’n’B grooves and a jazzy atmosphere.</p><p>Psychedelic and danceable in their sound, Rosettes have performed at venues and events such as the Burghausen International Jazz Week in Germany and Tavastia here in Finland. The group’s latest vinyl single Souvenir/Green Ray was released via Timmion Records in August 2024, and their debut album Lifestyles was released on 4 April 2025.</p><p><i>Line-up:</i><br>Rosita Halonen – bass<br>Jaakko Hietakangas – guitar<br>Markus Hietamies – drums<br>Tatu Kuisma – guitar<br>Tytti Roto – vocals and keyboard<br>Eero Tarmio – percussion<br>Eero Koski – trombone<br>Ami Vuorinen – tenor saxophone</p>" }, "short_description": { "fi": "Tule mukaan puuhastelemaan nuorten ideoiman luovan tekemisen parissa ja tanssimaan monipuolisiin äänimaailmoihin vievän Rosettesin ja soft-rock-yhtye Nevalan tahtiin!", "sv": "Kom med och pyssla med kreativa aktiviteter som ungdomarna tänkt ut och dansa till Rosettes mångsidiga ljudvärldar och soft-rock-gruppen Nevala!", "en": "Come join us for creative activities created by young people and dance to the diverse soundscapes of Rosettes and soft rock band Nevala!" }, "location_extra_info": null, "name": { "fi": "Rosettes, Nevala + kesätekemistä ja kohtaamisia – Malmin tapahtumakesä 2026", "sv": "Rosettes, Nevala + sommaraktiviteter och möten – Malms evenemangssommar 2026", "en": "Rosettes, Nevala + summer activities and encounters – Malmi Summer of Events 2026" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68272/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68270", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1683109, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-20T12:14:26.002484Z", "last_modified_time": "2026-03-20T12:14:26.002499Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786133.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1683109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-20T12:14:25.844712Z", "last_modified_time": "2026-04-01T13:14:00.134840Z", "date_published": null, "start_time": "2026-06-11T11:30:00Z", "end_time": "2026-06-11T16:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CDF84A0B7E02853CCDF416B49B787E89/Suuri_sambapaiva_Samigo_Samba_Amigos_sambatyopaja_tanssiopetusta_ja_kulkue", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CDF84A0B7E02853CCDF416B49B787E89/Stora_sambadagen_Samigo_Samba_Amigos_sambaverkstad_dansundervisning_och_parad", "en": "http://www.malmitalo.fi/en/events/event/CDF84A0B7E02853CCDF416B49B787E89/Great_samba_day_Samigo_Samba_Amigos_samba_workshop_dance_lessons_and_a_parade" }, "provider": null, "description": { "fi": "<p>Tule katsomaan, kuinka Ala Malmin tori muuntautuu sambakarnevaaliksi! Päivässä on sambapajaa, tanssiopetusta ja näyttävä sambakulkue.</p><p><b>Päivän ohjelma</p><p>klo 17.00–17.30 Samigon Sambapaja kaikille</b></p><p>Samigon Sambapaja on kaikille tasoille ja ikäluokille avoin yhteissoittotuokio, jossa tutustutaan afro brasilialaiseen rytmiikkaan ja saadaan ideoita samba reggae rytmien soittamiseen yksinkertaisin elementein. Aiempaa kokemusta ei tarvita ja soittimet saa lainaan paikan päällä.<br>Paikka: Ala Malmin tori</p><p><b>klo 17.30–18.00 1. setti ja klo 18.30–19.15 2. setti – Samigo & Samba Amigos</b></p><p>Samigo & Samba Amigos esittävät brasilialaisia ikivihreitä – samba, bossanova, baião ja mpb – sekä portugaliksi että suomeksi.<br>Kokoonpano:<br>Elina Kardén – laulu ja perkussiot<br>Ville Veikko Ijäs – kitara ja taustalaulu<br>Sami “Samigo” Kontola – rummut ja perkussiot<br>Sasu Ijäs – basso<br>Eduardo Maia Paiva – perkussiot<br>Paikka: Konttilava, Ala Malmin tori</p><p><b>klo 18.00–18.20 Sambatanssin opetusta</b></p><p>Cassio Ribeiro ja Johanna Himberg opettavat samban perustanssiaskeleita. Aiempaa tanssitaustaa ei tarvita – kaikki ovat tervetulleita mukaan!<br>Paikka: Ala Malmin tori</p><p><b>klo 19.15–19.30 Sambashow</b></p><p>Samba on symbioosi: rumpalit soittavat tanssijoille ja tanssijat tanssivat rumpaleille. Yhdessä he luovat elämyksellisen sambakokemuksen.<br>Kokoonpano:<br>Samigo & Samba Amigos<br>Helsingin sambakoulu Império do Papagaion vierailevat sambarumpalit<br>Cassio Ribeiro & Johanna Himberg<br>Paikka: Ala Malmin tori</p><p><b>klo 19.30–19.50 Sambakulkue</b></p><p>Sambapäivä huipentuu sambarumpuryhmän ja tanssijoiden johtamaan kulkueeseen, johon kaikki voivat halutessaan osallistua tanssien.<br>Paikka: Ala Malmin tori</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Kom och se hur Nedre Malms torg förvandlas till en sambakarneval! Dagen bjuder på sambaverkstad, danslektioner och en spektakulär sambaparad.</p><p><b>Dagens program<br>kl. 17.00–17.30<br>Samigos sambaverkstad för alla</b></p><p>Samigos sambaverkstad är en öppen gemensam musikstund för alla åldrar och nivåer, där man får bekanta sig med afrobrasiliansk rytmik och får idéer till samba- och reggaerytmer med enkla element. Ingen tidigare erfarenhet krävs och man kan låna instrument på plats.<br>Plats: Nedre Malms torg</p><p><b>kl. 17.30–18.00 set 1 och kl. 18.30–19.15 set 2<br>Samigo & Samba Amigos</b></p><p>Samigo & Samba Amigos framför brasilianska klassiker – samba, bossanova, baião och mpb – på både portugisiska och finska.<br>Sammansättning:<br>Elina Kardén – sång och slagverk<br>Ville Veikko Ijäs – gitarr och bakgrundssång<br>Sami ”Samigo” Kontola – trummor och slagverk<br>Sasu Ijäs – bas<br>Eduardo Maia Paiva – slagverk<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 18.00–18.20<br>Lektioner i sambadans</b></p><p>Cassio Ribeiro och Johanna Himberg lär ut grundläggande sambasteg. Ingen tidigare erfarenhet av dans behövs – alla är välkomna!<br>Plats: Nedre Malms torg</p><p><b>kl. 19.15–19.30<br>Sambashow</b></p><p>Samba är en symbios: trummisarna spelar för dansarna och dansarna dansar för trummisarna. Tillsammans skapar de en omslutande sambaupplevelse.<br>Sammansättning:<br>Samigo & Samba Amigos<br>Besökande sambatrummisar från Helsingfors sambaskola Império do Papagaio<br>Cassio Ribeiro & Johanna Himberg<br>Plats: Nedre Malms torg</p><p><b>kl. 19.30–19.50<br>Sambaparad</b></p><p>Sambadagen kulminerar i en parad ledd av en sambatrumgrupp och dansare. Alla som vill får vara med och dansa i paraden.<br>Plats: Nedre Malms torg</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>Come and see how Ala Malmi Square is transformed into a samba carnival! The day will feature a samba workshop, dance lessons and a spectacular samba parade.</p><p><b>The day’s programme<br>17.00–17.30<br>Samigo Samba Workshop for all</b></p><p>The Samba Workshop held by Samigo is a collaborative music session open to all skill levels and ages, where we will delve into Afro-Brazilian rhythms and get ideas for playing samba reggae rhythms with simple elements. No prior experience will be needed, and instruments will be available to borrow.<br>Place: Ala-Malmi Square</p><p><b>17.30–18.00: 1st set; 18.30–19.15: 2nd set <br>Samigo & Samba Amigos</b></p><p>Samigo & Samba Amigos will perform Brazilian evergreens – samba, bossa nova, baião and MPB – in both Portuguese and Finnish.<br>Line-up:<br>Elina Kardén – vocals and percussion<br>Ville Veikko Ijäs – guitar and backing vocals<br>Sami “Samigo” Kontola – drums and percussion<br>Sasu Ijäs – bass<br>Eduardo Maia Paiva – percussion<br>Place: Container stage, Ala-Malmi Square</p><p><b>18.00–18.20<br>Samba dance lessons</b></p><p>Cassio Ribeiro and Johanna Himberg will teach the basics of samba dance. No prior dance experience will be needed – everyone is welcome to join in!<br>Place: Ala-Malmi Square</p><p><b>19.15–19.30<br>Samba show</b></p><p>Samba is a symbiosis: drummers play for dancers and the dancers dance for the drummers. Together, they create an immersive samba experience.<br>Line-up:<br>Samigo & Samba Amigos<br>Visiting samba drummers from the Império do Papagaio samba school in Helsinki<br>Cassio Ribeiro & Johanna Himberg<br>Place: Ala-Malmi Square</p><p><b>19.30–19.50<br>Samba parade</b></p><p>The samba day will culminate in a parade led by a samba drum group and dancers, which everyone can dance along with if they wish.<br>Place: Ala-Malmi Square</p><p>Entry to the events is free of charge!</p>" }, "short_description": { "fi": "Tule katsomaan, kuinka Ala Malmin tori muuntautuu sambakarnevaaliksi! Päivässä on sambapajaa, tanssiopetusta ja näyttävä sambakulkue.", "sv": "Kom och se hur Nedre Malms torg förvandlas till en sambakarneval! Dagen bjuder på sambaverkstad, danslektioner och en spektakulär sambaparad.", "en": "Come and see how Ala Malmi Square is transformed into a samba carnival! The day will feature a samba workshop, dance lessons and a spectacular samba parade." }, "location_extra_info": null, "name": { "fi": "Suuri sambapäivä: Samigo & Samba Amigos, sambatyöpaja, tanssiopetusta ja kulkue – Malmin tapahtumakesä 2026", "sv": "Stora sambadagen: Samigo & Samba Amigos, sambaverkstad, dansundervisning och parad – Malms evenemangssommar 2026", "en": "Great samba day: Samigo & Samba Amigos, samba workshop, dance lessons and a parade – Malmi Summer of Events 2026" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68270/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtp3u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtrpm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/kiintymysvanhemmuus", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824136, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-01T13:11:12.993629Z", "last_modified_time": "2026-04-01T13:11:12.993643Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/717bd949-44e3-46db-85a6-02bb70e17e3c.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "luumupuu ja pieniä otuksia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824136/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-11T10:27:58.923422Z", "last_modified_time": "2026-04-01T13:12:50.609980Z", "date_published": null, "start_time": "2026-05-09T08:00:00Z", "end_time": "2026-05-09T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://kiintymysvanhemmuus.fi", "sv": "http://kiintymysvanhemmuus.fi", "en": "http://kiintymysvanhemmuus.fi" }, "provider": { "fi": "Kiintymysvanhemmuus ry", "sv": "Kiintymysvanhemmuus ry", "en": "Kiintymysvanhemmuus ry" }, "description": { "fi": "<p>Kerran kuussa lauantaisin klo 11-12:30 Tapiolan kirjastossa Tapahtumatila Heikissä.</p><p><br></p><p><strong>Mikä on perhekahvila?</strong></p><ul><li>Leikkiä lapsille ja vauvoille</li><li>Tule tapaamaan muita vanhempia tai ihan vaan hengailemaan</li><li>Tarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi</li></ul><p><br></p><p><strong>Ohjelma</strong>:</p><ul><li>14.3.2026 Vapaata leikkiä.</li><li>11.4.2026 Teemana kantaminen. Vieraana kantoliinayhdistyksen kantovälinetukihenkilö.</li><li>9.5.2026 Satuhierontatuokio kirjaston henkilökunnan vetämänä.</li></ul><p>Perhekahvilan järjestää Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>", "sv": "<p>En gång i månaden på lördagar kl. 11–12.30 i Hagalunds bibliotek, i Evenemangsutrymmet Heikki.</p><p><strong>Vad är ett familjecafé?</strong></p><ul><li>Lek för barn och bebisar</li><li>Kom och träffa andra föräldrar eller bara häng</li><li>Gratis kaffe/te och små tilltugg</li></ul><p><strong>Program</strong>:</p><ul><li>14.3.2026: Fri lek</li><li>11.4.2026: Tema: bärande. Gäst: handledare i bärredskap från Bärsjalsföreningen</li><li>9.5.2026: Sagomassage-stund ledd av bibliotekets personal</li></ul><p>Familjecaféet ordnas av Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>", "en": "<p>Once a month on Saturdays at 11:00–12:30 at Tapiola Library in the event room Heikki.</p><p><strong>What is a family café?</strong></p><ul><li>Playtime for children and babies</li><li>Come meet other parents or just hang out</li><li>Free coffee/tea and small snacks</li></ul><p><strong>Programme</strong>:</p><ul><li>14 March 2026: Free play</li><li>11 April 2026: Theme: babywearing. Guest: babywearing educator from the Babywearing Association</li><li>9 May 2026: Story massage session led by the library staff</li></ul><p>The family café is organised by Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>" }, "short_description": { "fi": "Mikä on perhekahvila?\nLeikkiä lapsille ja vauvoille\nTule tapaamaan muita vanhempia tai hengailemaan\nTarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi", "sv": "Vad är ett familjecafé?\nLek för barn och bebisar\nKom och träffa andra föräldrar eller bara häng\nGratis kaffe/te och små tilltugg", "en": "What is a family café?\nPlaytime for children and babies\nCome meet other parents or just hang out\nFree coffee/tea and small snacks" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "name": { "fi": "Perhekahvila Luumupuu", "sv": "Familjecaféet Luumupuu", "en": "Family Café Luumupuu" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtp3u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtqwu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtrpm/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/kiintymysvanhemmuus", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824136, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-01T13:11:12.993629Z", "last_modified_time": "2026-04-01T13:11:12.993643Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/717bd949-44e3-46db-85a6-02bb70e17e3c.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "luumupuu ja pieniä otuksia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824136/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-11T10:27:58.642612Z", "last_modified_time": "2026-04-01T13:12:50.572188Z", "date_published": null, "start_time": "2026-04-11T08:00:00Z", "end_time": "2026-04-11T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://kiintymysvanhemmuus.fi", "sv": "http://kiintymysvanhemmuus.fi", "en": "http://kiintymysvanhemmuus.fi" }, "provider": { "fi": "Kiintymysvanhemmuus ry", "sv": "Kiintymysvanhemmuus ry", "en": "Kiintymysvanhemmuus ry" }, "description": { "fi": "<p>Kerran kuussa lauantaisin klo 11-12:30 Tapiolan kirjastossa Tapahtumatila Heikissä.</p><p><br></p><p><strong>Mikä on perhekahvila?</strong></p><ul><li>Leikkiä lapsille ja vauvoille</li><li>Tule tapaamaan muita vanhempia tai ihan vaan hengailemaan</li><li>Tarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi</li></ul><p><br></p><p><strong>Ohjelma</strong>:</p><ul><li>14.3.2026 Vapaata leikkiä.</li><li>11.4.2026 Teemana kantaminen. Vieraana kantoliinayhdistyksen kantovälinetukihenkilö.</li><li>9.5.2026 Satuhierontatuokio kirjaston henkilökunnan vetämänä.</li></ul><p>Perhekahvilan järjestää Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>", "sv": "<p>En gång i månaden på lördagar kl. 11–12.30 i Hagalunds bibliotek, i Evenemangsutrymmet Heikki.</p><p><strong>Vad är ett familjecafé?</strong></p><ul><li>Lek för barn och bebisar</li><li>Kom och träffa andra föräldrar eller bara häng</li><li>Gratis kaffe/te och små tilltugg</li></ul><p><strong>Program</strong>:</p><ul><li>14.3.2026: Fri lek</li><li>11.4.2026: Tema: bärande. Gäst: handledare i bärredskap från Bärsjalsföreningen</li><li>9.5.2026: Sagomassage-stund ledd av bibliotekets personal</li></ul><p>Familjecaféet ordnas av Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>", "en": "<p>Once a month on Saturdays at 11:00–12:30 at Tapiola Library in the event room Heikki.</p><p><strong>What is a family café?</strong></p><ul><li>Playtime for children and babies</li><li>Come meet other parents or just hang out</li><li>Free coffee/tea and small snacks</li></ul><p><strong>Programme</strong>:</p><ul><li>14 March 2026: Free play</li><li>11 April 2026: Theme: babywearing. Guest: babywearing educator from the Babywearing Association</li><li>9 May 2026: Story massage session led by the library staff</li></ul><p>The family café is organised by Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>" }, "short_description": { "fi": "Mikä on perhekahvila?\nLeikkiä lapsille ja vauvoille\nTule tapaamaan muita vanhempia tai hengailemaan\nTarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi", "sv": "Vad är ett familjecafé?\nLek för barn och bebisar\nKom och träffa andra föräldrar eller bara häng\nGratis kaffe/te och små tilltugg", "en": "What is a family café?\nPlaytime for children and babies\nCome meet other parents or just hang out\nFree coffee/tea and small snacks" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "name": { "fi": "Perhekahvila Luumupuu", "sv": "Familjecaféet Luumupuu", "en": "Family Café Luumupuu" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtqwu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtrpm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com/kiintymysvanhemmuus", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtp3u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtqwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwcby/?format=api" } ], "images": [ { "id": 1824136, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-01T13:11:12.993629Z", "last_modified_time": "2026-04-01T13:11:12.993643Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/717bd949-44e3-46db-85a6-02bb70e17e3c.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "luumupuu ja pieniä otuksia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824136/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-11T10:27:58.001122Z", "last_modified_time": "2026-04-01T13:12:50.159719Z", "date_published": null, "start_time": "2026-03-14T09:00:00Z", "end_time": "2026-05-09T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://kiintymysvanhemmuus.fi", "sv": "http://kiintymysvanhemmuus.fi", "en": "http://kiintymysvanhemmuus.fi" }, "provider": { "fi": "Kiintymysvanhemmuus ry", "sv": "Kiintymysvanhemmuus ry", "en": "Kiintymysvanhemmuus ry" }, "description": { "fi": "<p>Kerran kuussa lauantaisin klo 11-12:30 Tapiolan kirjastossa Tapahtumatila Heikissä.</p><p><br></p><p><strong>Mikä on perhekahvila?</strong></p><ul><li>Leikkiä lapsille ja vauvoille</li><li>Tule tapaamaan muita vanhempia tai ihan vaan hengailemaan</li><li>Tarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi</li></ul><p><br></p><p><strong>Ohjelma</strong>:</p><ul><li>14.3.2026 Vapaata leikkiä.</li><li>11.4.2026 Teemana kantaminen. Vieraana kantoliinayhdistyksen kantovälinetukihenkilö.</li><li>9.5.2026 Satuhierontatuokio kirjaston henkilökunnan vetämänä.</li></ul><p>Perhekahvilan järjestää Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>", "sv": "<p>En gång i månaden på lördagar kl. 11–12.30 i Hagalunds bibliotek, i Evenemangsutrymmet Heikki.</p><p><strong>Vad är ett familjecafé?</strong></p><ul><li>Lek för barn och bebisar</li><li>Kom och träffa andra föräldrar eller bara häng</li><li>Gratis kaffe/te och små tilltugg</li></ul><p><strong>Program</strong>:</p><ul><li>14.3.2026: Fri lek</li><li>11.4.2026: Tema: bärande. Gäst: handledare i bärredskap från Bärsjalsföreningen</li><li>9.5.2026: Sagomassage-stund ledd av bibliotekets personal</li></ul><p>Familjecaféet ordnas av Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>", "en": "<p>Once a month on Saturdays at 11:00–12:30 at Tapiola Library in the event room Heikki.</p><p><strong>What is a family café?</strong></p><ul><li>Playtime for children and babies</li><li>Come meet other parents or just hang out</li><li>Free coffee/tea and small snacks</li></ul><p><strong>Programme</strong>:</p><ul><li>14 March 2026: Free play</li><li>11 April 2026: Theme: babywearing. Guest: babywearing educator from the Babywearing Association</li><li>9 May 2026: Story massage session led by the library staff</li></ul><p>The family café is organised by Kiintymysvanhemmuus ry</p><p><a href=\"kiintymysvanhemmuus.fi\">kiintymysvanhemmuus.fi</a></p><p>Instagram: @kiintymysvanhemmuus</p>" }, "short_description": { "fi": "Mikä on perhekahvila?\nLeikkiä lapsille ja vauvoille\nTule tapaamaan muita vanhempia tai hengailemaan\nTarjolla kahvia/teetä ja pientä purtavaa ilmaiseksi", "sv": "Vad är ett familjecafé?\nLek för barn och bebisar\nKom och träffa andra föräldrar eller bara häng\nGratis kaffe/te och små tilltugg", "en": "What is a family café?\nPlaytime for children and babies\nCome meet other parents or just hang out\nFree coffee/tea and small snacks" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "name": { "fi": "Perhekahvila Luumupuu", "sv": "Familjecaféet Luumupuu", "en": "Family Café Luumupuu" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtrpm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtsiq", "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: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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 1824137, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-01T11:34:30.580526Z", "last_modified_time": "2026-04-01T11:34:30.580546Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1b3033e7-336c-4f03-b0f3-1e2d43a8aff6.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "Perheitä kirjastossa. Piirroskuva.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824137/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-04-01T11:38:02.862659Z", "last_modified_time": "2026-04-01T12:33:25.722171Z", "date_published": null, "start_time": "2026-05-13T07:00:00Z", "end_time": "2026-05-13T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": { "fi": "Ison Omenan kirjasto", "sv": "Iso Omenas bibliotek", "en": "Iso Omena library" }, "description": { "fi": "<p>Huomio lapsiperheet! Tervetuloa viettämään hauskaa päivää Ison Omenan kirjastoon!</p><p>Tapahtumassa voit tutustua kirjaston eri palveluihin. Ohjelmassa on esimerkiksi lasten esityksiä ja satuhetkiä monella eri kielellä.</p><p>Kirjasto on paljon muutakin kuin kirjoja. Tiesitkö, että meillä voit esimerkiksi tehdä puutöitä, soittaa kitaraa ja lainata soittimen kotiin? Kirjastot tarjoavat myös paljon ilmaisia tapahtumia ja työpajoja. Kirjastokaverit esittelevät tapahtumassa kirjaston toimintaa eri kielillä.</p><p>Ota henkilöllisyystodistus mukaan, jotta voimme tehdä koko perheelle omat kirjastokortit.</p><p>Tapahtuma on ilmainen. Puhumme helppoa suomea ja englantia.</p><p><strong>Aika: </strong>Ke 13.5. klo 10–18</p><p><strong>Paikka:</strong> Ison Omenan kirjasto</p><p>Tervetuloa mukaan!</p><p>#HelloEspoo</p>", "sv": "<p>Obs barnfamiljer! Välkomna att tillbringa en rolig dag på Iso Omenas bibliotek!</p><p>På evenemanget kan du bekanta dig med bibliotekets olika tjänster. Programmet innehåller barnföreställningar och sagostunder på olika språk.</p><p>Biblioteket är mycket mer än bara böcker. Visste du att du hos oss till exempel kan göra träarbeten, spela gitarr och till och med låna ett instrument hem? Biblioteken erbjuder också många gratis evenemang och verkstäder. Våra bibliotekskompisar presenterar bibliotekets verksamhet på olika språk under evenemanget.</p><p>Ta med identitetsbevis så att vi kan göra egna bibliotekskort för hela familjen.</p><p>Evenemanget är gratis. <strong>Vi talar lätt finska och engelska.</strong></p><p><strong>Tid: </strong>Onsdag 13 maj kl. 10:00–18:00</p><p><strong>Plats:</strong> Iso Omena bibliotek</p><p>Välkommen med!</p><p>#HelloEspoo</p>", "en": "<p>Attention families with kids! Welcome to spend a fun day at the Iso Omena Library!</p><p>At the event, you can explore the library’s various services. The program includes children’s performances, and storytelling in different languages.</p><p>A Finnish library is much more than just books. Did you know that you can, for example, do woodwork, play the guitar, and even borrow an instrument at home? Libraries also offer many free events and workshops. Our Library Buddies will introduce the library’s activities in different languages during the event.</p><p>Please bring your ID so we can make library cards for the whole family.</p><p>The event is free of charge. We speak easy Finnish and English.</p><p><strong>Time:</strong> Wednesday 13 May at 10:00–18:00</p><p><strong>Place:</strong> Iso Omena library</p><p>Welcome!</p><p>#HelloEspoo</p>" }, "short_description": { "fi": "Tervetuloa viettämään hauskaa päivää Ison Omenan kirjastoon!", "sv": "Välkomna att tillbringa en rolig dag på Iso Omenas bibliotek!", "en": "Welcome to spend a fun day at the Iso Omena Library!" }, "location_extra_info": { "fi": "Ison Omenan kauppakeskus, 3. kerros", "en": "Iso Omena Shoppin Centre, 3. floor" }, "name": { "fi": "Ison Omenan kirjastopäivä perheille", "sv": "Biblioteksdag för familjer i Iso Omena", "en": "Library Day for Families at Iso Omena" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtsiq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtsym", "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/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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490194, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-21T13:14:25.503797Z", "last_modified_time": "2025-02-21T13:14:25.503811Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bcf810b0-69f8-4f7b-bb74-43d0659b2743.JPG", "name": "", "cropping": "39,0,702,663", "photographer_name": "", "alt_text": "henkilöllä käsissä musta lautanen jossa tomaattilohkoja, fenkolilohkoja, pinaatinlehtiä ja paneroituja kasviksia sekä bataatinpaloja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-01T12:22:23.679266Z", "last_modified_time": "2026-04-01T12:22:23.679283Z", "date_published": null, "start_time": "2026-04-20T08:00:00Z", "end_time": "2026-04-20T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "provider": null, "description": { "fi": "<p>Kokkaillaan ja syödään yhdessä lounas.</p><p>Tällä kertaa kokataan aasialaisia makuja. </p><p>Mukaan mahtuu 10 ensimmäistä.</p><p>Kokkailu on aikuisille.</p><p>Tapahtuma on maksuton.</p><p>Kokkailu tapahtuu Entressen kirjaston Jukeboksi-tilassa.</p><p>Ennakkoilmoittautuminen <a href=\"https://link.webropol.com/s/aasia\">linkin kautta.</a></p><p>Ilmoittautuminen on sitova.</p>", "sv": "<p>Låt oss laga mat och äta lunch tillsammans.</p><p>Den här gången ska vi göra asiatiska smaker. </p><p>De första 10 personerna kan delta.</p><p>Matlagningen är för vuxna.</p><p>Evenemanget är gratis.</p><p>Vi kommer att ordna matlagningen i Jukebox-utrymmet på Entresse Library.</p><p>Förhandsanmäl dig<a href=\"https://link.webropol.com/s/aasia\"> via länken.</a></p><p>Anmälan är bindande.</p>", "en": "<p>Let´s cook and eat a vegetarian lunch together.</p><p>This time we'll cook asian food.</p><p>The first 10 people can join in. </p><p>Cooking is for adults.</p><p>The event is free of charge. </p><p>Cooking happens in Entresse library, Jukeboksi venue.</p><p>Pre-register<a href=\"https://link.webropol.com/s/aasia\"> via link.</a></p><p>Registration is binding.</p>" }, "short_description": { "fi": "Kokataan ja syödään yhdessä ", "sv": "Låt oss laga mat och äta tillsammans ", "en": "We cook and eat together" }, "location_extra_info": { "fi": "Jukeboksi-tila", "sv": "Jukeboksi utrymme", "en": "Jukeboksi venue" }, "name": { "fi": "Kokataan kasvislounas Entressen kirjastossa", "sv": "Låt oss laga en vegetarisk lunch tillsammans", "en": "Let´s cook together vegetarian lunch at Entresse library!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtsym/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }