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 ordering is descending order by -last_modified_time
. 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=9
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=10", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=8" }, "data": [ { "id": "espoo_le:agmk2z6uqq", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:36.948277Z", "last_modified_time": "2025-08-14T05:57:36.948293Z", "date_published": null, "start_time": "2025-10-23T14:30:00Z", "end_time": "2025-10-23T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6uqq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6u6e", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:36.796206Z", "last_modified_time": "2025-08-14T05:57:36.796222Z", "date_published": null, "start_time": "2025-10-16T14:30:00Z", "end_time": "2025-10-16T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6u6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6vma", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:36.464528Z", "last_modified_time": "2025-08-14T05:57:36.464550Z", "date_published": null, "start_time": "2025-10-09T14:30:00Z", "end_time": "2025-10-09T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6vma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6vz4", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:36.068446Z", "last_modified_time": "2025-08-14T05:57:36.068461Z", "date_published": null, "start_time": "2025-10-02T14:30:00Z", "end_time": "2025-10-02T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6vz4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6wh4", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:35.662884Z", "last_modified_time": "2025-08-14T05:57:35.662901Z", "date_published": null, "start_time": "2025-09-25T14:30:00Z", "end_time": "2025-09-25T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wh4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6wwa", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:35.259681Z", "last_modified_time": "2025-08-14T05:57:35.259697Z", "date_published": null, "start_time": "2025-09-18T14:30:00Z", "end_time": "2025-09-18T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wwa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6xdu", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:34.927282Z", "last_modified_time": "2025-08-14T05:57:34.927298Z", "date_published": null, "start_time": "2025-09-11T14:30:00Z", "end_time": "2025-09-11T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6xri", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:34.534880Z", "last_modified_time": "2025-08-14T05:57:34.534896Z", "date_published": null, "start_time": "2025-09-04T14:30:00Z", "end_time": "2025-09-04T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xri/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6x6u", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:34.151166Z", "last_modified_time": "2025-08-14T05:57:34.151188Z", "date_published": null, "start_time": "2025-08-21T14:30:00Z", "end_time": "2025-08-21T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6x6u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6yna", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:33.729930Z", "last_modified_time": "2025-08-14T05:57:33.729952Z", "date_published": null, "start_time": "2025-08-14T14:30:00Z", "end_time": "2025-08-14T15: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6yna/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6y3e", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6raq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6rpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6r5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6sle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6syu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6thi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6tuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6ucu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6uqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6u6e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6vma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6vz4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6wwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6xri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6x6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6yna/?format=api" } ], "images": [ { "id": 1490109, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-14T05:48:15.993599Z", "last_modified_time": "2025-08-14T05:48:15.993613Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/2c899399-2f06-456b-8a4f-0ec75f296ec0.png", "cropping": "74,0,586,511", "photographer_name": "", "alt_text": "Tyttö lukee kirjaa puun alla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490109/?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-08-14T05:57:30.187064Z", "last_modified_time": "2025-08-14T05:57:30.187081Z", "date_published": null, "start_time": "2025-08-14T14:30:00Z", "end_time": "2025-12-18T16: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": "Avoin satuhetki", "sv": "Öppna sagostund", "en": "Open storytime" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Satulaiva", "sv": "Satulaiva", "en": "Satulaiva" }, "short_description": { "fi": "Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.", "sv": "På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder. Sagostunden är på Finska.", "en": "In the library's storytime we read stories to children aged 3-6. The language of the storytime is Finnish." }, "info_url": null, "description": { "fi": "<p>Tervetuloa avoimeen satuhetkeen. Satuhetket on suunnattu alle kouluikäisille lapsille sekä heidän huoltajilleen ja hoitajilleen.</p><p>Satuhetket järjestetään aikavälillä 7.8.-18.12.25</p>", "sv": "<p>På bibliotekets sagostund läser vi berättelser för barn i 3-6 års ålder.</p><p>Sagostunden är på Finska.</p>", "en": "<p>In the library's storytime we read stories to children aged 3-6.</p><p>The language of the storytime is Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6y3e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6zjy", "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/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490110, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T05:26:24.591529Z", "last_modified_time": "2025-08-14T05:26:24.591549Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/eb14c799-0bbc-4d05-80ce-b3641847a32c.jpeg", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa on Mustikka-Citykani istumassa suurella kivellä sekä Tulevaisuustarinoiden Taideiskut -logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490110/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-14T05:43:09.425802Z", "last_modified_time": "2025-08-14T05:43:09.425819Z", "date_published": null, "start_time": "2025-10-01T13:00:00Z", "end_time": "2025-10-01T14: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": "Juhlat metsässä ", "sv": " Juhlat metsässä (Fest i skogen) ", "en": "Juhlat metsässä (Forest Party)" }, "provider_contact_info": null, "provider": { "fi": "KulttuuriEspoo, Teatteri ILMI Ö", "sv": "KulturEsbo, Teatteri ILMI Ö", "en": "CultureEspoo, Teatteri ILMI Ö" }, "location_extra_info": null, "short_description": { "fi": "Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys.", "sv": "Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt.", "en": "Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation." }, "info_url": null, "description": { "fi": "<p>Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys. Mustikka-Citykani ja kaveri kohtaavat lapset ja aikuiset ja johdattavat heidät mielikuvituksellista reittiä pitkin Mustikka-Citykanin kotiin. </p><p>Yhdessä yleisön kanssa tutustutaan Mustikan upeaan kirjahyllyyn ja lelulaatikkoon ja päästetään mielikuvitus valloilleen. Uusien ystävien kunniaksi vietetään myös riemukkaat juhlat, joista ei puutu musiikkia, tanssia, juhlaherkkuja eikä leikkiä! Perustetaanpa myös metsäneläinten soinnukas kuorokin! </p><p>Kesken kaiken retkeilijä ilmaantuu paikalle ja yhdessä saadaan miettiä kierrätystä ja opastaa retkeilijää. Ja sitten juhlat voivat jatkua yhdessä tehtyjen ympäristötaideteosten merkeissä. </p><p>Juhlat metsässä -osallistava esitys on kokemuksellinen, elämyksellinen, yhteistoiminnallinen, liikunnallinen sekä lasten ja aikuisten mielikuvitusta monin tavoin aktivoiva riemukas esitys. Esityksessä käsitellään luontosuhdetta yhteisen teatterileikin kautta ja ideoidaan mukavaa, ekologista ja kaikille hyvää elämää ja tulevaisuutta. </p><p>Käsikirjoitus ja ohjaus devising-prosessissa: Anne Korhonen, Minna Savin, </p><p>Outi Sädekallio-Snellman </p><p>Näyttelijät: </p><p>Mustikka-Citykani: Minna Savin/ Outi Sädekallio-Snellman </p><p>Kaveri ja retkeilijä: Anne Korhonen/Minna Savin </p><p>Puvustus: Työryhmä </p><p>Kesto: 30 min + ohjattu aika näyttämöllä </p><p>Aikataulu:</p><p>26.9. klo 17 ja klo 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10. klo 14.30 ja 16 / Lippulaivan kirjasto (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "sv": "<p>Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt. Stadskaninen Mustikka och hens vän möter både barn och vuxna och leder dem längs en fantasifull stig hem till stadskaninen. </p><p>Tillsammans med publiken utforskar vi Mustikkas fantastiska bokhylla och leksakslåda samt låter fantasin flöda! För att fira de nya vännerna ordnar vi en festlig tillställning med musik, dans, godsaker och lek. Vi bildar till och med en klingande kör med skogens djur! </p><p>Mitt i allt dyker en vandrare upp och tillsammans funderar vi på återvinning och hjälper vandraren att hitta rätt. Sedan fortsätter festen med gemensamt skapade miljökonstverk. </p><p>Fest i skogen är en upplevelserik, deltagande och fantasifull föreställning full av rörelse och samarbete, som engagerar både barn och vuxna på många sätt. Föreställningen utforskar vår relation till naturen genom gemensam teaterlek och inspirerar till reflektion över ett trevligt, ekologiskt och hållbart liv och en framtid för alla. </p><p>Föreställningens språk är finska. </p><p>Manus och regi: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Skådespelare: </p><p>Stadskaninen Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Vännen och Vandraren: Anne Korhonen/Minna Savin </p><p>Kostym: Arbetsgruppen </p><p>Längd: 30 minuter + tid på scen under ledning </p><p>Schema:</p><p>26.9 kl. 17 och kl. 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10 kl. 14.30 och 16 / Lippulaivabiblioteket (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "en": "<p>Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation. A bunny called Mustikka and their friend meet children and adults, leading them along an imaginative path to the bunny’s home. </p><p>Together with the audience, they explore Mustikka’s wonderful bookshelf and toy box, letting their imagination run wild. To celebrate new friendships, a joyful party is held, complete with music, dancing, treats, and playful fun! Even a harmonious forest animal choir is formed! </p><p>In the middle of it all, a hiker appears, sparking discussions about recycling. The festivities continue with collaboratively created environmental artworks. </p><p>A Party in the Forest is an immersive, joyful, and engaging performance that activates the imagination of both children and adults in many ways. Through theatrical play, the performance explores our relationship with nature and encourages ideas for a fun, ecological, and inclusive life and future. </p><p>The language of the performance is Finnish. </p><p>Writers and directors: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Actors: </p><p>Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Friend and hiker: Anne Korhonen/Minna Savin </p><p>Costume design: Working group </p><p>Duration: 30 min + directed time on stage </p><p>Schedule:</p><p>September 26 at 5:00 PM and 6:30 PM / Pakkasmäki Outdoor Stage,</p><p>October 1 at 2:30 PM and 4:00 PM / Lippulaiva Library (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6zjy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z6z4y", "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/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490110, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-14T05:26:24.591529Z", "last_modified_time": "2025-08-14T05:26:24.591549Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/eb14c799-0bbc-4d05-80ce-b3641847a32c.jpeg", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kuvassa on Mustikka-Citykani istumassa suurella kivellä sekä Tulevaisuustarinoiden Taideiskut -logo.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490110/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-14T05:42:30.735779Z", "last_modified_time": "2025-08-14T05:42:30.735796Z", "date_published": null, "start_time": "2025-10-01T11:30:00Z", "end_time": "2025-10-01T12: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": "Juhlat metsässä ", "sv": " Juhlat metsässä (Fest i skogen) ", "en": "Juhlat metsässä (Forest Party)" }, "provider_contact_info": null, "provider": { "fi": "KulttuuriEspoo, Teatteri ILMI Ö", "sv": "KulturEsbo, Teatteri ILMI Ö", "en": "CultureEspoo, Teatteri ILMI Ö" }, "location_extra_info": null, "short_description": { "fi": "Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys.", "sv": "Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt.", "en": "Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation." }, "info_url": null, "description": { "fi": "<p>Juhlat metsässä on mukaansatempaava, toiminnallinen yleisöä osallistava esitys. Mustikka-Citykani ja kaveri kohtaavat lapset ja aikuiset ja johdattavat heidät mielikuvituksellista reittiä pitkin Mustikka-Citykanin kotiin. </p><p>Yhdessä yleisön kanssa tutustutaan Mustikan upeaan kirjahyllyyn ja lelulaatikkoon ja päästetään mielikuvitus valloilleen. Uusien ystävien kunniaksi vietetään myös riemukkaat juhlat, joista ei puutu musiikkia, tanssia, juhlaherkkuja eikä leikkiä! Perustetaanpa myös metsäneläinten soinnukas kuorokin! </p><p>Kesken kaiken retkeilijä ilmaantuu paikalle ja yhdessä saadaan miettiä kierrätystä ja opastaa retkeilijää. Ja sitten juhlat voivat jatkua yhdessä tehtyjen ympäristötaideteosten merkeissä. </p><p>Juhlat metsässä -osallistava esitys on kokemuksellinen, elämyksellinen, yhteistoiminnallinen, liikunnallinen sekä lasten ja aikuisten mielikuvitusta monin tavoin aktivoiva riemukas esitys. Esityksessä käsitellään luontosuhdetta yhteisen teatterileikin kautta ja ideoidaan mukavaa, ekologista ja kaikille hyvää elämää ja tulevaisuutta. </p><p>Käsikirjoitus ja ohjaus devising-prosessissa: Anne Korhonen, Minna Savin, </p><p>Outi Sädekallio-Snellman </p><p>Näyttelijät: </p><p>Mustikka-Citykani: Minna Savin/ Outi Sädekallio-Snellman </p><p>Kaveri ja retkeilijä: Anne Korhonen/Minna Savin </p><p>Puvustus: Työryhmä </p><p>Kesto: 30 min + ohjattu aika näyttämöllä </p><p>Aikataulu:</p><p>26.9. klo 17 ja klo 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10. klo 14.30 ja 16 / Lippulaivan kirjasto (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "sv": "<p>Juhlat metsässä (Fest i skogen) är en medryckande och interaktiv föreställning där publiken får delta aktivt. Stadskaninen Mustikka och hens vän möter både barn och vuxna och leder dem längs en fantasifull stig hem till stadskaninen. </p><p>Tillsammans med publiken utforskar vi Mustikkas fantastiska bokhylla och leksakslåda samt låter fantasin flöda! För att fira de nya vännerna ordnar vi en festlig tillställning med musik, dans, godsaker och lek. Vi bildar till och med en klingande kör med skogens djur! </p><p>Mitt i allt dyker en vandrare upp och tillsammans funderar vi på återvinning och hjälper vandraren att hitta rätt. Sedan fortsätter festen med gemensamt skapade miljökonstverk. </p><p>Fest i skogen är en upplevelserik, deltagande och fantasifull föreställning full av rörelse och samarbete, som engagerar både barn och vuxna på många sätt. Föreställningen utforskar vår relation till naturen genom gemensam teaterlek och inspirerar till reflektion över ett trevligt, ekologiskt och hållbart liv och en framtid för alla. </p><p>Föreställningens språk är finska. </p><p>Manus och regi: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Skådespelare: </p><p>Stadskaninen Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Vännen och Vandraren: Anne Korhonen/Minna Savin </p><p>Kostym: Arbetsgruppen </p><p>Längd: 30 minuter + tid på scen under ledning </p><p>Schema:</p><p>26.9 kl. 17 och kl. 18.30 / Pakkasmäen ulkoilmanäyttämö</p><p>1.10 kl. 14.30 och 16 / Lippulaivabiblioteket (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>", "en": "<p>Juhlat metsässä (Forest Party) is a captivating, interactive performance that engages the audience through participation. A bunny called Mustikka and their friend meet children and adults, leading them along an imaginative path to the bunny’s home. </p><p>Together with the audience, they explore Mustikka’s wonderful bookshelf and toy box, letting their imagination run wild. To celebrate new friendships, a joyful party is held, complete with music, dancing, treats, and playful fun! Even a harmonious forest animal choir is formed! </p><p>In the middle of it all, a hiker appears, sparking discussions about recycling. The festivities continue with collaboratively created environmental artworks. </p><p>A Party in the Forest is an immersive, joyful, and engaging performance that activates the imagination of both children and adults in many ways. Through theatrical play, the performance explores our relationship with nature and encourages ideas for a fun, ecological, and inclusive life and future. </p><p>The language of the performance is Finnish. </p><p>Writers and directors: Anne Korhonen, Minna Savin, Outi Sädekallio-Snellman </p><p>Actors: </p><p>Mustikka: Minna Savin/ Outi Sädekallio-Snellman </p><p>Friend and hiker: Anne Korhonen/Minna Savin </p><p>Costume design: Working group </p><p>Duration: 30 min + directed time on stage </p><p>Schedule:</p><p>September 26 at 5:00 PM and 6:30 PM / Pakkasmäki Outdoor Stage,</p><p>October 1 at 2:30 PM and 4:00 PM / Lippulaiva Library (Salonki)</p><p><br></p><p>Tulevaisuustarinoita</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z6z4y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z62om", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490111, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T11:31:07.677197Z", "last_modified_time": "2025-08-14T05:27:07.194586Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3454e1ae-6342-42a1-9e27-fa4212ebb1d8.jpg", "cropping": "315,0,1125,810", "photographer_name": "Petri Mast", "alt_text": "Helena Lehtovirta katsoo kameraan, hymyillen, hän nojaa kevyesti käteensä. Taustalla Espoon kulttuurikeskus erillisessä kuvassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490111/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-13T11:33:06.555673Z", "last_modified_time": "2025-08-14T05:27:12.728395Z", "date_published": "2025-08-13T11:28:00Z", "start_time": "2025-09-09T15:00:00Z", "end_time": "2025-09-09T16: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": "Kirjailijavieraana Helena Lehtovirta", "sv": "Författarbesök med Helena Lehtovirta", "en": "Author Visit: Helena Lehtovirta" }, "provider_contact_info": null, "provider": { "fi": "Espoon Kalevalaiset ry", "sv": "Espoon Kalevalaiset ry", "en": "Espoon Kalevalaiset ry" }, "location_extra_info": { "fi": "Kaija", "sv": "Kaija", "en": "Kaija" }, "short_description": { "fi": "Tervetuloa Espoon Kalevalaiset ry:n järjestämään kirjailijailtaan, jossa vieraana on dekkarikirjailija Helena Lehtovirta.", "sv": "Välkommen till en författarkväll arrangerad av Espoon Kalevalaiset rf, där deckarförfattaren Helena Lehtovirta är kvällens gäst.", "en": "Welcome to an author evening organized by Espoon Kalevalaiset Association, featuring crime novelist Helena Lehtovirta as the guest." }, "info_url": { "fi": "https://espoonkalevalaiset.yhdistysavain.fi/", "sv": "https://espoonkalevalaiset.yhdistysavain.fi/", "en": "https://espoonkalevalaiset.yhdistysavain.fi/" }, "description": { "fi": "<p>Tervetuloa Espoon Kalevalaiset ry:n järjestämään kirjailijailtaan, jossa vieraana on dekkarikirjailija Helena Lehtovirta.</p><p>Helena Lehtovirran esikoisdekkari ’Koskaan et voi tietää’ (Docendo Crime Time) ilmestyi helmikuussa 2025. Maaliskuussa 2025 kirja oli Kirjakauppaliiton kokoamalla myydyimmän kotimaisen kaunokirjallisuuden TOP-10 -listalla.</p><p>Helena on syntyperäinen espoolainen, joka on asunut eri puolilla Espoota: Kivenlahdessa, Tillinmäessä, Tapiolassa, Otaniemessä, Kilossa, Perkkaalla ja Lintuvaarassa. Tätä taustaa vasten onkin luonnollista, että kirjan tapahtumat sijoittuvat juuri Espooseen.</p><p>Koulutukseltaan Helena on juristi. Hän on tehnyt pitkän työuran henkilöstöhallinnon ja juridiikan tehtävissä mm. Teknillisessä korkeakoulussa, Ulkopoliittisessa instituutissa sekä eduskunnassa.</p>", "sv": "<p>Välkommen till en författarkväll arrangerad av Espoon Kalevalaiset rf, där deckarförfattaren Helena Lehtovirta är kvällens gäst.</p>", "en": "<p>Welcome to an author evening organized by Espoon Kalevalaiset Association, featuring crime novelist Helena Lehtovirta as the guest.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z62om/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65811", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 404314, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-25T15:13:53.473787Z", "last_modified_time": "2025-03-25T15:13:53.473805Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767259.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/404314/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-25T15:13:53.444591Z", "last_modified_time": "2025-08-13T15:13:49.259362Z", "date_published": null, "start_time": "2025-08-16T09:00:00Z", "end_time": "2025-08-16T14: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": "Lasten lauantai: Vatsastapuhuja Sari Aalto, Tuubakimalainen, poneja ja työpajoja – Malmin tapahtumakesä", "sv": "Buktalare Sari Aalto, Tuubakimalainen, ponnyer och verkstäder – Malms evenemangssommar", "en": "Ventriloquist Sari Aalto, Tuubakimalainen, ponies and workshops – Malmi Summer of Events" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tapahtumakesän lasten lauantai on täynnä riemastuttavaa touhua koko perheelle!", "sv": "Barnens lördag under evenemangssommaren är full av spännande aktiviteter för hela familjen!", "en": "The children’s Saturday of the Summer of Events is full of delightful activities for the entire family!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/46F74373E37ED07C86A72F7784B3995F/Lasten_lauantai_Vatsastapuhuja_Sari_Aalto_Tuubakimalainen_poneja_ja_tyopajoja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/46F74373E37ED07C86A72F7784B3995F/Buktalare_Sari_Aalto_Tuubakimalainen_ponnyer_och_verkstader", "en": "http://www.malmitalo.fi/en/events/event/46F74373E37ED07C86A72F7784B3995F/Ventriloquist_Sari_Aalto_Tuubakimalainen_ponies_and_workshops" }, "description": { "fi": "<p>Tapahtumakesän lasten lauantai on täynnä riemastuttavaa touhua koko perheelle!</p><p>Luvassa on Suomen suosituin vatsastapuhuja Sari Aalto puhuvien eläinten kanssa, lastenkonsertti Tuubakimalaiselta, eläinnaamareiden tekoa ja puhutaan Peikkoa -työpaja. Päivän aikana mietitään myös eläinten kannalta, kuinka Longinojan puistikkoa tulisi kehittää.</p><p><b>Aikataulu</b><br>11–15 Malmin seurakunta: Liikunnallinen toimintarata<br>12.30–15 Ponihaka: Ponitalutusta<br>13–15 Kirjasto: Eläinnaamari-työpaja<br>13–16 Malmin tuulenkävijät esittelevät toimintaansa<br>13.30, 14.30 ja 15.45 Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja<br>14–16.15 Pohjois-Helsingin kuvataidekoulu: Katuliidut eläinteemalla<br>14–14.30 Vatsastapuhuja Sari Aalto<br>14–16 Forum Virium: Toislajisten neuvosto<br>15–15.45 Tuubakimalainen</p><p><b>klo 11–15 Malmin seurakunta: Liikunnallinen toimintarata</b><br>Malmin seurakunta tarjoaa liikunnallisen toimintaradan, luontopisteen ja elokuista askartelua. Sijainti: Tapahtumakesän viheralue</p><p><b>klo 13.30, 14.30 ja 15.45 <br>Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja</b><br>Tutkija Into Metsämieli on laatimassa tutkijakollegoidensa ja Peikko Sammaleisen kanssa opaskirjaa peikkokielen alkeista. Avukseen tutkimusryhmä tarvitsee lapsia, sillä lapset osaavat peikkokieltä usein luontaisesti paremmin kuin aiheeseen perehtyneet tutkijat. Tule puhumaan peikkoa! <br>Työpajan kesto: Noin 15–20 min.<br>Kieli: suomi</p><p><b>klo 14-16<br>Forum Virium Helsinki: Toislajisten neuvosto</b><br>Toislajisten neuvostossa eri eläinlajien edustajat kokoontuvat pohtimaan kuinka Longinojan puistoa tulisi kehittää, ja minne puita pitäisi saada lisää. Neuvostossa eläydytään vaikka sorsan, sammakon tai oravan rooliin ja mietitään miten eläimet voivat auttaa toisiaan, ratkaista ongelmia ja tehdä puistosta paremman paikan kaikille!<br>Kieli: suomi</p><p><b>klo 14-16.15 Pohjois-Helsingin kuvataidekoulu: Eläinten kesäloma-katuliitutyöpaja</b><br>Tule mukaan toteuttamaan katuliiduilla ryhmätaideteos Ala-Malmin puistoon, aiheena ”Eläinten kesäloma”</p><p><b>klo 14.00–14.30<br>Vatsastapuhuja Sari Aalto</b><br>Suomen suosituin vatsastapuhuja ja TikTok-stara Sari Aalto valloittaa hulvattoman räiskyvillä koko perheen esityksillään!</p><p>Tapahtumaesiintymisissään Sari yhdistää raikkaalla tavalla koomista vatsastapuhumista ja musiikkia. Kaiken ikäiset katsojat ihastuvat hulvattomien nukkehahmojen edesottamuksiin: Simpanssi-Anssi, Oskari Olematon ja aidon kokoinen strutsineito Lulu esittävät huulenheiton lisäksi näyttäviä taikatemppuja ja meneviä musiikkinumeroita. Hulvattomassa avustajanumerossa Sari muuttaa yleisöstä valitsemansa avustajan eläväksi vatsastapuhujannuksekseen. Sarin ohjelmistossa kolme erilaista 20 minuutin mittaista naurupommia. Sari räätälöi esityksen aina tapahtuman luonteeseen sopivaksi.</p><p>Esitysten jälkeen Sari pitää mielellään Meet & Greetejä, jolloin lapset pääsevät tapaamaan somestaran henkilökohtaisesti, ja saavat muistoksi fanikortin tai kaverikuvan.</p><p><b>klo 15.00–15.45<br>Tuubakimalainen</b><br>Tuubakimalainen on yli 3000 lastenkonsertin yhtye, joka konsertoi kautta maan. Suosion salaisuus on se, että näissä konserteissa saa osallistua ja nauraa mukana. Odotettavissa on tuttuja juttuja ja pientä hauskaa suurella soittimella kaiken ikäisille.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Barnens lördag under evenemangssommaren är full av spännande aktiviteter för hela familjen!</p><p>Finlands populäraste buktalare Sari Aalto med de talande djur utlovas, samt en barnkonsert av Tuubakimalainen och verkstäder där vi skapar djurmasker och talar troll. Under dagen funderar vi också hur Stickelbackaparken ska utvecklas med tanke på djuren.</p><p><b>Tidtabell</b><br>11.00–15.00 Malms församling: Motionsbana<br>12.30–15 Ponihaka: Ponnyridning<br>13–15 Biblioteket: Djurmask-verkstad<br>13.30, 14.30 och 15.45 Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll<br>14–14.30 Buktalare Sari Aalto<br>14–16 Forum Virium: Rådet för sekundära arter<br>15–15.45 Tuubakimalainen</p><p><b>kl. 11.00–15.00 Malms församling: Motionsbana</b><br>Malms församling ordnar en motionsbana, en naturpunkt och augustipyssel.<br>Plats: Grönområde</p><p><b>kl. 13.30, 14.30 och 15.45<br>Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll</b><br>Forskaren Into Metsämieli håller tillsammans med sina forskarkolleger och Peikko Sammaleinen på att utarbeta en handbok om grunderna i trollspråk. Forskningsgruppen behöver barn, eftersom barnen på ett naturligt sätt ofta kan trollspråket bättre än forskare som är insatta i ämnet. Kom och tala troll!<br>Verkstadens längd: Cirka 15–20 min.<br>Språk: finska</p><p><b>kl. 14–16<br>Forum Virium Helsinki: Rådet för sekundära arter</b><br>I rådet för sekundära arter samlas representanter för olika djurarter för att fundera på hur Stickelbackaparken borde utvecklas och var man borde plantera fler träd. I rådet lever man sig in i rollen som en and, groda eller ekorre och funderar på hur djuren kan hjälpa varandra, lösa problem och göra parken till en bättre plats för alla!<br>Språk: finska</p><p><b>kl. 14–14.30<br>Buktalare Sari Aalto</b><br>Finlands populäraste buktalare och TikTok-stjärna Sari Aalto erövrar scenen med sin fantastiska uppsluppna föreställning för hela familjen!</p><p>I sina evenemangsframträdanden kombinerar Sari komiskt buktalande och musik på ett fräscht sätt. Åskådare i alla åldrar blir förtjusta i de roliga dockfigurers förehavanden: Schimpans-Anssi, Oskari Olematon och strutsfröken Lulu i äkta storlek framför förutom vitsmakeri även spektakulära trollkonster och fartfyllda musiknummer. I det roliga assistentnumret förvandlar Sari den assistent hon valt från publiken till en levande buktalare. Sari har tre olika 20 minuter långa skrattbomber i sin repertoar. Sari skräddarsyr alltid föreställningen så att den passar evenemangets karaktär.</p><p>Efter föreställningarna har Sari gärna Meet & Greet, där barnen får träffa stjärnan på sociala medier personligen och får ett fankort eller en kompisbild som minne.</p><p><b>kl. 15–15.45<br>Tuubakimalainen</b><br>Tuubakimalainen är en grupp som uppträtt på över 3 000 barnkonserter i hela landet. Hemligheten bakom populariteten är att man får delta och skratta i dessa konserter. Man kan förvänta sig bekanta saker och lite roligt med det stora instrumentet för personer i alla åldrar.</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>The children’s Saturday of the Summer of Events is full of delightful activities for the entire family!</p><p>Get ready for the most popular ventriloquist in Finland, Sari Aalto and her talking animals, a children’s concert by Tuubakimalainen, an animal mask workshop and the ‘Puhutaan peikkoa’ (let’s speak goblin) workshop. The day also includes a discussion on how animals would like Longinoja Park to be developed.</p><p><b>Programme</b><br>11–15 Malmi Parish: Physical activity track<br>12.30–15.00 Ponihaka: Pony walking<br>13.30, 14.30 and 15.45 Single Parents’ Association/Grandma’s: Puhutaan peikkoa (let’s speak goblin) workshop<br>14.00–14.30 Ventriloquist Sari Aalto<br>15.00–15.45 Tuubakimalainen<br>13.00–15.00 Library: Animal mask workshop<br>14.00–16.00 Forum Virium: Toislajisten neuvosto (Council of other species)</p><p><b>11.00–15.00 <br>Malmi Parish: Physical activity track</b><br>Malmi Parish offers a physical activity track, a nature point, and August-themed crafts.<br>Location: Green area</p><p><b>13.30, 14.30 and 15.45<br>Single Parents’ Association/Grandma’s: Puhutaan peikkoa (let’s speak goblin) workshop</b><br>Researcher Into Metsämieli is drafting a guidebook on the basics of goblin language with her colleagues and goblin Peikko Sammaleinen. The research group needs children to help them, because children often have a natural ability to speak the goblin language better than researches who have devoted their lives to the topic. Come and speak goblin!<br>Workshop duration: Approximately 15–20 min.<br>Language: Finnish</p><p><b>14.00–16.00<br>Forum Virium Helsinki Toislajisten neuvosto (Council of other species)</b><br>In the council of other species, representatives for different animal species come together to discuss how Longinoja Park should be developed and where trees should be planted. The council looks at things through the perspective of a duck, frog or squirrel and discusses how animals can help each other, solve problems and make the park a better place for everyone!<br>Language: Finnish</p><p><b>14.00–14.30<br>Ventriloquist Sari Aalto</b><br>The most popular ventriloquist in Finland and TikTok star Sari Aalto will entertain the audience with her hilarious performances for the entire family!</p><p>In her event performances, Sari delivers a fresh combination of comical ventriloquism and music. The antics of the hilarious puppet characters will enchant audience members of all ages: Simpanssi-Anssi, Oskari Olematon and the life-size ostrich Lulu will perform impressive magic tricks and groovy musical numbers in addition to engaging in banter. In the hilarious assistant number, Sari will turn a volunteer assistant from the audience into a living ventriloquist doll. Sari’s repertoire contains three different 20-minute laugh fests. Sari will customise the performance to the vibe of the event.</p><p>After the show, Sari will be happy to attend a meet & greet and provide children with the chance to meet the social media star in person and have a fan card or selfie as a memento.</p><p><b>15.00–15.45<br>Tuubakimalainen</b><br>Tuubakimalainen has played more than 3,000 concerts for children throughout Finland. The group’s popularity is based on participation and laughter. The audience is in for familiar activities and small surprises with a big instrument for people of all ages.</p><p>Entry to the events is free of charge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65811/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66848", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1476539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-13T13:14:15.524543Z", "last_modified_time": "2025-08-13T13:14:15.524559Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775416.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1476539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-13T13:14:15.375231Z", "last_modified_time": "2025-08-13T13:14:15.693367Z", "date_published": null, "start_time": "2025-11-08", "end_time": "2025-12-31", "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": "Taiteilijat O: Kun aika on – kuolemaan, hautaukseen ja muistotilaisuuksiin liittyvää taidetta", "sv": "Taiteilijat O: När tiden är kommen – konst i anslutning till död, begravning och minnesstunder", "en": "Taiteilijat O: Kun aika on (When it’s time) – art related to death, burials and memorial services" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kun aika on -näyttely pyrkii haastamaan vakiintuneita käsityksiämme kuoleman visuaalisesta tapakulttuurista.", "sv": "Utställningen När tiden är kommen strävar efter att utmana våra sedvanliga uppfattningar om dödens visuella seder och bruk.", "en": "The Kun aika on (When it’s time) exhibition aims to challenge our established views of the visual culture of death." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6D84206B889CA1ED9DD7919A85E6C5BB/Taiteilijat_O_Kun_aika_on", "sv": "http://www.stoa.fi/sv/evenemang/event/6D84206B889CA1ED9DD7919A85E6C5BB/Taiteilijat_O_Nar_tiden_ar_kommen", "en": "http://www.stoa.fi/en/events/event/6D84206B889CA1ED9DD7919A85E6C5BB/Taiteilijat_O_Kun_aika_on_When_it_s_time_" }, "description": { "fi": "<p>Kun aika on -näyttely pyrkii haastamaan vakiintuneita käsityksiämme kuoleman visuaalisesta tapakulttuurista.</p><p>Tämä pitää sisällään yhteiskunnan viimeaikaiset muutokset, kuten monikulttuurisuuden sekä arvojen ja elämänkatsomusten monimuotoistumisen. Näyttelyn teemaa ei ole sidottu tiettyyn uskontokuntaan tai kulttuuriin. Taiteen kautta voidaan avata keskusteluväylä uudentyyppiseen kuoleman ja hautajaisten käsittelyyn sekä vainajan muistamiseen ja kunnioittamiseen, olipa kysymys sitten tunnustuksettomuudesta, uskonno(i)sta tai vaikkapa menninkäisiin ja enkeleihin uskomisesta. <br> <br>Näyttelyn kuraattori <b>Petri Kaverma</b>(KuT) pyrkii luomaan vuoropuhelua teosten ja erilaisten ympäristöjen välillä. Kaverma väitteli kuvataiteen tohtoriksi vuonna 2012. Kriittisen designin alueelle sijoittuvassa postdoc-tutkimuksessaan hän on käsitellyt kuoleman kulttuurisia ja visuaalisia näkökohtia sekä pyrkinyt löytämään uusia ratkaisuja yleisön kohtaamiseen.<br> <br><b>Taiteilijat</b><br>Synnove Dickhof | Riitta Forsman | Sirpa Hannele Heinonen | Soile Hovila | Hanna van Ingen | Minja Kolehmainen | Mirja Marsch | Eeva Mäkinen | Leena Mäki-Patola | Harri Piispanen | Tuulikki Päällysaho | Piia Rossi | Eeva Rönkä | Anna-Mari Vierikko | Mervi Vuolas<br> <br>Näyttelyn ohessa järjestetään sen nimeä kantava minifestivaali, työpajoja sekä taiteilijatapaamisia. Näyttelyn ja sen oheisohjelman tuotannosta vastaa materiaalipohjaista nykytaidetta edistävä Taiteilijat O ry.</p><p>Avajaiset Stoan galleriassa 7.11. klo 17–19, tervetuloa!</p><p>Vapaa pääsy</p>", "sv": "<p>Utställningen När tiden är kommen strävar efter att utmana våra sedvanliga uppfattningar om dödens visuella seder och bruk.</p><p>Detta omfattar samhällets senaste förändringar, så som den kulturella mångfalden samt mångfalden av värden och livsåskådningen. Temat för utställningen är inte bundet till en viss religion eller kultur. Med hjälp av konst kan man öppna ett diskussionsled för en ny typ av hantering av död och begravning samt ihågkommande och hedrande av den avlidne, vare sig det är fråga om konfessionslöshet, religioner eller förslagsvis tro på vättar och änglar. <br> <br>Utställningens kurator <b>Petri Kaverma</b>(KuT) strävar efter att skapa en dialog mellan verken och de olika miljöerna. Kaverma disputerade till doktor i bildkonst 2012. I sin postdoc-forskning inom kritisk design har han hanterat kulturella och visuella synpunkter om döden samt strävat efter att finna nya lösningar för att möta publiken.<br> <br><b>Konstnärer:</b><br>Synnove Dickhof | Riitta Forsman | Sirpa Hannele Heinonen | Soile Hovila | Hanna van Ingen | Minja Kolehmainen | Mirja Marsch | Eeva Mäkinen | Leena Mäki-Patola | Harri Piispanen | Tuulikki Päällysaho | Piia Rossi | Eeva Rönkä | Anna-Mari Vierikko | Mervi Vuolas<br> <br>Vid sidan av utställningen ordnas en minifestival som bär dess namn, verkstäder och konstnärsmöten. Taiteilijat O ry, som främjar materialbaserad nutida konst, ansvarar för utställningen och dess sidoprogram.</p><p>Öppningsceremonin i Stoas galleri 7.11 kl. 17–19, välkommen!</p><p>Fritt inträde</p>", "en": "<p>The Kun aika on (When it’s time) exhibition aims to challenge our established views of the visual culture of death.</p><p>This includes the recent changes in society, such as multiculturalism and the diversification of values and beliefs. The theme of the exhibition is not tied to a particular religion or culture. Through art, we can open a new channel for discussing death and funerals and remembering and honouring the deceased, regardless of questions of non-denomination, religion(s) or even belief in goblins and angels. <br> <br>The curator of the exhibition, <b>Petri Kaverma</b> (DFA), aims to foster a dialogue between the pieces and the different environments. Kaverma received his PhD in fine arts in 2012. In his post-doctoral research in the field of critical design, he has explored the cultural and visual aspects of death and sought to find new solutions to encountering his audience.<br> <br><b>Artists:</b><br>Synnove Dickhof | Riitta Forsman | Sirpa Hannele Heinonen | Soile Hovila | Hanna van Ingen | Minja Kolehmainen | Mirja Marsch | Eeva Mäkinen | Leena Mäki-Patola | Harri Piispanen | Tuulikki Päällysaho | Piia Rossi | Eeva Rönkä | Anna-Mari Vierikko | Mervi Vuolas<br> <br>The exhibition will be held together with a mini-festival of the same name, workshops and artist meetings. The exhibition and its accompanying programme are produced by Taiteilijat O, an association promoting material-based contemporary art.</p><p>Opening ceremony in Stoa Gallery on 7 November at 17:00–19:00, welcome!</p><p>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66848/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z624m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z65ea/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T12:24:39.739703Z", "last_modified_time": "2025-08-13T12:24:39.739720Z", "date_published": null, "start_time": "2025-12-01T11:00:00Z", "end_time": "2025-12-01T12:15: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": "Välkky Hiirisuon asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkkyhttps://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:00 - 14:15</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z624m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z63om", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z65ea/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T12:24:39.632328Z", "last_modified_time": "2025-08-13T12:24:39.632344Z", "date_published": null, "start_time": "2025-11-03T11:00:00Z", "end_time": "2025-11-03T12:15: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": "Välkky Hiirisuon asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkkyhttps://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:00 - 14:15</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z63om/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z64au", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z65ea/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T12:24:39.352185Z", "last_modified_time": "2025-08-13T12:24:39.352201Z", "date_published": null, "start_time": "2025-10-06T10:00:00Z", "end_time": "2025-10-06T11:15: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": "Välkky Hiirisuon asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkkyhttps://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:00 - 14:15</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z64au/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk2z64sy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z65ea/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490099, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-13T12:13:56.085264Z", "last_modified_time": "2025-08-13T12:42:13.026623Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0e510b50-36be-48e6-a674-df8f5ce66944.jpg", "cropping": "315,0,1125,810", "photographer_name": "Joni Luumi", "alt_text": "Kirjastoauto Välkky ilta-auringossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490099/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-08-13T12:24:39.134349Z", "last_modified_time": "2025-08-13T12:24:39.134365Z", "date_published": null, "start_time": "2025-09-08T10:00:00Z", "end_time": "2025-09-08T11:15: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": "Välkky Hiirisuon asukaspuistossa", "sv": "Välkky på rutten", "en": "Välkky on the route" }, "provider_contact_info": null, "provider": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "info_url": { "fi": "http://www.espoo.fi/kirjastoauto", "sv": "https://www.espoo.fi/sv/kultur-och-fritid/bibliotek/esbo-stads-bok-och-kulturbuss-valkky", "en": "https://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkkyhttps://www.espoo.fi/en/culture-and-leisure/libraries/espoos-library-and-culture-bus-valkky" }, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:00 - 14:15</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>11.8.</p><p>8.9.</p><p>6.10.</p><p>3.11.</p><p>1.12.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2z64sy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 23588, "next": "