Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=12
{ "meta": { "count": 23125, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=13", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=11" }, "data": [ { "id": "espoo_le:agpwvznoca", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznfzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvzngv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznhfa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznhuy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznifa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvzniui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznjei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznjum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznkcm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznkqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznk6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznloi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznmbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznmrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznm7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznnr4/?format=api" } ], "images": [ { "id": 2385624, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-16T12:05:40.120523Z", "last_modified_time": "2026-07-16T12:05:40.120536Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/eb1f568e-918e-4448-b2f5-d88c6402f393.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Thao Nhu", "alt_text": "Neljä ihmistä keskustelee pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385624/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-16T12:13:09.742457Z", "last_modified_time": "2026-07-16T12:13:09.742749Z", "date_published": null, "start_time": "2026-09-02T15:00:00Z", "end_time": "2026-12-16T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Englanninkielinen keskusteluryhmä", "sv": "Engelskspråkig diskussionsgrupp", "en": "English Discussion Group" }, "info_url": null, "provider": { "fi": "Kirjaston vapaaehtoinen", "sv": "Biblioteksvolontär", "en": "Library volunteer" }, "description": { "fi": "<p>Englanninkielinen keskusteluryhmä on tarkoitettu niille, jotka haluavat pitää englannin kielen taitonsa ajan tasalla, keskustella kiinnostavista aiheista samanhenkisten ihmisten kanssa ja viettää aikaa rennossa ilmapiirissä.</p><p>18.11. ja 2.12. tapaamme kokoustila Koivussa.</p><p>#HelloEspoo</p>", "sv": "<p>Den engelskspråkiga diskussionsgruppen är för personer som vill hålla sina engelskkunskaper aktuella, diskutera intressanta ämnen med likasinnade och umgås i en avslappnad miljö.</p><p>Evenemanget arrangeras av en biblioteksvolontär.</p><p>Den 18.11 och 2.12 träffas vi i mötesrummet Koivu.</p><p>#HelloEspoo</p>", "en": "<p>The English discussion group is for people who want to keep their English language skills up to date, discuss interesting topics with like-minded individuals, and socialize in a relaxing environment. The only rule is that we keep the conversation in English. We meet in once per week in Tapiola library.</p><p>The event is organized by a library volunteer.</p><p>On 18 November and 2 December, we will meet in the Koivu meeting room.</p><p>#HelloEspoo</p>" }, "short_description": { "fi": "Sinulle, joka haluat pitää englannin kielen taitosi ajan tasalla, keskustella kiinnostavista aiheista ja viettää aikaa rennossa ilmapiirissä.", "sv": "Håll dina engelskkunskaper aktuella, diskutera intressanta ämnen med likasinnade och umgås i en avslappnad miljö.", "en": "Keep your English language skills up to date, discuss interesting topics with like-minded individuals, and socialise in a relaxing environment." }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwvznoca/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69614", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385598, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-10T11:15:18.753121Z", "last_modified_time": "2026-07-10T11:15:18.753138Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791125.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385598/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-10T11:15:18.617044Z", "last_modified_time": "2026-07-16T10:14:29.520171Z", "date_published": null, "start_time": "2026-11-28T13:00:00Z", "end_time": "2026-11-28T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tanssiteatteri Tsuumi & Kulttuurikomppania Eloa: Arvo – Baltic Circle", "sv": "Tanssiteatteri Tsuumi & Kulttuurikomppania Eloa: Arvo – Baltic Circle", "en": "Tsuumi Dance Theatre & Eloa Culture Company: Arvo – Baltic Circle" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/8E84D1850CB0E9D5D0D1E4ACE562EDF9/Tanssiteatteri_Tsuumi_Kulttuurikomppania_Eloa_Arvo", "sv": "http://www.stoa.fi/sv/evenemang/event/8E84D1850CB0E9D5D0D1E4ACE562EDF9/Tanssiteatteri_Tsuumi_Kulttuurikomppania_Eloa_Arvo", "en": "http://www.stoa.fi/en/events/event/8E84D1850CB0E9D5D0D1E4ACE562EDF9/Tsuumi_Dance_Theatre_Eloa_Culture_Company_Arvo" }, "provider": null, "description": { "fi": "<p>Koreografi ja taiteilija Sonja Jokiniemen uusi näyttämöteos tutkii karjalaista itkuvirsiperinnettä ja itkun ruumiillista kokemusta nykytaiteen kontekstissa.</p><p><i>Kun jotain suurta on poissa</i></p><p>Karjalaisessa perinteessä siirtymäriitit, surun käsittely ja yhteisö kulkivat käsi kädessä. Arkinen ja pyhä elivät lähellä toisiaan. <i>Arvo</i>-teos on taiteellinen kunnianosoitus menetetyille perinteille, käsillä tekemiselle ja ruumiin työlle. Teos syntyy katkonaisen perinnön sirpaleista ja kurottaa kohti kulttuurisia haamuja sekä itkijöiden väkevyyttä ja henkistä voimaa.</p><p>Tanssiteatteri Tsuumin ja Kulttuurikomppania Eloan näyttämölle tuoma <i>Arvo</i> on toinen osa Sonja Jokiniemen karjalaista kulttuuriperimää ja surua käsittelevää trilogiaa. Sarjan ensimmäinen osa <i>Armo</i> käsitteli kuolemaa, sanattomia tarinoita ja juurettomuuden kokemusta. Trilogian toinen osa keskittyy itkemisen ruumiillisuuteen, yhteisölliseen suremiseen ja ylisukupolviseen tietoon.</p><p><b>Koreografia, taideteokset, teoksen lähtökohdat</b>: Sonja Jokiniemi<br><b>Taiteellinen työryhmä</b> (täydentyy): Reetta-Kaisa Iles, Tuomas Juntunen, Salla Korja, Leila Kourkia, Herman Nyby, Eetu Vekki <br><b>Tuotanto</b>: Tanssiteatteri Tsuumi, Kulttuurikomppania Eloa<br><b>Yhteistyössä</b>: Stoa, Baltic Circle</p><p>Tuotantoa tukee Uudet Klassikot -rahasto. Tanssiteatteri Tsuumin toimintaa tukevat Opetus- ja kulttuuriministeriö sekä Helsingin kaupunki. Kulttuurikomppania Eloan toimintaa tukevat Taide- ja kulttuurivirasto sekä Helsingin kaupunki.</p><p>Teos on osa Baltic Circle -teatterifestivaalin ohjelmistoa.</p><p>Liput tulevat myyntiin syksyn aikana osoitteessa lippu.fi.</p>" }, "short_description": { "fi": "Koreografi ja taiteilija Sonja Jokiniemen uusi näyttämöteos tutkii karjalaista itkuvirsiperinnettä ja itkun ruumiillista kokemusta nykytaiteen kontekstissa." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69614/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpg5cvy3m", "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:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvvki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvvwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvwc4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvwpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvw4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvxji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvxvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvyda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvypm/?format=api" } ], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "name": "", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-28T11:35:39.419585Z", "last_modified_time": "2026-07-16T10:03:26.343782Z", "date_published": null, "start_time": "2026-06-03T11:30:00Z", "end_time": "2026-07-29T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "provider": { "fi": "Konsernihallinto" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpg5cvy3m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwu5sgse", "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:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5ru34/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rvoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rv24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rwhy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rwtm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rw6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rxkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rxxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5ryd4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5ryqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5ry5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rzji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5rzvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r2ci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r2r4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r27e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r3lu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r32q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r4ia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r4wa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r5ca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r5p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r54y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r6j4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r6zu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r7h4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5r7zm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sagq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5saua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sa7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sbla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sbwm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sccq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5scqm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sc5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sdiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sdue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sd7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5semi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5seye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sfem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sfp4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sf3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sggy/?format=api" } ], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "name": "", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-16T10:01:04.389910Z", "last_modified_time": "2026-07-16T10:01:04.389927Z", "date_published": null, "start_time": "2026-08-03T11:30:00Z", "end_time": "2026-12-30T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "provider": { "fi": "Konsernihallinto" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sgse/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwu5stmm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sg5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5shle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5shxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5siee/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sipy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5si3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sjgq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sjrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sj4u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5skia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5skum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sk7u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5slkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5slwa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5smcm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5smqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sm5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5snky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5snxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5soey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sori/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5so5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5spjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5spvm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sqby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sqnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sqze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sreu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5srri/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sr5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5ssjm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5ssvu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5stba/?format=api" } ], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "name": "", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-16T09:56:02.453828Z", "last_modified_time": "2026-07-16T09:56:02.453850Z", "date_published": null, "start_time": "2026-09-01T11:30:00Z", "end_time": "2026-12-29T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkuva Espoo-info Sellon kirjasto", "sv": "Mobila Esbo-info Sellobiblioteket", "en": "Mobile Espoo Info Sello Library" }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "provider": { "fi": "Konsernihallinto" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5stmm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwu5s3j4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "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:koha", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5stza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sugi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sur4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5su6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5svj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5svv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5swbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5swnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5swzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sxey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sxqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sx6y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5syki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5syw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5szda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5szoq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5sz2m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5s2fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5s2ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5s25q/?format=api" } ], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "name": "", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-16T09:50:02.491364Z", "last_modified_time": "2026-07-16T09:50:02.491386Z", "date_published": null, "start_time": "2026-08-06T10:30:00Z", "end_time": "2026-12-31T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkuva Espoo-info Entressen kirjasto", "sv": "Mobila Esbo-info Entressebiblioteket", "en": "Mobile Espoo Info Entresse Library" }, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "provider": { "fi": "Konsernihallinto" }, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwu5s3j4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwup7yha", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" } ], "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:agpwup7ofe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7o5y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7prm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7qci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7qry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7q6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7rle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7rx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7sfm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7svy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7tge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7ttq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7uea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7uru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7u7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7vpq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7v5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7wnq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7w54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7xl4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7xza/?format=api" } ], "images": [ { "id": 2201346, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-20T13:18:07.561885Z", "last_modified_time": "2026-05-20T13:18:07.561901Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2bda464c-b78b-4372-8e84-e54b413e0617.jpg", "name": "Tule tapaamaan muita nuoria!", "cropping": "184,0,896,713", "photographer_name": "ai", "alt_text": "Nuoret hyppäävät ilmaan.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201346/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-16T08:43:35.361111Z", "last_modified_time": "2026-07-16T08:43:35.361136Z", "date_published": null, "start_time": "2026-08-28T13:00:00Z", "end_time": "2027-01-29T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Nuortenilta" }, "info_url": null, "provider": null, "description": { "fi": "<p>Perjantaisin klo 16-19.30 Messissä on nuortenilta. Päästäksesi nauttimaan isompien illasta, sinun pitää olla 7. luokkalainen tai sitä vanhempi. Luvassa hyviä keskusteluita, pelaamista ja ohjelmaa toiveiden mukaan. </p>" }, "short_description": { "fi": "Mukavaa ohjelmaa 7. luokkalaisille ja sitä vanhemmille" }, "provider_contact_info": null, "location_extra_info": { "fi": "Messi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7yha/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwup7yue", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api" } ], "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": 2201346, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-05-20T13:18:07.561885Z", "last_modified_time": "2026-05-20T13:18:07.561901Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/2bda464c-b78b-4372-8e84-e54b413e0617.jpg", "name": "Tule tapaamaan muita nuoria!", "cropping": "184,0,896,713", "photographer_name": "ai", "alt_text": "Nuoret hyppäävät ilmaan.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201346/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-16T08:32:42.664119Z", "last_modified_time": "2026-07-16T08:32:42.664135Z", "date_published": null, "start_time": "2026-08-18T13:00:00Z", "end_time": "2026-08-18T16: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": "Nuortenilta" }, "info_url": null, "provider": null, "description": { "fi": "<p>Tiistaisin klo 16-19.30 Messissä on nuortenilta. Päästäksesi nauttimaan isompien illasta, sinun pitää olla 7. luokkalainen tai sitä vanhempi. Huomio! Seiskalle siirtyvät ovat tervetulleita jo kesällä. Luvassa hyviä keskusteluita, pelaamista ja ohjelmaa toiveiden mukaan.</p>" }, "short_description": { "fi": "Mukavaa ohjelmaa 7. luokkalaisille ja sitä vanhemmille" }, "provider_contact_info": null, "location_extra_info": { "fi": "Messi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwup7yue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69264", "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:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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:p6529/?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": 2384986, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-08T12:13:48.883324Z", "last_modified_time": "2026-06-08T12:13:48.883339Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793675.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384986/?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": "2026-06-08T12:13:48.764016Z", "last_modified_time": "2026-07-16T08:14:20.654274Z", "date_published": null, "start_time": "2026-08-19T07:30:00Z", "end_time": "2026-08-19T08: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": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille", "sv": "Teatteri Qo: Niitty – För grupper inom småbarnspedagogik", "en": "Teatteri Qo: Niitty – For early childhood education groups" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty", "sv": "http://www.stoa.fi/sv/evenemang/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty", "en": "http://www.stoa.fi/en/events/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty" }, "provider": null, "description": { "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>", "sv": "<p>Gör en djupdykning i olika nyanser av grönt och blomningens lätthet!</p><p>Niitty (Ängen) är en föreställning om växter, tillväxt, individualitet och samarbete. Niitty är ett sätt att se på världen ur växternas synvinkel. Niitty låter åskådarna lära känna vilda växter med hjälp av dockteater, medan den samtidigt lämnar rum för de små och stora åskådarnas egen fantasi och observationer. Välkommen att se hur ängen ljuder och blomstrar!</p><p>Åldersrekommendation: 4 år och äldre <br>Längd: ca 30 min. <br>Språk: finska</p><p>Visuell design och genomförande, manus och framträdande: Anna Uschanov <br>Regi: Perrine Ferrafiat <br>Ljuddesign och musiker: Salla Markkanen <br>Ljusdesign: Sisu Nojonen</p><p><b>Biljetter och anmälan:</b></p><p>Förmiddagsföreställningarna onsdagen den 19 augusti kl. 9.15 och 10.30 hålls för grupper inom småbarnspedagogiken. <a href=\"https://kultus.hel.fi/sv/search?places=tprek%3A7259\"><u>Du kan anmäla din grupp på kultus.hel.fi från och med den 3 augusti kl. 10.</u></a></p><p>På Konstens natt, torsdagen den 20 augusti, firas Elojuhla på Stoa. Gratisbiljetter till föreställningar av Ängen kl. 17.00 och 18.00 under Elojuhla delas ut från kl. 16 i Stoas entréhall – hämta din biljett i god tid!</p>", "en": "<p>Come and dive into different shades of green and the lightness of blooming!</p><p>Niitty (‘Meadow’) is a performance about plants, growth, individuality and cooperation. It gives you an opportunity to look at the world from the perspective of plants for a moment. The performance teaches the audience about natural plants through puppet theatre, leaving room for the imaginative paths and observations of both young and old viewers. Come see how the meadow rings and flourishes!</p><p>Recommended age: 4 and above <br>Duration: roughly 30 min <br>Language: Finnish</p><p>Visual design & implementation, script & performance: Anna Uschanov <br>Direction: Perrine Ferrafiat <br>Sound design and music performance: Salla Markkanen <br>Lighting design: Sisu Nojonen</p><p><b>Tickets and registration:</b></p><p>The performances on Wednesday 19 August at 9.15 and 10.30 are for early childhood education groups. <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7259\"><u>You can sign up your group at kultus.hel.fi from 3 August at 10.00 onwards</u></a></p><p>On the Night of the Arts, Thursday 20 August, Stoa holds its Elojuhla August festival. Free tickets for the Niitty (‘Meadow’) performances at 17.00 and 18.00 at the Elojuhla festival are available from 16.00 onwards in the Stoa lobby – be sure to pick yours up in good time!</p>" }, "short_description": { "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!", "sv": "Gör en djupdykning i olika nyanser av grönt och blomningens lätthet!", "en": "Come and dive into different shades of green and the lightness of blooming!" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69264/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhtjsu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:28401/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65re/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65yq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz677i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?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:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824130, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-19T11:05:00.919104Z", "last_modified_time": "2025-09-19T11:05:00.919119Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/c93a50ea-97a3-4711-9343-68c4c782475a.jpg", "name": "", "cropping": "419,0,1500,1081", "photographer_name": "Laura / Espoon kaupunginkirjasto", "alt_text": "Kirjastoauto Välkky puiden siimeksessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824130/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agozxhq6vm/?format=api" } ], "created_time": "2026-04-07T08:39:22.266508Z", "last_modified_time": "2026-07-16T07:09:07.807893Z", "date_published": "2026-04-07T08:39:00Z", "start_time": "2026-08-01T08:00:00Z", "end_time": "2026-08-01T11: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": "Välkky Haltian retkilauantaissa", "sv": "Välkky på Haltias \"Retkilauantai\"", "en": "Välkky at Haltia’s OutdoorSaturday" }, "info_url": { "fi": "https://haltia.com/retkilauantai/", "sv": "https://haltia.com/retkilauantai/", "en": "https://haltia.com/retkilauantai/" }, "provider": { "fi": "Suomen luontokeskus Haltia", "sv": "Finlands naturcentrum Haltia", "en": "Haltia - The Finnish Nature Centre" }, "description": { "fi": "<p>Espoon kirjasto- ja kulttuuriauto Välkky päivystää Haltian edustalla Retkilauantaina kello 11–14. Mukana on luonto- ja retkeilyaiheisia kirjoja. Löydät autosta myös kuukauden teeman mukaista aineistoa!</p><p>Tervetuloa lainaamaan ja palauttamaan kirjoja, tai ihan vain lueskelemaan, tai tutustumaan vähän erilaiseen kirjastoon!</p><p>Voit lainata aineistoa Helmet-kirjastokortilla ja palauttaa kirjat mihin tahansa Helmet-kirjastoon. Jos sinulla ei ole vielä kirjastokorttia, teemme sen sinulle. Ota henkkarit mukaan.</p>", "sv": "<p>Esbos bok- och kulturbuss Välkky finns på plats framför Haltia under Retkilauantai kl. 11–14. Det finns böcker med natur- och friluftstema ombord. Du hittar också material som passar månadens tema!</p><p>Välkommen att låna och returnera böcker, läsa en stund eller bara bekanta dig med ett lite annorlunda bibliotek!</p><p>Du kan låna material med ditt Helmet-bibliotekskort och returnera böckerna till vilket Helmet-bibliotek som helst. Om du inte har ett kort ännu, gör vi ett åt dig – ta med en identitetshandling.</p>", "en": "<p>Espoo’s library and culture bus Välkky is stationed in front of Haltia on Outdoor Saturday from 11 am to 2 pm. There are nature and hiking-themed books on board. You’ll also find materials related to the monthly theme!</p><p>Welcome to borrow and return books, enjoy some reading time, or simply explore a different kind of library!</p><p>You can borrow materials with your Helmet library card and return them to any Helmet library. If you don’t have a card yet, we’ll make one for you – just bring a valid ID.</p>" }, "short_description": { "fi": "Espoon kirjasto- ja kulttuuriauto Välkky päivystää Haltian edustalla kello 11–14.", "sv": "Esbos bok- och kulturbuss Välkky finns på plats framför Haltia kl. 11–14.", "en": "Espoo’s library and culture bus Välkky is stationed in front of Haltia from 11 am to 2 pm." }, "provider_contact_info": null, "location_extra_info": { "fi": "Välkky", "sv": "Välkky", "en": "Välkky" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtjsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwl5hb3q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwl5g6a4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwl5g7bi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwl5g7x4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwl5hap4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwl5hbg4/?format=api" } ], "images": [ { "id": 2385620, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-15T12:23:41.828584Z", "last_modified_time": "2026-07-15T12:23:41.828597Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/8c252a67-2223-4199-9e31-67047f6add6e.png", "name": "", "cropping": "176,0,1238,1061", "photographer_name": "", "alt_text": "Tervetuloa lasten kesäkerhoon. Maaleja ja pensseleitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385620/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-07-15T12:23:50.696153Z", "last_modified_time": "2026-07-15T12:23:50.696170Z", "date_published": null, "start_time": "2026-07-17T10:00:00Z", "end_time": "2026-07-31T12: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": "Lasten kesäkerho", "sv": "Barnens sommarklubb ", "en": "children's summer club" }, "info_url": null, "provider": null, "description": { "fi": "<p>Tervetuloa mukaan lasten kesäkerhoon! </p><p>Kesäkerhossa on vaihtelevaa tekemistä askartelusta lukemiseen ja pelailuun kirjaston lastenosastolla tai pajassa. Kerho järjestetään maanantaisin ja perjantaisin klo 13-15 seuraavasti: 17.7., 20.7., 24.7., 27.7. ja 31.7. </p>", "sv": "<p>Välkommen med i barnens sommarklubb!</p><p>På sommarklubben ordnas varierande aktiviteter för barn, från pyssel och läsning till spel och lek på bibliotekets barnavdelning eller i pajaverkstaden. Klubben ordnas på måndagar och fredagar kl. 13–15 enligt följande:</p><p>17.7, 20.7, 24.7, 27.7 och 31.7.</p>", "en": "<p>Welcome to the Children's Summer Club!</p><p>The Summer Club offers a variety of activities for children, including crafts, reading, and games in the library's children's section or makerspace. The club meets on Mondays and Fridays from 1:00 p.m. to 3:00 p.m. on the following dates:</p><p>July 17, July 20, July 24, July 27, and July 31.</p>" }, "short_description": { "fi": "Vaihtelevaa tekemistä lapsille kirjastossa", "sv": "Varierande aktiviteter för barn på biblioteket", "en": "Various activities for children at the library" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto ja paja", "sv": "barnavdelning och pajaverkstader", "en": "children's section and makerspace" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwl5hb3q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpwlpsa6i", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprezm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprhsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprjy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprl5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprqk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprso4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlpruqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprwta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlprywu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlpr2ym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlpr4ze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlpr64q/?format=api" } ], "images": [ { "id": 2385619, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-15T11:24:26.871184Z", "last_modified_time": "2026-07-15T11:24:26.871198Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/db80c643-7e4c-4e0b-8af2-27dca15b9e9c.png", "name": "", "cropping": "304,0,956,652", "photographer_name": "", "alt_text": "Ruoka-annoksia ja Naapuriäidit kokkikerho -teksti", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385619/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-15T11:38:42.569794Z", "last_modified_time": "2026-07-15T11:38:42.569819Z", "date_published": null, "start_time": "2026-08-26T12:00:00Z", "end_time": "2026-11-25T16: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": "Naapuriäidit kokkikerho Lippulaiva", "sv": "Matlagningsklubben ”Grannskapets mammor” i Lippulaiva", "en": "Neighbourhood Mothers cooking club Lippulaiva" }, "info_url": null, "provider": null, "description": { "fi": "<p>Syksyn aikana kokoonnumme yhdessä laittamaan ruokaa, jakamaan reseptejä, tutustumaan eri kulttuureihin sekä harjoittelemaan suomen kielen puhumista rennossa ja ystävällisessä ilmapiirissä. Ruoka yhdistää ihmisiä – tule tutustumaan uusiin ystäviin ja makuihin!</p><p>Kaikki naiset ovat tervetulleita mukaan. Lapset voivat osallistua vanhempansa seurassa.</p><p>Käytetty kieli: suomi, dari, farsi</p>\nKysy lisätietoja<p>Yhteyshenkilö:</p><p>Naapuriäiti Fatemeh</p><p>Yhteyshenkilön puhelinnumero:</p><p>0466115126</p>\nAika ja päivät<p>Keskiviikkoisin klo 15.00–18.00</p><p>Elokuu:</p><p>26.8.2026</p><p>Syyskuu:</p><p>2.9.2026</p><p>9.9.2026</p><p>16.9.2026</p><p>23.9.2026</p><p>30.9.2026</p><p>Lokakuu:</p><p>7.10.2026</p><p>21.10.2026</p><p>Marraskuu:</p><p>4.11.2026</p><p>11.11.2026</p><p>18.11.2026</p><p>25.11.2026</p>\nPaikka ja osoite<p>Lippulaivan kirjaston yhteiskeittiössä</p><p>Espoonlahdenkatu 8, 02320 Espoo</p>\nOhjelma<p>Valmistamme yhdessä ruokaa tai herkkuja jokaisella tapaamiskerralla.</p><p>Tutustumme eri maiden ruokakulttuureihin.</p><p>Harjoittelemme suomen kieltä arjen keskusteluissa.</p><p>Jaamme reseptejä, kokemuksia ja tarinoita.</p><p>Voit halutessasi tuoda mukanasi oman ruokasi tai leivonnaisesi muiden maisteltavaksi.</p><p>Fasilitaattori: Naapuriäiti Fatemeh</p>\nOsallistujamäärä<p>Enintään 10 henkilöä / tapaamiskerta.</p><p>HUOM! Ilmoittautuminen on pakollinen</p><p>Ilmoittaudu mukaan soittamalla tai lähettämällä viesti Fatemehille.</p><p>Voit myös liittyä kokkikerhon WhatsApp-ryhmään:</p><p>https://chat.whatsapp.com/Lu60CAFLxII8jNpqGtejI1</p><p>Ilmoittautumisen yhteydessä kerro:</p><p>osallistujien määrä ja nimet, mahdolliset erityisruokavaliot, allergiat</p><p>Tervetuloa mukaan kokkaamaan, oppimaan suomea ja tutustumaan uusiin ihmisiin!</p><p>#helloespoo</p>", "sv": "<p>Under hela hösten kommer vi att träffas för att laga mat, dela recept, utforska olika kulturer och öva på att tala finska i en avslappnad och vänlig miljö. Mat för människor samman – kom och upptäck nya smaker, få nya vänner och njut av givande samtal.</p><p>Alla kvinnor är välkomna att delta. Barn är välkomna att delta tillsammans med en förälder eller vårdnadshavare.</p><p>Språk: finska, dari, farsi</p>\nBe om mer information<p>Kontaktperson:</p><p>Grannskapsmamma Fatemeh</p><p>Kontaktpersonens telefonnummer:</p><p>0466115126</p>\nDatum och tid<p>Onsdagar kl. 15.00–18.00</p><p>Augusti 2026</p><p>26 augusti 2026</p><p>September 2026</p><p>2 september 2026</p><p>9 september 2026</p><p>16 september 2026</p><p>23 september 2026</p><p>30 september 2026</p><p>Oktober 2026</p><p>7 oktober 2026</p><p>21 oktober 2026</p><p>November 2026</p><p>4 november 2026</p><p>11 november 2026</p><p>18 november 2026</p><p>25 november 2026</p>\nPlats<p>Lippulaiva-bibliotekets gemenskapskök</p><p>Espoonlahdenkatu 8</p><p>02320 Esbo</p><p><br></p>\nProgram<p>Vid varje tillfälle kommer vi att:</p><p>Laga mat eller tillaga läckra godsaker tillsammans.</p><p>Utforska mattraditioner och kulturer från hela världen.</p><p>Öva på att tala finska genom vardagliga samtal.</p><p>Dela recept, erfarenheter och berättelser.</p><p>Du är också välkommen att ta med en hemlagad rätt eller något bakat att dela med gruppen.</p><p><br></p><p>Ledare</p><p>Grannskapsmamma Fatemeh</p>\nGruppstorlek<p>Högst 10 deltagare per tillfälle.</p><p>Viktigt: Anmälan krävs</p><p>För att anmäla dig, ring eller skicka ett meddelande till Fatemeh.</p><p>Du kan också gå med i matlagningsklubbens WhatsApp-grupp</p><p>https://chat.whatsapp.com/Lu60CAFLxII8jNpqGtejI1</p><p><br></p><p>Vid anmälan, vänligen ange:</p><p>Namn och antal deltagare</p><p>Eventuella särskilda kostbehov</p><p>Matallergier</p><p>Vi ser fram emot att laga mat tillsammans, öva på finska och träffa nya människor. Välkomna!</p><p>#helloespoo</p>", "en": "<p>Throughout the autumn season, we will come together to cook, share recipes, explore different cultures, and practice speaking Finnish in a relaxed and friendly environment. Food brings people together – come and discover new flavors, make new friends, and enjoy meaningful conversations.</p><p>All women are welcome to participate. Children are welcome to attend with their parent or guardian.</p><p>Language: finnish, dari, farsi</p>\nAsk for more information<p>Contact person:</p><p>Neighbourhood Mother Fatemeh</p><p>Contact person’s phone number:</p><p>0466115126</p>\nDates and Time<p>Wednesdays from 3:00 PM to 6:00 PM</p><p>August 2026</p><p>26 August 2026</p><p>September 2026</p><p>2 September 2026</p><p>9 September 2026</p><p>16 September 2026</p><p>23 September 2026</p><p>30 September 2026</p><p>October 2026</p><p>7 October 2026</p><p>21 October 2026</p><p>November 2026</p><p>4 November 2026</p><p>11 November 2026</p><p>18 November 2026</p><p>25 November 2026</p>\nVenue<p>Lippulaiva Library Community Kitchen</p><p>Espoonlahdenkatu 8</p><p>02320 Espoo</p>\nProgramme<p>At each session, we will:</p><p>Cook food or prepare delicious treats together.</p><p>Explore food traditions and cultures from around the world.</p><p>Practice speaking Finnish through everyday conversations.</p><p>Share recipes, experiences, and stories.</p><p>You are also welcome to bring a homemade dish or baked treat to share with the group.</p><p>Facilitator</p><p>Neighbourhood Mother Fatemeh</p>\nGroup Size<p>Maximum 10 participants per session.</p><p>Important: Registration Required</p><p>To register, please call or send a message to Fatemeh.</p><p>You can also join the Cooking Club WhatsApp group:</p><p>https://chat.whatsapp.com/Lu60CAFLxII8jNpqGtejI1</p><p>When registering, please include:</p><p>Names and number of participants</p><p>Any special dietary requirements</p><p>Food allergies</p><p>We look forward to cooking together, practicing Finnish, and meeting new people. Welcome!</p><p>#helloespoo</p>" }, "short_description": { "fi": "Tervetuloa mukaan Naapuriäitien lämminhenkiseen kokkikerhoon!", "sv": "Välkomnande matlagningsklubben för mammor i grannskapet!", "en": "Join the warm and welcoming Neighbourhood Mothers Cooking Club!" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpwlpsa6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpv74ykrm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p4878/?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": 2385618, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-14T08:53:04.793905Z", "last_modified_time": "2026-07-14T08:53:04.793923Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/51a0e5b1-cca3-4740-9106-83f8f55c8fef.png", "name": "", "cropping": "180,0,900,720", "photographer_name": "POC-Lukupiiri", "alt_text": "piknik viltillä syömisiä, kirjoja, viherkasvi", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385618/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-14T08:56:06.469340Z", "last_modified_time": "2026-07-15T11:01:22.582449Z", "date_published": null, "start_time": "2026-08-04T11:00:00Z", "end_time": "2026-08-04T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "POC-lukupiirin kirjapiknik", "sv": "POC-läsgruppens bokpicknick", "en": "POC Book Club Book Picnic" }, "info_url": { "fi": "https://www.poc-lukupiiri.fi/" }, "provider": { "fi": "POC-lukupiiri on kirjallisuusalan toimija, jonka taustalla vaikuttavat Aracelis Correa ja Téri Zambrano. " }, "description": { "fi": "POC-lukupiirin kirjapiknik<p><strong>POC-lukupiirin kirjapiknik tiistaina 4.8.2026 klo 14-16</strong></p><p>Tervetuloa Entressen kirjastolle tutustumaan moninaiseen kirjallisuuteen kaikenikäisille!</p><p>POC-lukupiiri saapuu Entressen kirjaston edustalle jakamaan kirjavinkkejä ja viettämään kesäpäivää yhdessä lueskellen.</p><p>Kirjapiknikille on koottu POC-kirjailijoiden teoksia lapsille, nuorille ja aikuisille. Kirjoja voi lueskella tapahtumassa ja lainata kotiin kirjastokortilla. Tarjolla on myös pientä evästä.</p><p>Tapahtuma on maksuton ja ihan kaikille avoin!</p><p>Sateen sattuessa siirrymme Entressen kirjaston sisätiloihin Jukeboksin saliin.</p><p><strong>POC = People of Color =mustat ja ruskeat ihmiset</strong></p><p>POC-lukupiiri pyrkii nostamaan POC-kirjailijoiden teoksia esiin ja vaikuttamaan siihen, että saisimme nauttia monimuotoisemmasta representaatiosta kirjallisuudessa.</p>", "sv": "POC-läsgruppens bokpicknick<p><strong>POC-läsgruppens bokpicknick tisdagen den 4 augusti 2026 kl. 14–16</strong></p>", "en": "POC Book Club Book Picnic<p><strong>POC Book Club Book Picnic on Tuesday, August 4, 2026, from 2:00 to 4:00 p.m.</strong></p>" }, "short_description": { "fi": "POC-lukupiirin kirjapiknik tiistaina 4.8. klo 14-16 Tervetuloa Entressen kirjastolle tutustumaan moninaiseen kirjallisuuteen kaikenikäisille!", "sv": "POC-läsgruppens bokpicknick", "en": "POC Book Club Book Picnic" }, "provider_contact_info": null, "location_extra_info": { "fi": "Valatori (ulkona) säävarauksella Jukeboksi " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpv74ykrm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agplxe52wy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5zam/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5zom/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe5z3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52ju/?format=api" } ], "images": [ { "id": 2385112, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-06-12T10:42:48.413672Z", "last_modified_time": "2026-06-12T10:42:48.413685Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3a6a4178-a496-4c74-97e8-0ad5090d7eca.png", "name": "", "cropping": "0,60,960,1020", "photographer_name": "Espoon kaupungin kuvituskuva", "alt_text": "kuvituskuva henkilöstä lukemassa kirjastossa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385112/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-12T10:45:14.507330Z", "last_modified_time": "2026-07-15T10:59:51.907346Z", "date_published": null, "start_time": "2026-09-08T13:30:00Z", "end_time": "2026-12-01T16: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": " Selkolukupiiri", "sv": " Läsgrupp på lättförståelig finska", "en": " Easy-to-Read Book Club in Finnis" }, "info_url": null, "provider": null, "description": { "fi": "Selkolukupiiri<p><strong>Entressen kirjasto - Ryhmätyötila Aisti</strong></p><p><strong>Tiistaisin 8.9. / 6.10. / 3.11. / 1.12. klo 16:30-18.00</strong></p><p>Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.</p><p>Selkolukupiiri on avoin kaikille, mutta erityisen hyvin se sopii suomea opiskeleville maahanmuuttajille ja henkilöille, joilla on jokin lukemiseen liittyvä hidaste tai vaikeus.</p><p><br></p><p>Lukupiirin ensimmäinen kirja julkaistaan heinäkuussa.</p><p><br></p><p><br></p><p>Järjestäjänä kirjasto</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p> Läsgrupp på lättförståelig finska</p>", "en": "<p> Easy-to-Read Book Club in Finnis</p>" }, "short_description": { "fi": "Selkolukupiirissä luemme suomenkielisiä selkokirjoja ja kokoonnumme keskustelemaan luetuista kirjoista.", "sv": " Läsgrupp på lättförståelig finska", "en": " Easy-to-Read Book Club in Finnis" }, "provider_contact_info": null, "location_extra_info": { "fi": "Ryhmätyötila Aisti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agplxe52wy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68613", "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:29/?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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T06:14:43.546396Z", "last_modified_time": "2026-06-11T06:14:43.546415Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791200.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-11T06:14:43.421696Z", "last_modified_time": "2026-07-15T09:14:32.060480Z", "date_published": null, "start_time": "2026-08-20T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Stoan Elojuhla x Middle East Jam Festival – Taiteiden yö", "sv": "Stoan Elojuhla x Middle East Jam Festival – Konstens natt", "en": "Stoan Elojuhla x Middle East Jam Festival – Night of the Arts" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F13D83B4A15B5A37E9F24CCFE70BBF0C/Stoan_Elojuhla_x_Middle_East_Jam_Festival", "sv": "http://www.stoa.fi/sv/evenemang/event/F13D83B4A15B5A37E9F24CCFE70BBF0C/Stoan_Elojuhla_x_Middle_East_Jam_Festival", "en": "http://www.stoa.fi/en/events/event/F13D83B4A15B5A37E9F24CCFE70BBF0C/Stoan_Elojuhla_x_Middle_East_Jam_Festival" }, "provider": null, "description": { "fi": "<p>Middle East Jam Festival saapuu jälleen Taiteiden yönä Stoan aukiolle!</p><p>ME Jam on yhteisöllinen ja kansainvälinen musiikin, tanssin ja kulttuurin juhla, joka tuo esiin Lähi-idän ja Pohjois-Afrikan alueiden monimuotoista taidetta. Tapahtuma yhdistää live-esiintymiset, työpajat ja ruokakulttuurin kaikille avoimeksi kokonaisuudeksi.</p><p>Tapahtuma tarjoaa myös perheille sopivaa ohjelmaa ja mukaan voi tulla vain nauttimaan tunnelmasta!</p><p><b>Aukiolla:</b><br>16:00–16:45 Persians (Iran)<br>16:45–17:00 Watan tanssiryhmä (Palestiina)<br>17:00–17:40 Ezgi & Gulcan (Turkki)<br>17:40–17:50 Nubialainen tanssiryhmä (Suomi)<br>19:00–19:45 Sir1 (Iran / Kurdistan)</p><p><b>Teatterisalissa:</b><br>18:00–19:00 Middle Eastern Orchestra</p><p>Ilta huipentuu Stoan teatterisalin konserttiin, johon voit ostaa <u><a href=\"https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/\">liput osoitteessa lippu.fi</u></a>:<br>19:45–20:00 Nasha DJ & live-visuaalit<br>20:00–21:30 Saeid ja Naghib Shanbehzadeh (Iran / France)<br>21:30–21:45 Nasha DJ & live-visuaalit</p><p><b>Työpajoja klo 17–20 Stoan aukiolla:</b></p><p><i>Niitty soi! - rytmisoitinpaja </i><br>Heinissä heiluu, korsilla karkeloi. Rakennetaan kierrätys- ja luonnonmateriaaleista hauskoja soivia ötököitä. Löydä oma sointisi ja liity osaksi rytmikästä parvea. Ohjaaja: taideopettaja Jenni Vilander</p><p><i>Yhteisöllinen kasvimatto</i><br>Elojuhlan kunniaksi toteutamme yhteisen raitamaton kasveista. Rivi riviltä kasvit punoutuvat osaksi yhteistä kudelmaa, joka kertoo kesän kasvukauden tarinaa ja kuvastaa sen monimuotoisuutta. Vähitellen syntyvä teos muistuttaa luonnon runsaudesta, vuodenajan kierrosta sekä yhdessä tekemisen ja luomisen ilosta. Ohjaaja: muotoilija Tanja Valta</p><p><i>Pyrografia-työpajat</i><br>Stoan niitylle rakentunut lahopuuteos merkitsee kokoontumispaikkaa monimuotoiselle eliökunnalle. Veistos muodostuu koivunrungoista sekä taideseinän puukiekoista, joihin työpajassa polttopiirrämme erilaisia eliöiden jälkiä sekä sanoja Eliökuntalaisten manifestista (kirjoittanut Anni Kytömäki). Tule ja jätä oma jälkesi monumenttiin. Ohjaaja: taiteilija Petra Martin</p><p><i>Postikortti pölyttäjälle</i><br>Työpajassa pääset maalaamaan postikortin pölyttäjähyönteisille. Biohajoavaan maaliin ripotellaan Suomen luonnon pölyttäjäkasvien siemeniä. Lopulta kortin voi haudata maahan jolloin siitä kasvaa pieni pala kukkaniittyä! <br>Ohjaajat: Seikkailutaidekoulun Verna Kuntsi ja Satu Sipilä</p><p>Itäkeskuksen kirjaston pisteillä toimintaa kaikille ötököiden ystäville:<br><i>Runoötökkäpaja aukiolla</i>: tule pyydystämään runoötökkä ja väritä se lempiväreilläsi.<br><i>Kasvimaan rastirata</i>: kirjaston lastenosaston kasvimaaradalla selviää, missä ötökät asuvat.</p><p>Tapahtuman aikana klo 17 ja klo 18.30 Stoan musiikkisalissa nähdään Teatteri QO:n Niitty -nukketeatteriesitys. Esityksiin jaetaan vapaalippuja tapahtuman aikana. <u><a href=\"https://stoa.fi/fi/tapahtumat/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo__Niitty\">Lue lisää Niitty-esityksestä</u></a>.</p><p>Tapahtuman ohjelmaan on vapaa pääsy lukuun ottamatta Teatterisalin klo 19:45 konserttia.</p><p>Yhteistyössä ME Jam, Kulttuuriyhdistämö Interkult ja Stoa</p>", "sv": "<p>Middle East Jam Festival återvänder till Stoaplatsen på Konstens natt!</p><p>ME Jam är en gemenskaplig och internationell hyllning till musik, dans och kultur, som visar upp Mellanösterns och Nordafrikas mångfacetterade konstarter. Evenemanget kombinerar liveframträdanden, verkstäder och matkultur till en levande helhet som är öppen för alla.</p><p>Stoa bjuder på färgstarkt kvällsprogram: toppartister, dans, verkstäder och DJ-set. Evenemanget erbjuder också program för familjer och alla är välkomna bara för att njuta av stämningen!</p><p>Fritt inträde</p>", "en": "<p>The Middle East Jam Festival returns to Stoa square on the Night of the Arts!</p><p>ME Jam is a collaborative and international celebration of music, dance and culture, showcasing the diverse arts of the Middle Eastern and North African regions. The event combines live performances, workshops and food culture into a vibrant event open to all.</p><p>The event features programming also suitable for children. Come join us and enjoy the atmosphere!</p><p><b>At the Stoa Square:</b><br>16:00–16:45 Persians (Iran)<br>16:45–17:00 Watan Dance Group (Palestine)<br>17:00–17:40 Ezgi & Gulcan (Turkey)<br>17:40–17:50 Nubian Dance Group (Finland)<br>19:00–19:45 Sir1 (Iran / Kurdistan)</p><p><b>In the theatre hall:</b><br>18:00–19:00 Middle Eastern Orchestra</p><p>The evening culminates in the theatre hall concert, to which you can purchase <u><a href=\"https://www.lippu.fi/city/helsinki-22/venue/stoa-22786/\">tickets at www.lippu.fi</u></a>:<br>19:45–20:00 Nasha DJ & live visuals<br>20:00–21:30 Saeid and Naghib Shanbehzadeh (Iran / France)<br>21:30–21:45 Nasha DJ & live visuals</p><p><b>Workshops 17:00–20:00 at the square:</b></p><p><i>Niitty soi! – Meadow beats! – percussion workshop</i><br>Using recycled and natural materials, we build peculiar bugs that you can play as an instrument. Find your own sound as part of this musical swarm. Instructed by art educator Jenni Vilander.</p><p><i>Communal Plant Rug</i><br>We craft our own striped rug using plants. Row by row, the plants are woven into a tapestry that tells the story of the summer's growth and its diversity. The slowly created piece reminds us of the abundance of nature, the cycle of seasons and the joy of creating things together. Instructed by designer Tanja Valta.</p><p><i>Pyrografy workshops</i><br>The sculpture of decying wood on Stoa's meadow marks a meeting place for a diverse community of organisms. The sculpture comprises of birch bark and wooden disks, onto which we pyrograph – burn images using heated instruments – tracks of different critters and words from <i>A Manifesto for the Living World</i> by Anni Kytömäki. Come leave your own mark on the monument! Instructed by artist Petra Martin.</p><p><i>Postcard for a pollinator</i><br>In this workshop, you get to paint a postcard for a pollinating insect. In the biodegradable paint, there are sprinkled seeds of Finnish flowering plants. At the end, we 'send' the postcard by burying it in the ground so that it may grow into a tiny piece of a big blossoming meadow! Instructed by Verna Kuntsi and Satu Sipilä of Seikkailutaidekoulu.</p><p>Activities for all friends of insects at the Itäkeskus library points:<br><i>Poetry bug workshop</i>: come catch the poetry bug and colour it with your favourite colours.<br><i>Vegetable garden checkpoint course</i>: at the vegetable garden of the library's children's section, you may discover where different bugs make their homes.</p><p>During the event at 17:00 and 18:30, Teatteri QO performs their puppet theatre piece Niitty ('Meadow'). Free-of-charge tickets to the performances are distributed during the event. <u><a href=\"https://stoa.fi/en/events/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo__Niitty\">Read more about the performance here</u></a>. The piece if performed in Finnish and in the universal language of puppetry.</p><p>The programme is free of charge – excluding the 19.45 concert in the theatre hall.</p><p>In cooperation with ME Jam, Cultural Hub Interkult and Stoa.</p>" }, "short_description": { "fi": "Middle East Jam Festival saapuu jälleen Taiteiden yönä Stoan aukiolle!", "sv": "Middle East Jam Festival återvänder till Stoaplatsen på Konstens natt!", "en": "The Middle East Jam Festival returns to Stoa square on the Night of the Arts!" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpuodq26y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": 2385583, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T10:39:35.340995Z", "last_modified_time": "2026-07-07T10:39:35.341008Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/192defbe-af0c-4eb7-ad24-ee21b10dce1c.PNG", "name": "", "cropping": "126,0,888,761", "photographer_name": "", "alt_text": "kädet jotka leipovat keksejä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-07T10:46:50.794984Z", "last_modified_time": "2026-07-14T10:33:25.641345Z", "date_published": "2026-07-09T09:00:00Z", "start_time": "2026-08-08T10:00:00Z", "end_time": "2026-08-08T11: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": "Bake Together Workshop - kokataan yhdessä työpaja (engl.)", "en": "Bake Together Workshop" }, "info_url": null, "provider": { "fi": "Tapahtuman järjestää vapaaehtoinen", "en": "The event is organized by a volunteer" }, "description": { "fi": "Bake Together Workshop - Leivotaan yhdessä -työpaja<p><strong>Englanninkielinen työpaja Entressen kirjaston Jukeboksissa lauantaina 8.8.2026 klo 13-14.30</strong></p><p>Tule mukaan ilmaiseen, käytännönläheiseen keksityöpajaan, jossa osallistujat oppivat valmistamaan, muotoilemaan, paistamaan ja koristelemaan yksinkertaisia keksejä ystävällisessä ja luovassa ilmapiirissä.</p><p>Aikaisempaa leivontakokemusta ei tarvita.</p><p><strong>Sopii kaikenikäisille. Alle 12-vuotiaiden lasten tulee osallistua vanhemman tai huoltajan seurassa.</strong></p><p>Mukaan mahtuu 6 osallistujaa.</p>\n<a href=\"https://forms.gle/pa84KdVeSChLjMEw9\">ILMOITTAUDU MUKAAN TÄSTÄ</a><p><br></p><p>Tapahtuman järjestää vapaaehtoinen</p>", "en": "Bake Together Workshop<p><strong>Bake Together Workshop at Entresse Library Jukeboksi Saturday 8.8.2026 at 1 p.m. to 2.30 p.m.</strong></p><p>Join us for a free hands-on cookie workshop where participants will learn how to prepare, shape, bake, and decorate simple cookies in a friendly and creative environment.</p><p>No previous baking experience is needed.</p><p><strong>Suitable for all ages. Children under 12 should participate with a parent or adult guardian.</strong></p><p>This course can accommodate 6 participants.</p>\n<a href=\"https://forms.gle/pa84KdVeSChLjMEw9\">SIGN UP HERE</a><p><br></p><p>The event is organized by a volunteer</p>" }, "short_description": { "fi": "Tule mukaan ilmaiseen englanninkiel. keksityöpajaan, jossa osallistujat oppivat valmistamaan, muotoilemaan, paistamaan ja koristelemaan yksinkertaisia keksejä.", "en": "Join us for a free hands-on cookie workshop where participants will learn how to prepare, shape, bake, and decorate simple cookies." }, "provider_contact_info": null, "location_extra_info": { "fi": "Jukeboksi", "en": "Jukeboksi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuodq26y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68514", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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": 2385311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-24T07:14:27.577251Z", "last_modified_time": "2026-06-24T07:14:27.577266Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790152.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385311/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-24T07:14:27.405050Z", "last_modified_time": "2026-07-14T09:14:48.535700Z", "date_published": null, "start_time": "2026-10-02", "end_time": "2026-10-24", "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": "Mirjam Yeboah: Emellan", "sv": "Mirjam Yeboah: Emellan", "en": "Mirjam Yeboah: Emellan" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/2419EF4BAE3AA1102F82CFBA79F490A0/Mirjam_Yeboah_Emellan_", "sv": "http://www.caisa.fi/sv/evenemang/event/2419EF4BAE3AA1102F82CFBA79F490A0/Mirjam_Yeboah_Emellan_", "en": "http://www.caisa.fi/en/events/event/2419EF4BAE3AA1102F82CFBA79F490A0/Mirjam_Yeboah_Emellan_" }, "provider": null, "description": { "fi": "<p>Emellan on tekstiili-installaatio, johon kävijä voi astua sisään. Koko keholla koettava näyttely rakentuu kierrätetyistä tekstiileistä, puettavista veistoksista ja äänestä.</p><p>Näyttely käsittelee identiteettiä, muistoja ja kuulumista. Vaatteet ja materiaalit kuvaavat erilaisia rooleja ja tapoja olla maailmassa. Niiden kautta teos kutsuu pohtimaan, miten menneisyys, yhteisö ja oma kokemus kulkevat mukana nykyhetkessä.</p><p>***</p><p><i>Emellan</i> on immersiivinen tekstiili-installaatio, jossa keho muuttuu tilaksi, muistoksi ja suojaksi. Kierrätetyistä tekstiileistä, puettavista veistoksista ja äänimaisemasta rakentuva näyttely kutsuu kävijän astumaan sisään majamaiseen ympäristöön, jossa henkilökohtaiset muistot, kulttuurinen perintö ja keholliset kokemukset limittyvät toisiinsa.</p><p>Teos tarkastelee afrosuomalaisuutta ja fante-suomenruotsalaista identiteettiä intersektionaalisesta näkökulmasta. Installaatiossa vaatteet toimivat rooleina, naamioina ja selviytymiskeinoina – tapoina navigoida ympäröivässä maailmassa ja sen odotuksissa. Pehmeät, kosketeltavat veistokset sekä osallistavat elementit kutsuvat katsojan kokemaan näyttelyn koko keholla, ei vain visuaalisesti.</p><p><i>Emellan</i> rakentaa tilan, jossa aika ei ole lineaarista ja jossa yhteys esivanhempiin, yhteisöön ja omiin muistoihin voi olla samanaikaisesti läsnä. Näyttely käsittelee identiteetin kerroksellisuutta aistillisuuden, lempeyden ja jaettujen kokemusten kautta. Se pohtii, millaisia tiloja voimme rakentaa toisillemme silloin, kun moninaisuus ei ole poikkeus vaan lähtökohta.</p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä la 18.10.2026 klo 13.00–14.00.</p><p><b>Mirjam Yeboah</b> on suomalais-ghanalainen puvustukseen ja pedagogiikkaan erikoistunut tekstiilitaiteilija. Hänen taiteensa kumpuaa usein omien identiteettiensä risteyskohdista, sekä dekolonisoivasta otteesta. Tekstiili on hänelle paitsi väline, myös itsessään kertova elementti; voimakas ja pehmeä. Siksi Mirjamia kiinnostaa erityisesti kehon, mielen ja materiaalin välinen suhde.</p><p>Installaation sisällä järjestetään näyttelyn aikana kolme osallistavaa työpajaa, joissa osallistujat voivat jättää jälkensä teoskokonaisuuteen, taiteilijan opastuksella.</p>" }, "short_description": { "fi": "Emellan on tekstiili-installaatio, johon kävijä voi astua sisään. Koko keholla koettava näyttely rakentuu kierrätetyistä tekstiileistä, puettavista veistoksista ja äänestä." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpv7bigce", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": 2385617, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-14T07:08:23.701368Z", "last_modified_time": "2026-07-14T07:08:23.701381Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e65a9876-7319-4d8c-9f55-298ad66b6ad6.jpg", "name": "", "cropping": "0,140,843,984", "photographer_name": "Paula Mertsalmi", "alt_text": "kärpässieni metsässä, syksynlehdet ja oksat maassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385617/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-14T07:10:45.863422Z", "last_modified_time": "2026-07-14T07:10:45.863444Z", "date_published": null, "start_time": "2026-09-09T13:30:00Z", "end_time": "2026-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": "Sieninäyttely" }, "info_url": null, "provider": { "fi": "Espoon ympäristöyhdistys" }, "description": { "fi": "<p>Espoon ympäristöyhdistys tuo kirjastoon Espoon metsistä edellisenä päivänä kerättyjä sieniä.</p><p>Yhdistys esittelee lähimetsiemme monimuotoisuutta erilaisten sienien kasvupaikkoina. Näyttelyssä on syötäviä ja syötäväksi kelpaamattomia sieniä, nämä on kerrottu tapahtumassa katsojalle selkeästi värikoodein.</p><p>Tapahtuman järjestäjillä on sienestäjänä kokemusta yli 50 vuoden ajalta. Tule katselemaan ja kysymään sienistä ja sienestämisestä.</p>" }, "short_description": { "fi": "yhdistys esittelee lähimetsiemme monimuotoisuutta erilaisten sienien kasvupaikkoina." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpv7bigce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpv7big4y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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": 2385617, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-14T07:08:23.701368Z", "last_modified_time": "2026-07-14T07:08:23.701381Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e65a9876-7319-4d8c-9f55-298ad66b6ad6.jpg", "name": "", "cropping": "0,140,843,984", "photographer_name": "Paula Mertsalmi", "alt_text": "kärpässieni metsässä, syksynlehdet ja oksat maassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385617/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-14T07:09:49.006601Z", "last_modified_time": "2026-07-14T07:09:49.006618Z", "date_published": null, "start_time": "2026-09-12T10:00:00Z", "end_time": "2026-09-12T14: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": "Sieninäyttely" }, "info_url": null, "provider": { "fi": "Espoon ympäristöyhdistys" }, "description": { "fi": "<p>Espoon ympäristöyhdistys tuo kirjastoon Espoon metsistä edellisenä päivänä kerättyjä sieniä.</p><p>Yhdistys esittelee lähimetsiemme monimuotoisuutta erilaisten sienien kasvupaikkoina. Näyttelyssä on syötäviä ja syötäväksi kelpaamattomia sieniä, nämä on kerrottu tapahtumassa katsojalle selkeästi värikoodein.</p><p>Tapahtuman järjestäjillä on sienestäjänä kokemusta yli 50 vuoden ajalta. Tule katselemaan ja kysymään sienistä ja sienestämisestä.</p>" }, "short_description": { "fi": "yhdistys esittelee lähimetsiemme monimuotoisuutta erilaisten sienien kasvupaikkoina." }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpv7big4y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69621", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/ballet-finland-keha-stoa-21731392/" }, "description": null, "price": { "fi": "43,90 / 33,90 / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385609, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-13T06:15:06.947717Z", "last_modified_time": "2026-07-13T06:15:06.947734Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791033.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385609/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-13T06:15:06.820402Z", "last_modified_time": "2026-07-13T06:15:07.108255Z", "date_published": null, "start_time": "2026-12-09T16:00:00Z", "end_time": "2026-12-09T18: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": "Ballet Finland: KEHÄ" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/46257DE003E25E252501D49FFFA717CD/Ballet_Finland_KEHA" }, "provider": null, "description": { "fi": "<p>KEHÄ edustaa neljää ainutlaatuista vuodenaikaa. Ilta pitää sisällään kantaesitykset Atte Kilpiseltä, Reija Wäreeltä, Kenneth Kvarnströmiltä ja Jouka Valkamalta.</p><p>KEHÄ kutsuu katsojan liikkeen ja ajan kiertoon – vuodenajoista inspiroituvaan kokonaisuuteen, jossa kohtaavat neljä omaleimaista koreografista ääntä. Ilta tuo yhteen neljä uutta kantaesitystä neljältä ainutlaatuiselta nykytanssin tekijältä: <b>Atte Kilpiseltä, Reija Wäreeltä, Kenneth Kvarnströmiltä</b> ja <b>Jouka Valkamalta</b>.</p><p>Vuodenaikojen erilaiset tunnelmat rakentuvat näyttämölle neljän vahvan teoksen kautta. Atte Kilpisen talvinen <i>Kirkastettu yö</i> pysähtyy hiljaisuuteen ja sukupolvien väliseen yhteyteen, jossa liike kirkastuu kuunvalon tavoin. Reija Wäre tarkastelee keväässä yksilön ja ryhmän välistä jännitettä, yhdistäen baletin liikekieleen uusia sävyjä. Kenneth Kvarnströmin vallaton <i>triotrio</i> leikkii rakenteella, toistolla ja hienovaraisella mystiikalla kolmen tanssijan vuoropuhelussa. Jouka Valkaman syksyinen <i>Varjojen muisti</i> sukeltaa muistoihin, muutokseen ja luopumiseen, joissa varjot alkavat liikkua.</p><p><b>Atte Kilpinen: Kirkastettu yö</b></p><p>Balettitanssija Atte Kilpisen uusi kantaesitys <i>Kirkastettu yö</i> vie katsojan talviseen metsään – hiljaiseen, kuun valaisemaan hetkeen, jossa aika tuntuu pysähtyvän ja jokainen liike kirkastuu. Duetto pohjautuu Arnold Schönbergin sävellykseen <i>Kirkastettu yö</i> (<i>Verklärte Nacht</i>, 1899). Alun perin rakastavaisten tarinaan pohjautuva musiikki saa Kilpisen tulkinnassa uuden merkityksen: näyttämöllä tarkastellaan äidin ja pojan välistä rakkautta, sukupolvien jatkumoa.</p><p><b>Reija Wäre</b></p><p><i>\"Olen pohtinut yksilön suhdetta ryhmään: kuinka yhtä ihmistä saatetaan käyttää syntipukkina tai ukkosenjohdattimena muiden tunteille.</p><p>Tulevassa teoksessa Ballet Finlandille minua kiinnostaa baletin linjakkuuden ja pehmeyden maustaminen muiden tanssilajien elementeillä. Tanssijoiden taito ja persoonallisuudet inspiroivat minua.\"</i><br>- Reija Wäre</p><p><b>Kenneth Kvarnström: triotrio</b></p><p>Kolme tanssijaa.<br>Kolme osaa.<br>Kolmesataaviisikymmentä askelta, kolmekymmentä nostoa ja ripaus mystisyyttä.</p><p><b>Jouka Valkama: Varjojen muisti</b></p><p>Varjot luovat liikettä muistoista, muutoksesta ja luopumisesta.</p><p>Tapahtuman kesto: 1,5 t + väliaika; yhteiskesto noin 2 t</p>" }, "short_description": { "fi": "KEHÄ edustaa neljää ainutlaatuista vuodenaikaa. Ilta pitää sisällään kantaesitykset Atte Kilpiseltä, Reija Wäreeltä, Kenneth Kvarnströmiltä ja Jouka Valkamalta." }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69621/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }