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
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=6
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=5" }, "data": [ { "id": "espoo_le:agmu2wgwvy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490786, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-15T11:41:02.912011Z", "last_modified_time": "2025-09-15T11:41:02.912026Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/a439061a-6c3b-4a2e-bb29-6367fc0f801b.png", "cropping": "332,0,1082,749", "photographer_name": "", "alt_text": "julistekuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490786/?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": "2025-09-15T12:01:17.134931Z", "last_modified_time": "2025-09-25T12:51:26.184906Z", "date_published": null, "start_time": "2025-10-04T10:00:00Z", "end_time": "2025-10-04T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Entressen kirjaston perhepäivä", "sv": "Entresse bibliotek familjedag", "en": "Entresse library family day" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "Tule viettämään unohtumatonta perhepäivää kirjastolle!<p><br></p><p>Tervetuloa kirjastolle perhepäivään, jossa koko perhe pääsee osallistumaan alueen lapsiperhetoimijoiden tarjoamaan innostavaan ohjelmaan! Päivän aikana kirjaston täyttävät monipuoliset työpajat – tekemistä riittää niin pienille kuin isommillekin lapsille!</p><p><br></p><p><strong>Perhepäivässä yhdistyvät yhteisöllisyys, ilo ja elämyksellisyys – tule kokemaan, tekemään ja viihtymään yhdessä!</strong></p><p><br></p><p><br></p><p><br></p><p><br></p>\nKlo 15.00 Perhepäivän huipennus:\n<a href=\"https://helmet.finna.fi/FeedContent/LinkedEvents?id=espoo_le:agmf7fyc5y\">Morjens! Hello! -Kaksikielinen rock ‘n roll konsertti koko perheelle! (Englanti-suomi).</a><p>Lastenmusiikin supertähdet, Brady Rymer New Yorkista ja Maco Oey Tampereelta, vievät koko perheen vauhdikkaalle rock ‘n roll seikkailulle, jossa leikitään ja lauletaan iloisesti sikin sokin suomen ja englannin kielellä! Ja mukaan mahtuu hieman tukiviittomiakin, joita pääsemme kaikki harjoittelemaan yhdessä.</p><p><br></p><p>Mukana:</p><p>KulttuuriEspoo</p><p>Entressen kirjasto</p><p>Espoon Harrastuspolku</p><p>Lasten kulttuurikeskus Aurora</p><p>MLL:n Keski-Espoon yhdistys</p><p>BraveHeart Agency</p><p>Espoon Tapiot</p><p>Kennelliiton kaveri- ja lukukoirat</p><p>Kasper – Kasvatus ja perheneuvonta ry</p><p>Suomi-Syyria Ystävyysseura ry</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "Kom och fira en oförglömlig Familjedag på biblioteket!<p><br></p><p>Välkommen till bibliotekets familjedag, där hela familjen får delta i inspirerande program som ordnas av lokala aktörer! Under dagen fylls biblioteket av mångsidiga verkstäder – något roligt för både små och stora barn!</p><p><strong>Familjedagen bjuder på gemenskap, glädje och upplevelser – kom och upplev, skapa och ha roligt tillsammans!</strong></p><p><br></p><p><br></p><p><br></p><p><br></p>\nKl. 15.00 Familjedagens final: \n<a href=\"https://helmet.finna.fi/FeedContent/LinkedEvents?id=espoo_le%3Aagmf7fyc5y&lng=sv\">Morjens! Hello! – En tvåspråkig rock ’n’ roll-konsert för hela familjen! (Engelska-finska)</a><p>Barnmusikens superstjärnor Brady Rymer från New York och Maco Oey från Tammerfors tar med hela familjen på ett fartfyllt rock ’n’ roll-äventyr, där de spelar och sjunger glatt på både finska och engelska! Det blir också lite teckenspråk, som vi kan öva på tillsammans</p><p><br></p><p>Medverkande:</p><p>KulturEsbo</p><p>Entresse bibliotek</p><p>Hobbystigen i Esbo</p><p>Barnkulturcentret Aurora</p><p>MLL Central Espoo Förening</p><p>BraveHeart Agency</p><p>Kennelförbundets vän- och läshundar</p><p>Espoon Tapiot</p><p>Kasper – Kasvatus ja perheneuvonta ry</p><p>Suomi-Syyria Ystävyysseura ry</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "Join us for an unforgettable Family Day at the library!<p><br></p><p>Welcome to the library’s Family Day, where the whole family can take part in inspiring activities hosted by local organizations! The day will be filled with exciting – there’s something for kids of all ages to enjoy!</p><p><strong>Family Day is all about community, joy, and shared experiences – come explore, create, and have fun together!</strong></p><p><br></p><p><br></p><p><br></p>\n<br>\n3:00 p.m. Family Day finale: \n<a href=\"https://helmet.finna.fi/FeedContent/LinkedEvents?id=espoo_le%3Aagmf7fyc5y&lng=en-gb\">Morjens! Hello! – A bilingual rock 'n' roll concert for the whole family! (English-Finnish)</a><p>Children's music superstars Brady Rymer from New York and Maco Oey from Tampere take the whole family on a fast-paced rock 'n' roll adventure, where we play and sing happily in both Finnish and English! There will also be some sign language, which we can all practice together.</p><p>With us:</p><p>CultureEspoo</p><p>Entresse Library</p><p>Espoo Hobby Path</p><p>Children's Cultural Centre Aurora</p><p>MLL Central Espoo Association</p><p>BraveHeart Agency</p><p>Reading and Companion Dogs from the Finnish Kennel Club</p><p>Espoon Tapiot</p><p>Kasper – Kasvatus ja perheneuvonta ry</p><p>Suomi-Syyria Ystävyysseura ry</p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule viettämään unohtumatonta Perhepäivää kirjastolla! ", "sv": "Kom och fira en oförglömlig Familjedag på biblioteket!", "en": "Entresse library family day" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmu2wgwvy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmycdipu4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490907, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-25T11:34:38.900650Z", "last_modified_time": "2025-09-25T11:34:38.900665Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/dac81c90-822c-468d-b9ea-f052f3167ed7.jpg", "cropping": "21,0,779,758", "photographer_name": "", "alt_text": "Kirjansidonnan maailma - Espoon kirjansitojat ry:n näyttely", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490907/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T12:25:24.452081Z", "last_modified_time": "2025-09-25T12:27:50.505974Z", "date_published": "2025-09-25T11:33:00Z", "start_time": "2025-09-29T05:00:00Z", "end_time": "2025-10-23T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjansidonnan maailma -näyttely", "sv": "Utställningen: Bokbindandets värld", "en": "Exhibition: The World of Bookbinding " }, "provider_contact_info": null, "info_url": { "fi": "https://espoonkirjansitojat.net/" }, "description": { "fi": "Kiertonäyttely Kirjansidonnan maailma<p>Kirjansidonnan maailma -näyttely esittelee kirjansidontaa työnä, taiteena ja harrastuksena.</p><p>Näyttelyllä on kaksi teemaa: suomalaiset klassikot sekä tiedottava näyttely.</p><p>Suomalainen klassikko -sarjan idea on esitellä painetun kirjan taidesidontaa. Osallistujat ovat sitoneet suomalaisia klassikkoromaaneja valitsemallaan tavalla: perinteisin keinoin, luovasti, taiteellisesti — kuitenkin kirjan sisältöön sopien ja sisältöä tulkiten.</p><p>Tiedottavassa osuudessa haluamme näyttää, mitä kaikkea kirjansidonnan keinoin voi tehdä. Esittelyssä ovat historialliset sidokset, monenlaiset modernit sidonnat tavallisin tai erikoisin materiaalein toteutettuna, korjatut kirjat, rasiat ja kotelot, taiteilijakirjat ja luovat hullutukset.</p><p>Kirjansidonnan maailma -näyttelyn on koonnut <strong>Espoon kirjansitojat ry</strong>. Näyttelyssä on esillä 8 suomalaista klassikkoteosta ja 35 tiedottavaan näyttelyyn osallistuvaa teosta. Tekijöitä on mukana 21 kappaletta: alalla toimivia ammattilaisia, alaa opiskelleita sekä harrastajia.</p><p>Näyttelystä tuli todella monipuolinen ja ”kirjava”! Toivommekin näyttelyn kertovan kirjansidonnan monenlaisista mahdollisuuksista nykypäivänä ja innostavan uusia harrastajia kirjansidonnan pariin.</p><p>Näyttely kiertää kirjastoissa ja näyttelypaikoissa ympäri Suomea vuosina 2024–2025. Se on myös nähtävissä yhdistyksen nettisivuilla:</p><p><a href=\"https://espoonkirjansitojat.net/kiertava-kirjansidontanayttely/\">https://espoonkirjansitojat.net/kiertava-kirjansidontanayttely/</a></p><p><strong>Espoon kirjansitojat ry</strong> on perustettu vuonna 1998. Nykyään se on koko maan kattava kirjansidonnan harrastajien, ammattilaisten ja kirjansidonnasta kiinnostuneiden muodostama yhdistys.</p><p>Yhdistyksen tarkoituksena on kehittää jäsentensä kirjansidontatietoja ja -taitoja, edistää yhteenkuuluvaisuutta ja tehdä kirjansidontakulttuuria edistävää työtä.</p><p>Yhdistyksen kotisivu: <a href=\"https://espoonkirjansitojat.net/\">https://espoonkirjansitojat.net/</a></p>", "sv": "<p>Utställningen <strong><em>Bokbindningens värld</em> </strong>presenterar bokbindning som hantverk, konst och hobby. Vi hoppas att utställningen kommer att visa på de många möjligheter som bokbinderi erbjuder idag och inspirera nya entusiaster att ta sig an hantverket.</p><p>Utställningen har sammanställts av <strong>Espoon kirjansitojat ry</strong> (Espoo Bokbindareförening).</p><p>Syftet med föreningen är att utveckla medlemmarnas kunskaper och färdigheter inom bokbindning, främja gemenskapen och arbeta för att främja bokbindningskulturen. </p><p>Föreningens webbplats: <a href=\"https://espoonkirjansitojat.net/\">https://espoonkirjansitojat.net/</a></p>", "en": "<p>The exhibition <strong><em>The World of Bookbinding</em></strong> presents bookbinding as a craft, art and hobby. We hope that the exhibition will showcase the many possibilities that bookbinding offers today and inspire new enthusiasts to take up the craft. </p><p>The exhibition has been compiled by <strong>Espoon kirjansitojat ry</strong> (Espoo Bookbinders' Association).</p><p>The purpose of the association is to develop its members' knowledge and skills in bookbinding, promote community spirit and work to promote bookbinding culture.</p><p>The association's website: <a href=\"https://espoonkirjansitojat.net/\">https://espoonkirjansitojat.net/</a></p>" }, "location_extra_info": { "fi": "Vitriinigalleria (kirjaston ylempi kerros)", "sv": "Glassmontern (2:a våningen)", "en": "Showcase gallery (2nd floor)" }, "provider": null, "short_description": { "fi": "Espoon kirjansitojat ry:n kiertonäyttely Kirjansidonnan maailma", "sv": "Utställningen Bokbindandets värld (Espoon kirjansitojat ry)", "en": "The World of Bookbinding. An exhibition by Espoon kirjansitojat ry." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmycdipu4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67075", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490884, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-24T08:13:31.069026Z", "last_modified_time": "2025-09-24T08:13:31.069039Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772118.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490884/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-24T08:13:30.938944Z", "last_modified_time": "2025-09-25T12:13:24.620360Z", "date_published": null, "start_time": "2025-10-11T09:00:00Z", "end_time": "2025-11-15T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Out of Sync: Kingz Cafe – Drag king -työpajasarja", "sv": "Out of Sync: Kingz Cafe", "en": "Out of Sync: Kingz Cafe – Drag king workshop series" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/08854C58FCAE1F3E45D4C3606A3C4657/Out_of_Sync_Kingz_Cafe", "sv": "http://www.caisa.fi/sv/evenemang/event/08854C58FCAE1F3E45D4C3606A3C4657/Out_of_Sync_Kingz_Cafe", "en": "http://www.caisa.fi/en/events/event/08854C58FCAE1F3E45D4C3606A3C4657/Out_of_Sync_Kingz_Cafe" }, "description": { "fi": "<p>Kingz Cafe -työpajasarja tutustuttaa osallistujat drag king -taiteeseen. Työpajat on suunnattu yli 18-vuotiaille.</p><p>Drag-taide on taiteenmuoto, jossa henkilö ilmaisee itseään muun muassa pukeutumalla, meikkaamalla, esiintymällä ja leikittelemällä erilaisilla sukupuoli- ja muilla rooleilla.</p><p>Työpajassa syvennytään drag taiteen historiaan, suunnitellaan ja rakennetaan oma drag-hahmo, opetellaan maskeerausta, puvustusta ja harjoitellaan esiintymistä. Osallistujilla on mahdollisuus esiintyä 29.11 Kingz Cafe -esitysillassa, mutta esiintyminen ei ole vaatimus työpajasarjaan osallistumiselle.</p><p>Työpajasarja on suunnattu Drag king- taiteesta kiinnostuneille yli 18-vuotiaille nuorille. Paikat täytetään ilmoittautumisjärjestyksessä. Paikkoja työpajasarjassa on 12. Toivomme, että osallistujat sitoutuvat koko työpajasarjaan.</p><p>Työpajasarja on maksuton.</p><p>Työpajoja ohjaavat Out of Sync drag king -poikabändin taiteilijat Anne Rönkkö, Kiia Beilinson, Lauri Lohi ja Vane Virta. Ohjaajat ovat kokeneita drag king- taiteilijoita ja ohjanneet useita vastaavia työpajasarjoja.</p><p>Pääasiallinen ohjauskieli on suomi, englanti tarvittaessa.</p><p>Työpajat ovat lauantaisin klo 12–16 Caisan Ohra-tilassa. Päivämäärät: 11.10.,18.10., 25.10., 8.11. ja 15.11.2025.</p><p>Työpajasarja vaatii ilmoittautumisen. Voit ilmoittautua oheisesta linkistä: https://forms.gle/19CoAwH7tqSCGm6g8</p>", "en": "<p>The Kingz Cafe workshop series introduces participants to the art of drag king. The workshop is aimed at people over 18 years of age.</p><p>Drag art is an art form in which a person expresses themselves by, among other things, dressing, applying makeup, performing and playing with different gender and other roles.</p><p>The workshop will delve into the history of drag art, plan and build their own drag character, learn makeup, costumes and practice performing. Participants will have the opportunity to perform at the Kingz Cafe performance evening on 29.11, but performing is not a requirement for participation in the workshop series.</p><p>The workshop series is aimed at young people aged +18 who are interested in Drag King art. Places will be filled in the order of registration. There are 12 places in the workshop series. We hope that participants will commit to the entire workshop series.</p><p>The workshop series is free of charge.</p><p>The workshops are led by the artists of the Out of Sync drag king boy band, Anne Rönkkö, Kiia Beilinson, Lauri Lohi and Vane Virta. The instructors are experienced drag king artists and have led several similar workshop series.</p><p>The main language of instruction is Finnish, English if necessary.</p><p>The workshop series requires registration. You can register at the following link: https://forms.gle/19CoAwH7tqSCGm6g8</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kingz Cafe -työpajasarja tutustuttaa osallistujat drag king -taiteeseen. Työpajat on suunnattu yli 18-vuotiaille.", "en": "The Kingz Cafe workshop series introduces participants to the art of drag king. The workshop is aimed at people over 18 years of age." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67075/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66833", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490412, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T10:15:02.037797Z", "last_modified_time": "2025-08-18T10:15:02.037817Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772494.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490412/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-08-18T10:15:01.933639Z", "last_modified_time": "2025-09-25T12:13:22.727742Z", "date_published": null, "start_time": "2025-10-04", "end_time": "2026-09-05", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Piilossa", "sv": "Piilossa (I gömman)", "en": "Piilossa (Hidden)" }, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/631086C4A57DC529631B9A941D17A7E9/Piilossa", "sv": "http://www.annantalo.fi/sv/evenemang/event/631086C4A57DC529631B9A941D17A7E9/Piilossa_I_gomman_", "en": "http://www.annantalo.fi/en/events/event/631086C4A57DC529631B9A941D17A7E9/Piilossa_Hidden_" }, "description": { "fi": "<p>Pilven sisällä, pinnan alla, maan kätköissä vai luukun takana? Piilossa on näyttely asioista, jotka eivät aina ole näkyvillä.</p><p>Piilossa-näyttelyssä Alagalleria on muuttunut huoneistoksi: se on jaettu erilaisiin tiloihin, joista kukin on omanlaisensa piilo.</p><p>Näyttely on prosessi – se ei siis ole jatkuvasti samanlainen, vaan muuttuu kauden aikana. Osa huoneista saattaa olla välillä kiinni ja avautua uudella sisällöllä tai siellä olevat teokset voivat vaihtua. Näyttelyssä voi siis vierailla monta kertaa ja löytää aina jotain uutta!</p><p>Näyttelyssä ovat mukana taiteilijat <b>Janne Kärkkäinen</b>, <b>Anniina Salo</b> ja <b>Kirsti Taiviola</b>. Esillä on myös vaihtuvasti teoksia lapsilta ja nuorilta. Mukana ovat taideryhmät <b>Kohina</b>, <b>Kontrasti</b>, <b>Jäljen etsijät</b>, <b>Painotassut</b> ja <b>Sähäkät siveltimet</b>.</p><p>Näyttelyn avajaiset 3.10. klo 17-19 - Tervetuloa!</p><p>_</p><p>Annantalon vuosien 2025-2026 teemana on Piilossa. Se kutsuu perheitä tutkimaan, mitä kaikkea voi olla näkymättömissä – tunteita, unelmia, leikkejä tai kokonaisia tarinoita. Piilossa voi olla jotakin, joka vain odottaa tulevansa nähdyksi. Ehkä löydämme sen yhdessä Annantalosta!</p>", "sv": "<p>En utställning om sådant som inte alltid är synligt.</p><p>Dolt eller synligt? I den här utställningen har Annegårdens nedre galleri blivit till en lägenhet. Den är indelad i nio olika rum, som vart och ett har ett eget gömställe.</p><p>Utställningen är en process – den är inte alltid likadan utan förändras under utställningsperioden. En del av rummen kan ibland vara stängda och öppnas med nytt innehåll, eller så kan verken i dem bytas ut. Man kan alltså ta del av utställningen många gånger och alltid hitta något nytt!</p><p>Vernissagen är den 3.10 kl. 17–19 – Välkommen!</p><p>Annegården har gömställen och att gömma sig som tema för åren 2025–2026. Familjer bjuds in att utforska allt det som kan vara dolt – känslor, drömmar, lekar eller hela berättelser. Det som är gömt kanske bara väntar på att någon ska se det. Kanske hittar vi det tillsammans på Annegården!</p>", "en": "<p>An exhibition of things that are not always visible.</p><p>Hidden or visible? The exhibition has changed the gallery into nine separate rooms - each different kind of hiding place.</p><p>The exhibition is a process – meaning that it does not stay the same but instead changes during the exhibition term. Some of the rooms may be closed for a time and then reopen with new contents or different works. You can therefore visit the exhibition many times and always find something new!</p><p>Exhibition opening on October 3rd from 17 to 19 – Welcome!</p><p>The Annantalo theme for 2025–2026 is Hide and seek. It invites families to explore all the things that could be hidden – feelings, dreams, games or entire stories. Maybe something hidden is only waiting to be seen. Maybe we can discover it together at Annantalo!</p>" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pilven sisällä, pinnan alla, maan kätköissä vai luukun takana? Piilossa on näyttely asioista, jotka eivät aina ole näkyvillä.", "sv": "En utställning om sådant som inte alltid är synligt.", "en": "An exhibition of things that are not always visible." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66833/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23agxu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23al3y/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-23T12:43:34.341615Z", "last_modified_time": "2024-05-17T10:30:18.739899Z", "name": "Kahvihetki.", "url": "https://tapahtumasyotto.espoo.fi/media/images/Nimet%C3%B6n_malli_5.png", "cropping": "293,0,1707,1414", "photographer_name": "Pixabay", "alt_text": "Kolme kahvikuppia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150743/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-05-06T12:43:49.365878Z", "last_modified_time": "2025-09-25T10:41:26.517780Z", "date_published": null, "start_time": "2025-09-26T06:00:00Z", "end_time": "2025-09-26T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PERUTTU 26.9. Perhekahvila", "sv": "AVBRUTEN 26.9. Familjekafé", "en": "CANCELLED 26.9. Family Café" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa.</p><p>Tervetuloa laulamaan, loruttelemaan, kuuntelemaan satuja ja viettämään aikaa alueen muiden vanhempien kanssa kahvikupin äärellä.</p><p>Järjestetään joka toinen perjantai klo 9-11 Entressen kirjaston Sinisessä huoneessa.</p><p>Järjestetään:</p><p>15.8.2025</p><p>29.8.2025</p><p>12.9.2025</p><p>26.9.2025 PERUTTU</p><p>10.10.2025</p><p>24.10.2025</p><p>7.11.2025</p><p>21.11.2025</p><p>5.12.2025</p><p>19.12.2025</p><p>Tapahtumaan on esteetön pääsy.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Familjekafé, som riktar sig till familjer med barn under skolåldern, kommer att starta i Entresse biblioteket.</p><p>Välkommen att sjunga, rimma, lyssna på sagor och umgås med andra föräldrar i området över fika.</p><p>Händer varje fredag från 9 till 11 i Sininen huone på Entresse biblioteket.</p><p>Händer:</p><p>15.8.2025</p><p>29.8.2025</p><p>12.9.2025</p><p>26.9.2025 AVBRUTEN</p><p>10.10.2025</p><p>24.10.2025</p><p>7.11.2025</p><p>21.11.2025</p><p>5.12.2025</p><p>19.12.2025</p><p>Evenemanget är på finska.</p><p><br></p><p>#HelloEspoo</p><p>Evenemanget är tillgängligt för rörelsehindrade.</p>", "en": "<p>Family Café is an event for families with children under school age, which will start in the Entresse library.</p><p>Welcome to sing, rhyme, listen to fairy tales and spend time with other parents in the area over a cup of coffee.</p><p>Organized on every Friday from 9 to 11 in the Sininen huone at Entresse library.</p><p>Event is organized on:</p><p>15.8.2025</p><p>29.8.2025</p><p>12.9.2025</p><p>26.9.2025 CANCELLED</p><p>10.10.2025</p><p>24.10.2025</p><p>7.11.2025</p><p>21.11.2025</p><p>5.12.2025</p><p>19.12.2025</p><p>The event is in Finnish.</p><p>The event is accessible for all.</p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": null, "short_description": { "fi": "Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa. ", "sv": "Familjekafé, som riktar sig till familjer med barn under skolåldern.", "en": "Family Café is an event for families with children under school age, which will start in the Entresse library. " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23agxu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66916", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?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:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-26T10:14:06.242027Z", "last_modified_time": "2025-08-26T10:14:06.242046Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776893.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-26T10:14:06.100828Z", "last_modified_time": "2025-09-25T10:13:09.648959Z", "date_published": null, "start_time": "2025-09-30T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Talo tavattavissa! – klo 10-12 & klo 14-17", "sv": "Talo tavattavissa - Aula – kl. 10-12 & kl. 14-17", "en": "Talo tavattavissa - Aula – 10 AM - 12 PM & 2 PM - 5 PM" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BCE04482CC4961CD36A3D8014014A38D/Talo_tavattavissa_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BCE04482CC4961CD36A3D8014014A38D/Talo_tavattavissa_-_Aula", "en": "http://www.vuotalo.fi/en/events/event/BCE04482CC4961CD36A3D8014014A38D/Talo_tavattavissa_-_Aula" }, "description": { "fi": "<p>Lämpimästi tervetuloa tapaamaan Vuotalon toimijoita!</p><p>Tule tapaamaan Vuotalon toimijoita ja löytämään alkaneet syksyn vinkit.</p><p>Olemme myös kiinnostuneet kuulemaan toiveesi Vuotalon sisällöistä.</p><p>Avoimet ovet, kahvitarjoilu, infopisteet jne.!</p><p>**</p><p>Talo tavattavissa -tapahtuman aikana voit myös tehdä oman avaimenperän: Itsetehdyn avaimenperän avulla avaimet pysyvät tallessa!<br>Kirjoita nahkaiseen avaimenperään oma lempinimi tai muu ilahduttava viesti. Työpajassa valmistetaan huonekaluteollisuuden ylijäämänahasta avaimenperät, joihin lyödään kohokirjaimin haluttu teksti.</p><p>Työpaja on avoinna klo 10-12 ja klo 14-17 Vuotalon aulassa!<br>Työpajaa ohjaa Greta Isola.<br>Vapaa pääsy</p>", "sv": "<p>Varmt välkommen att träffa aktörerna i Nordhuset!</p><p>Kom och träffa Nordhusets aktörer och få tips inför hösten.</p><p>Vi är också intresserade av att höra dina önskemål om Nordhusets innehåll.</p><p>Öppet hus, kaffeservering, infopunkter m.m.!</p><p>**</p><p>Under evenemanget \"Träffa huset\" (Taloa tavattavissa) kan du också göra din egen nyckelring: Med en egenhändigt tillverkad nyckelring håller sig nycklarna på plats!</p><p>Skriv ditt smeknamn eller ett annat uppmuntrande meddelande på en nyckelring av läder. I verkstaden tillverkas nyckelringar av överskottsläder från möbelindustrin, och du kan prägla in den text du vill med reliefbokstäver.</p><p>Verkstaden är öppen kl. 10–12 och kl. 14–17 i Nordhusets aula!<br>Verkstaden leds av Greta Isola.<br>Fritt inträde.</p>", "en": "<p>Warmly welcome to meet the people behind Vuotalo!</p><p>Come and meet the people behind Vuotalo and discover tips and inspiration for the autumn season!</p><p>We’re also interested in hearing your wishes and ideas for Vuotalo’s content.</p><p>Open doors, coffee service, info points, and more!</p><p>**<br>During the “Meet the House” event, you can also make your own keychain: a handmade keychain helps keep your keys safe!<br>Write your nickname or another cheerful message on a leather keychain. In the workshop, keychains are made from surplus leather from the furniture industry, and you can stamp your chosen text on them in embossed letters.</p><p>The workshop is open from 10 AM to 12 PM and from 2 PM to 5 PM in Vuotalo’s lobby!<br>The workshop is led by Greta Isola.<br>Free admission.</p>" }, "location_extra_info": null, "provider": { "fi": "Vuotalo" }, "short_description": { "fi": "Lämpimästi tervetuloa tapaamaan Vuotalon toimijoita!", "sv": "Varmt välkommen att träffa aktörerna i Nordhuset!", "en": "Warmly welcome to meet the people behind Vuotalo!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66916/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmlz4rx6m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4r3qa/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150422, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-11-27T12:30:08.869964Z", "last_modified_time": "2023-11-27T12:30:19.230971Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/151122Kielikahvila_mainos_680_x_382_px.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirrettyjä ihmisiä keltaisella taustalla. Puhekuplissa Tervetuloa, Solmu kielikahvila, moi. Yläkulmassa eläkeliiton logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150422/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T10:45:32.622299Z", "last_modified_time": "2025-09-25T10:09:33.692207Z", "date_published": null, "start_time": "2025-10-15T13:00:00Z", "end_time": "2025-10-15T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Solmu - suomen kielen kielikahvila", "sv": "Solmu - det finska språkkaféet", "en": "Solmu - the Finnish language cafe" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea. Myös aloittelijat ovat tervetulleita.</p><p>Kielikahvilaan ei tarvitse ilmoittautua etukäteen. Mukaan voi tulla koska tahansa.</p><p>Kielikahvilassa opit puhumaan arkielämän suomen kieltä. Kielikahvilassa pääset puhumaan suomea suomalaisten kanssa.</p><p>Tervetuloa mukaan!</p><p>#HelloEspoo</p>", "sv": "<p>Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska. Nybörjare är också välkomna.</p><p>Du behöver inte anmäla dig till språkcaféet i förväg. Du kan komma när som helst.</p><p>I språkcaféet får du lära dig att tala det finska vardagsspråket. I språkcaféet kan du prata finska med finländare.</p><p>Välkommen ombord!</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>A language cafe for speaking Finnish, free and open to everyone. You can participate in the language cafe if you want to learn to speak Finnish. Beginners are also welcome.</p><p>You do not need to register for the language cafe in advance. You can come anytime.</p><p>In the language cafe, you will learn to speak the Finnish language of everyday life. In the language cafe you can speak Finnish with Finns.</p><p>Welcome aboard!</p><p><br></p><p>#HelloEspoo</p>" }, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": { "fi": "Eläkeliiton Espoon yhdistyksen vapaaehtoiset", "sv": "Frivilliga från Eläkeliitto Espoo-föreningen", "en": "Volunteers from the Eläkeliitto Espoo Association" }, "short_description": { "fi": "Kaikille avoin ja ilmainen kielikahvila suomen kielen puhumiseen. Kielikahvilaan voi osallistua, jos haluaa oppia puhumaan suomea.", "sv": "Ett språkcafé öppet för alla och gratis för att prata finska. Du kan delta i språkcaféet om du vill lära dig prata finska.", "en": "A language cafe open to everyone and free for speaking Finnish. You can participate in the language cafe if you want to learn to speak Finnish." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmlz4rx6m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:6401ac7a-eb3b-46a6-b9fd-24819a8ffb4e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?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": [], "price": { "fi": "0" }, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Tapahtuman_julkaisu_ja_pivittminen_Linked_Eventsiin3850086225" }, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2025-09-25T09:58:07.502912Z", "last_modified_time": "2025-09-25T10:00:46.454315Z", "date_published": "2025-09-25T09:42:12Z", "start_time": "2025-10-01T05:00:00Z", "end_time": "2025-10-01T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 12, "audience_max_age": 55, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": 100, "enrolment_start_time": "2025-09-25T08:00:00+03:00", "enrolment_end_time": "2025-09-30T08:00:00+03:00", "local": false, "replaced_by": null, "name": { "fi": "Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<div><p>Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin - Tapahtuman kuvaus suomeksi</p></div>" }, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi" }, "provider": { "fi": "Tapahtuman järjestäjä suomeksi" }, "short_description": { "fi": "Tapahtuman julkaisu (ja päivittäminen) Linked Eventsiin - Lyhyt kuvaus suomeksi (Korkeintaan 160merkkiä)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6401ac7a-eb3b-46a6-b9fd-24819a8ffb4e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmqkb5gsm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5iwy/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490572, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-01T10:41:41.174825Z", "last_modified_time": "2025-09-01T10:41:41.174839Z", "name": "Kirjoja & ruokaa", "url": "https://tapahtumasyotto.espoo.fi/media/images/7a2031bb-9d35-472b-ad82-3f428163a6fb.png", "cropping": "105,0,523,418", "photographer_name": "", "alt_text": "Kirja, teetä ja leivos pöydällä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-01T10:43:31.925936Z", "last_modified_time": "2025-09-25T09:32:57.170663Z", "date_published": null, "start_time": "2025-12-13T10:00:00Z", "end_time": "2025-12-13T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjoja & ruokaa", "sv": "Böcker & Mat", "en": "Books & Foods" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 14 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p>📅 Ajankohdat ja teemat</p><p>24.09. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Aasia, vieraana JinSook Lee</p><p>15.10. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Ranska</p><p>31.10. klo 16.30–19.30, Entressen kirjasto (Jukeboxi) – Halloween</p><p>13.12. klo 12.00–15.00 , Lippulaivan kirjasto (Kapyysi) – Italia</p>", "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 14 deltagare.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p>📅 Datum & teman</p><p>24.9 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Asien, gäst JinSook Lee</p><p>15.10 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Frankrike</p><p>31.10 kl. 16.30–19.30, Entresse bibliotek (Jukeboxi) – Halloween</p><p>13.12 kl. 12.00–15.00, Lippulaiva bibliotek (Kapyysi) – Italien</p>", "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 14 attendees.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p>📅 Dates & Themes</p><p>24 Sept 16:30–19:30, Lippulaiva Library (Kapyysi) – Asia, guest JinSook Lee</p><p>15 Oct 16:30–19:30, Lippulaiva Library (Kapyysi) – France</p><p>31 Oct 16:30–19:30, Entresse Library (Jukeboxi) – Halloween</p><p>13 Dec 12:00–15:00, Lippulaiva Library (Kapyysi) – Italy</p>" }, "location_extra_info": { "fi": "Tapahtuma järjestetään Lippulaivan kirjastossa 24.9., 15.10. ja 28.11. sekä Entressen kirjastossa 31.10.", "sv": "Evenemanget ordnas i Lippulaiva bibliotek den 24.9., 15.10. och 28.11. samt i Entresse bibliotek den 31.10.", "en": "The event will take place at Lippulaiva Library on September 24, October 15, and November 28, and at Entresse Library on October 31." }, "provider": null, "short_description": { "fi": "Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ", "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.", "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5gsm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmqkb5hku", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5iwy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490572, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-01T10:41:41.174825Z", "last_modified_time": "2025-09-01T10:41:41.174839Z", "name": "Kirjoja & ruokaa", "url": "https://tapahtumasyotto.espoo.fi/media/images/7a2031bb-9d35-472b-ad82-3f428163a6fb.png", "cropping": "105,0,523,418", "photographer_name": "", "alt_text": "Kirja, teetä ja leivos pöydällä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-01T10:43:31.806859Z", "last_modified_time": "2025-09-25T09:32:57.117827Z", "date_published": null, "start_time": "2025-10-15T13:30:00Z", "end_time": "2025-10-15T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjoja & ruokaa", "sv": "Böcker & Mat", "en": "Books & Foods" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 14 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p>📅 Ajankohdat ja teemat</p><p>24.09. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Aasia, vieraana JinSook Lee</p><p>15.10. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Ranska</p><p>31.10. klo 16.30–19.30, Entressen kirjasto (Jukeboxi) – Halloween</p><p>13.12. klo 12.00–15.00 , Lippulaivan kirjasto (Kapyysi) – Italia</p>", "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 14 deltagare.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p>📅 Datum & teman</p><p>24.9 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Asien, gäst JinSook Lee</p><p>15.10 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Frankrike</p><p>31.10 kl. 16.30–19.30, Entresse bibliotek (Jukeboxi) – Halloween</p><p>13.12 kl. 12.00–15.00, Lippulaiva bibliotek (Kapyysi) – Italien</p>", "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 14 attendees.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p>📅 Dates & Themes</p><p>24 Sept 16:30–19:30, Lippulaiva Library (Kapyysi) – Asia, guest JinSook Lee</p><p>15 Oct 16:30–19:30, Lippulaiva Library (Kapyysi) – France</p><p>31 Oct 16:30–19:30, Entresse Library (Jukeboxi) – Halloween</p><p>13 Dec 12:00–15:00, Lippulaiva Library (Kapyysi) – Italy</p>" }, "location_extra_info": { "fi": "Tapahtuma järjestetään Lippulaivan kirjastossa 24.9., 15.10. ja 28.11. sekä Entressen kirjastossa 31.10.", "sv": "Evenemanget ordnas i Lippulaiva bibliotek den 24.9., 15.10. och 28.11. samt i Entresse bibliotek den 31.10.", "en": "The event will take place at Lippulaiva Library on September 24, October 15, and November 28, and at Entresse Library on October 31." }, "provider": null, "short_description": { "fi": "Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ", "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.", "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5hku/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmqkb5iwy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5gsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5hku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5iaq/?format=api" } ], "images": [ { "id": 1490572, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-01T10:41:41.174825Z", "last_modified_time": "2025-09-01T10:41:41.174839Z", "name": "Kirjoja & ruokaa", "url": "https://tapahtumasyotto.espoo.fi/media/images/7a2031bb-9d35-472b-ad82-3f428163a6fb.png", "cropping": "105,0,523,418", "photographer_name": "", "alt_text": "Kirja, teetä ja leivos pöydällä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-01T10:43:31.095232Z", "last_modified_time": "2025-09-25T09:32:56.622315Z", "date_published": null, "start_time": "2025-09-24T13:30:00Z", "end_time": "2025-12-13T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjoja & ruokaa", "sv": "Böcker & Mat", "en": "Books & Foods" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. Jokaisella kerralla tutustumme eri teemaan liittyviin teoksiin ja inspiroidumme niistä kokkailemaan yhdessä.</strong></p><p>Tapahtumasarja on maksuton ja kaikille avoin, mutta suunnattu erityisesti aikuisille. Mukaan mahtuu 14 ensimmäistä saapumisjärjestyksessä.</p><p>Tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta!</p><p>📅 Ajankohdat ja teemat</p><p>24.09. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Aasia, vieraana JinSook Lee</p><p>15.10. klo 16.30–19.30, Lippulaivan kirjasto (Kapyysi) – Ranska</p><p>31.10. klo 16.30–19.30, Entressen kirjasto (Jukeboxi) – Halloween</p><p>13.12. klo 12.00–15.00 , Lippulaivan kirjasto (Kapyysi) – Italia</p>", "sv": "<p><strong>Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld. Varje gång fokuserar vi på verk kopplade till ett särskilt tema – och låter oss inspireras till att laga mat och smaka tillsammans.</strong></p><p>Serien är gratis och öppen för alla, men riktar sig särskilt till vuxna. Antalet platser är begränsat till 14 deltagare.</p><p>Denna evenemangsserie är en del av bibliotekets program och har skapats utifrån kundernas önskemål – kom och upplev nya sätt att känna och njuta av litteratur!</p><p>📅 Datum & teman</p><p>24.9 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Asien, gäst JinSook Lee</p><p>15.10 kl. 16.30–19.30, Lippulaiva bibliotek (Kapyysi) – Frankrike</p><p>31.10 kl. 16.30–19.30, Entresse bibliotek (Jukeboxi) – Halloween</p><p>13.12 kl. 12.00–15.00, Lippulaiva bibliotek (Kapyysi) – Italien</p>", "en": "<p><strong>Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures. Each session focuses on works connected to a specific theme, inspiring us to cook and taste together.</strong></p><p>The series is free of charge and open to everyone, though it is especially aimed at adults. Places are available for the first 14 attendees.</p><p>This event series is part of the library’s program and has been created based on customer wishes – come and experience new ways to sense and enjoy literature!</p><p>📅 Dates & Themes</p><p>24 Sept 16:30–19:30, Lippulaiva Library (Kapyysi) – Asia, guest JinSook Lee</p><p>15 Oct 16:30–19:30, Lippulaiva Library (Kapyysi) – France</p><p>31 Oct 16:30–19:30, Entresse Library (Jukeboxi) – Halloween</p><p>13 Dec 12:00–15:00, Lippulaiva Library (Kapyysi) – Italy</p>" }, "location_extra_info": { "fi": "Tapahtuma järjestetään Lippulaivan kirjastossa 24.9., 15.10. ja 28.11. sekä Entressen kirjastossa 31.10.", "sv": "Evenemanget ordnas i Lippulaiva bibliotek den 24.9., 15.10. och 28.11. samt i Entresse bibliotek den 31.10.", "en": "The event will take place at Lippulaiva Library on September 24, October 15, and November 28, and at Entresse Library on October 31." }, "provider": null, "short_description": { "fi": "Tervetuloa tapahtumasarjaan, jossa kirjat, elokuvat ja sarjat johdattavat ruokakulttuurien äärelle. ", "sv": "Välkommen till en evenemangsserie där böcker, filmer och tv-serier leder oss in i matens kulturvärld.", "en": "Welcome to a special event series where books, films, and TV shows lead us into the world of food cultures." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmqkb5iwy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx76xswm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490901, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-25T07:42:50.642138Z", "last_modified_time": "2025-09-25T07:42:50.642153Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ea76013e-5030-46eb-b085-ac7490e4cb4e.jpg", "cropping": "0,267,1066,1333", "photographer_name": "", "alt_text": "Kuvassa Olga Filippova soittaa pianoa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490901/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T07:44:38.366062Z", "last_modified_time": "2025-09-25T07:44:38.366080Z", "date_published": null, "start_time": "2025-11-20T15:00:00Z", "end_time": "2025-11-20T15:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Olga Filippovan pianokonsertti", "sv": "Olga Filippovas pianokonsert", "en": "Olga Filippova's piano concert" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>20. marraskuuta järjestetään pianokonsertti, joka on omistettu maailman lasten päivälle.</p><p><br></p><p> Esiintyjä: Olga Filippova</p><p> Alkaa klo 17.00.</p><p> Kesto - 45 minuuttia</p><p> Esitetään teoksia eri aikakausilta.</p><p> Vietä tämä aika muistellen lapsuuden unelmia.</p><p><br></p><p>Tervetuloa!</p><p><br></p>", "sv": "<p>En pianokonsert tillägnad Världsbarnsdagen kommer att hållas den 20 november.</p><p><br></p><p>Artist: Olga Filippova</p><p><br></p><p>Konserten börjar klockan 17:00.</p><p><br></p><p>Längd: 45 minuter.</p><p><br></p><p>Pianomusik från olika epoker kommer att framföras.</p><p><br></p><p>Tillbringa denna tid med att minnas dina barndomsdrömmar.</p><p><br></p><p>Välkommen! Evenemanget är gratis och öppet för alla.</p>", "en": "<p>A piano concert dedicated to World Children's Day will be held on November 20th.</p><p><br></p><p>Performer: Olga Filippova</p><p><br></p><p>The concert starts at 5:00 p.m.</p><p><br></p><p>Duration: 45 minutes</p><p><br></p><p>Piano music from different eras will be performed.</p><p><br></p><p>Spend this time reminiscing about your childhood dreams.</p><p><br></p><p>Welcome! The event is free of charge and open for everyone.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "20. marraskuuta järjestetään pianokonsertti, joka on omistettu maailman lasten päivälle. Tervetuloa!", "sv": "Den 20 november hålls en pianokonsert tillägnad Världsbarnsdagen. Välkommen!", "en": "A piano concert dedicated to World Children's Day will be held on November 20th. Welcome to listen to the concert!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx76xswm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6oi4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:08.235363Z", "last_modified_time": "2025-09-25T06:33:08.235382Z", "date_published": null, "start_time": "2025-12-11T11:00:00Z", "end_time": "2025-12-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6oi4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6o4y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:08.109516Z", "last_modified_time": "2025-09-25T06:33:08.109535Z", "date_published": null, "start_time": "2025-12-04T11:00:00Z", "end_time": "2025-12-04T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6o4y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6pii", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:07.976458Z", "last_modified_time": "2025-09-25T06:33:07.976477Z", "date_published": null, "start_time": "2025-11-27T11:00:00Z", "end_time": "2025-11-27T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6pii/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6pui", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:07.850103Z", "last_modified_time": "2025-09-25T06:33:07.850123Z", "date_published": null, "start_time": "2025-11-20T11:00:00Z", "end_time": "2025-11-20T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6pui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6p7i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:07.726514Z", "last_modified_time": "2025-09-25T06:33:07.726534Z", "date_published": null, "start_time": "2025-11-13T11:00:00Z", "end_time": "2025-11-13T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6p7i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6qjq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:07.615405Z", "last_modified_time": "2025-09-25T06:33:07.615423Z", "date_published": null, "start_time": "2025-10-30T11:00:00Z", "end_time": "2025-10-30T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6qjq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6qtu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:07.505950Z", "last_modified_time": "2025-09-25T06:33:07.505971Z", "date_published": null, "start_time": "2025-10-23T10:00:00Z", "end_time": "2025-10-23T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6qtu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmx7q6q6q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6oi4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6o4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6pii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6pui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6p7i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6qjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6qtu/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-25T06:33:06.475634Z", "last_modified_time": "2025-09-25T06:33:06.475651Z", "date_published": null, "start_time": "2025-10-23T10:00:00Z", "end_time": "2025-12-11T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jooga", "sv": "Yoga", "en": "Yoga" }, "provider_contact_info": null, "info_url": null, "description": { "fi": "<p>Tervetuloa mukaan kokeilemaan Joogaa. Joogassa on yhdistetty syvät hengitykset ja toistuvat liikkeet, jolloin terveysvaikutukset voimistuvat. Joogassa kehittyy myös fyysinen kunto ja se lievittää stressiä ja ahdistavia tunteita.</p><p>Joogan aikana opitaan olemaan tässä hetkessä, jolloin ei kiinnity menneeseen eikä tulevaan.</p><p>Ei ennakkoilmoittautumista. Tapahtuma on kaikille avoin ja ilmainen. Tuothan mukanasi oman joogamaton. Kirjastolla on myös muutamia joogamattoja, joita voi tarvittaessa lainata.</p>", "sv": "<p>Välkommen att prova på Yoga tillsammans med oss. Yoga kombinerar djupandning och repetitiva rörelser vilket ökar hälsofördelarna. Yoga förbättrar också den fysiska konditionen och lindrar stress och ångest.</p><p>Under yogan lär du dig att vara i nuet, inte fixerad vid det förflutna eller framtiden.</p><p>Ingen föranmälan. Evenemanget är öppet för alla och kostnadsfritt.</p><p>Ta gärna med din egen yogamatta. Biblioteket har också några yogamattor som du kan låna om du behöver dem.</p>", "en": "<p>Welcome to join us to try Yoga. Yoga combines deep breathing and repetitive movements together which enhances the health benefits. Yoga also improves physical fitness and relieves stress and anxiety.</p><p>During yoga, you learn to be in the moment, not fixated on the past or the future.</p><p>No pre-registration. The event is open to all and free of charge.</p><p>Please bring your own yoga mat. The library also has some yoga mats which you can borrow if you need them.</p>" }, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Tervetuloa mukaan kokeilemaan Joogaa.", "sv": "Välkommen att prova på Yoga tillsammans med oss.", "en": "Welcome to join us to try Yoga." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmx7q6q6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24459, "next": "