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=19
{ "meta": { "count": 23125, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=20", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=18" }, "data": [ { "id": "espoo_le:agptnp3rti", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385490, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-06T08:08:25.504380Z", "last_modified_time": "2026-07-06T08:08:25.504395Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0c6939ba-6b77-484b-8ee9-eb78aa215128.png", "name": "kuvassa sirkustaiteilijat Katerina Repponen ja Pasi Nousiainen", "cropping": "200,0,1000,800", "photographer_name": "Lassi Kaaria", "alt_text": "Nainen ja mies esittävät akrobatiaa nojatuolissa, kuvassa mies istuu ja nainen miehen päänpäällä käden varassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385490/?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:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2026-07-06T08:20:11.169044Z", "last_modified_time": "2026-07-06T08:20:11.169060Z", "date_published": null, "start_time": "2026-11-21T11:00:00Z", "end_time": "2026-11-21T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtumat toteuttaa Espoon kaupungin kulttuuripalvelut", "sv": "Evenemangen genomförs i Espoo City Cultural Services", "en": "The events are carried out in Espoo City Cultural Services" }, "short_description": { "fi": "Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa.", "sv": "Kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek.", "en": "The Culture Chain service offers art and culture services to elderly people. Performances are also organised in libraries." }, "provider_contact_info": null, "description": { "fi": "Paikka varattu - Nykysirkusesitys tilan jakamisesta<p><strong>Lauantai 21.11.2026 klo 13.00 Ison Omenan kirjasto (Stage) </strong> </p><p>Mitä tapahtuu, kun kaksi ihmistä yrittää istua samalla tuolilla? Paikka varattu on leikkisä ja dynaaminen nykysirkusesitys, joka tutkii kahden ihmisen välistä vuorovaikutusta – luottamusta, erimielisyyksiä, yksilöllisyyttä ja yhteisiä päämääriä – sirkuksen keinoin. </p><p>Kansainvälisesti palkitut sirkustaiteilijat <strong>Katerina Repponen ja Pasi Nousiainen</strong> tuovat lavalle hengästyttävää pariakrobatiaa, fyysistä ilmaisua ja huumoria. Tilan jakamisen kamppailu muuttuu vertauskuvaksi ihmisten välisestä vuorovaikutuksesta, tehden esityksestä sekä viihdyttävän että samaistuttavan kokemuksen. </p><p>Katerina Repponen ja Pasi Nousiainen ovat suomalainen sirkusduo, joka on työskennellyt yhdessä vuodesta 2010. Kate ja Pasi ovat valloittaneet yleisöä ympäri maailmaa yli 25 maassa ja heidän esityksiään on palkittu kansainvälisillä sirkusfestivaaleilla. </p><p><strong>Esityksen kesto: 30 minuuttia. </strong></p><p><strong>RYHMÄN NIMI: Kate & Pasi </strong></p><p><strong>ESITYKSEN NIMI: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com </a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</a></p><p>--</p><p>Espoon kaupungin Kulttuuriketju välittää taide- ja kulttuurielämyksiä espoolaisille ikäihmisille. Kulttuuriketjun esityksiä järjestetään myös espoolaisissa kirjastoissa. Esityksiä järjestetään syksyn puolella syyskuusta marraskuulle.</p><p>Kirjastoihin Kulttuuriketju tuo upeat 36 esitystä. Esitykset rantautuvat isoimpien tapahtumakirjastojen lisäksi myös Pohjois-Espooseen.</p><p>Kaikki tapahtumat ovat kaikille avoimia sekä maksuttomia.</p><p>Tervetuloa nauttimaan kulttuurista!</p>", "sv": "Paikka varattu – en modern cirkusföreställning om att dela utrymme<p><strong>Lördag 21.11.2026 kl. 13.00 Iso Omenas bibliotek (Stage) </strong></p><p>Vad händer när två personer försöker sitta på samma stol? Paikka varattu är en lekfull och dynamisk cirkusföreställning som utforskar interaktionen mellan två människor – tillit, meningsskiljaktigheter, individualitet och gemensamma mål. </p><p>De internationellt prisbelönta cirkusartisterna <strong>Katerina Repponen och Pasi Nousiainen</strong> tar med sig häpnadsväckande parakrobatik, fysiskt uttryck och humor på scenen. Kampen för att dela utrymmet blir en symbol för växelverkan mellan människor och gör föreställningen till en underhållande upplevelse som man kan känna igen sig i. </p><p>Katerina Repponen och Pasi Nousiainen är en finländsk cirkusduo som har arbetat tillsammans sedan år 2010. Kate och Pasi har erövrat publiken över hela världen i över 25 länder och deras framträdanden har belönats på internationella cirkusfestivaler. </p><p><strong>Föreställningens längd: 30 minuter. </strong></p><p><strong>GRUPPENS NAMN: Kate & Pasi </strong></p><p><strong>FÖRESTÄLLNINGENS NAMN: Paikka varattu </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</a></p><p>--</p><p>Esbo stads kulturkedjan förmedlar konst- och kulturupplevelser till äldre esbobor . Därtill ordnas Kulturkedjan-evenemang i stadens bibliotek. Föreställningar arrangeras under hösten från september till november.</p><p>Kulturkedjan bjuder på fantastiska 36 föreställningar till biblioteken. Föreställningar kommer att ordnas på de stora evenemangsbiblioteken och dessutom även i Norra Esbo.</p><p>Alla evenemang är öppna för alla och gratis.</p><p>Välkommen att njuta av kultur!</p>", "en": "Paikka varattu – contemporary circus performance about sharing space<p><strong>Saturday 21.11.2026 at 1:00 p.m., Iso Omena Library (Stage) </strong></p><p>What happens when two people try to sit on the same chair? Seat taken is playful and dynamic circus performance that explores interaction between two people about trust, disagreement, individuality and ambition – by circus means. </p><p>Internationally awarded circus performers <strong>Katerina Repponen and Pasi Nousiainen</strong> bring breathtaking pair acrobatics, physical expression and humor to the stage. The struggle about sharing space becomes a metaphor for human interaction, making the show entertaining and empathetic. </p><p>Katerina Repponen and Pasi Nousiainen is Finnish circus duo that have worked together since 2010. Kate and Pasi have captivated audiences around the world in over 25 countries, and their performances have been awarded at international circus festivals. </p><p><strong>Performance duration: 30 minutes. </strong></p><p><strong>GROUP NAME: Kate & Pasi </strong></p><p><strong>PERFORMANCE NAME: Seat taken </strong></p><p><a href=\"www.kate-pasi.com \">www.kate-pasi.com</a></p><p><a href=\"https://www.facebook.com/DuoKatePasi/ \">Facebook</a></p><p><a href=\"https://www.instagram.com/kate_pasi_acrobatics/ \">Instagram</a></p><p>--</p><p>Espoo City Culture Chain offers art and culture services to elderly people. Performances are also organised in libraries. Performances are organized in the fall, from September through November.</p><p>The Cultural Chain brings an impressive 36 performances to libraries.Performances will be held at the largest event libraries as well as in Northern Espoo.</p><p>All events are open to everyone and free of charge.</p><p>Welcome to enjoy the culture!</p>" }, "name": { "fi": "Kulttuuriketju - Paikka varattu - Nykysirkusesitys tilan jakamisesta", "sv": "Kulturkedjan - Paikka varattu – en modern cirkusföreställning om att dela utrymme", "en": "Cultural Chain - Paikka varattu – contemporary circus performance about sharing space" }, "info_url": { "fi": "https://www.espoo.fi/fi/tapahtumat-espoossa", "sv": "https://www.espoo.fi/sv/evenemang-i-esbo", "en": "https://www.espoo.fi/en/events-espoo" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptnp3rti/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69585", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385488, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T11:14:28.404771Z", "last_modified_time": "2026-07-03T11:14:28.404791Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792307.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385488/?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-07-03T11:14:28.287344Z", "last_modified_time": "2026-07-03T11:14:28.611397Z", "date_published": null, "start_time": "2026-11-12T15:00:00Z", "end_time": "2026-11-12T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "PodiKlubi on matalan kynnyksen kohtaamispaikka kaikille podcasteista kiinnostuneille nuorille.", "sv": "PodiKlubi är en mötesplats med låg tröskel för alla som är intresserade av poddar.", "en": "PodiKlubi is a low-threshold meeting place for anyone interested in podcasts." }, "provider_contact_info": null, "description": { "fi": "<p>PodiKlubi on matalan kynnyksen kohtaamispaikka kaikille podcasteista kiinnostuneille nuorille.</p><p>Tapahtumassa osallistujat pääsevät esittelemään omaa podcastiaan muille: kuuntelemme lyhyen pätkän jaksosta ja vaihdamme ajatuksia sen herättämistä teemoista. Jokainen esitys saa hetken valokeilassa, mutta tunnelma pysyy rennon keskusteleva – ei paineita, ei kilpailua.</p><p>Tuo oma podcastisi tai tule vain kuuntelemaan ja inspiroitumaan!</p><p>Tapahtuma on ilmainen ja päihteetön.</p><p>Tapahtuman järjestää Kipinän Signaalimedia.</p><p>Kesto: 2 tuntia<br>Kieli: monikielinen</p><p>Vapaa pääsy</p>", "sv": "<p>PodiKlubi är en mötesplats med låg tröskel för alla som är intresserade av poddar.</p><p>Ta med din egen podd eller kom bara för att lyssna och inspireras!</p><p>Under evenemanget får deltagarna presentera sina poddar för andra: vi lyssnar på ett kort utdrag ur ett avsnitt och utbyter tankar om dess teman. Varje framträdande får en stund i rampljuset, men atmosfären förblir avslappnad och samtalsbetonad – ingen press, ingen konkurrens.</p><p>Evenemanget är gratis och rusmedelsfritt.</p><p>Längd: 2 timmar<br>Språk: flerspråkig</p>", "en": "<p>PodiKlubi is a low-threshold meeting place for anyone interested in podcasts.</p><p>Bring your own podcast or just come and listen and be inspired!</p><p>The event will give participants the chance to present their podcast to others: we will listen to a short clip from an episode and exchange ideas on the themes it raises. Each podcast will have its moment in the spotlight, but the atmosphere will remain relaxed and conversational – no pressure, no competition.</p><p>Admission is free and the event is drug and alcohol free.</p><p>Duration: 2 hours<br>Language: multilingual</p>" }, "name": { "fi": "PodiKlubi", "sv": "PodiKlubi", "en": "PodiKlubi" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7DB2C596877CFF2B639D7AC14ADDC843/PodiKlubi", "sv": "http://www.stoa.fi/sv/evenemang/event/7DB2C596877CFF2B639D7AC14ADDC843/PodiKlubi", "en": "http://www.stoa.fi/en/events/event/7DB2C596877CFF2B639D7AC14ADDC843/PodiKlubi" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69306", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385486, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T10:14:48.364971Z", "last_modified_time": "2026-07-03T10:14:48.364990Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793729.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385486/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T10:14:48.237150Z", "last_modified_time": "2026-07-03T10:14:48.541881Z", "date_published": null, "start_time": "2026-11-16", "end_time": "2026-11-22", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Aistipolku johdattaa ihastelemaan, ihmettelemään, kuuntelemaan, tunnustelemaan ja kurkistelemaan satumaisen metsäistä maailmaa." }, "provider_contact_info": null, "description": { "fi": "<p>Aistipolku johdattaa ihastelemaan, ihmettelemään, kuuntelemaan, tunnustelemaan ja kurkistelemaan satumaisen metsäistä maailmaa.</p><p>Esteetön aistimetsä toivottaa tervetulleeksi niin sylissä tutkiskelevat vauvat kuin apuvälineiden kanssa liikkuvat luonnonystävätkin. Sukupolvien väliset metsäkohtaamiset kutsuvat pysähtymään ja rauhoittumaa pienten ihmeiden äärelle.</p><p>Sylimetsä-installaation on suunnitellut ja toteuttanut taidekasvattaja <b>Jenni Vilander</b>.</p><p>Installaatio on avoinna talon aukiolojen mukaisesti.</p><p>Ikäsuositus: sopii kaiken ikäisille</p><p>Paikka: Stoan Terraario <br>Vapaa pääsy.</p><p>HUOM! Jos tulet päiväkotiryhmäsi kanssa, mahtuu tilaan yksi ryhmä kerrallaan.</p>" }, "name": { "fi": "Sylimetsässä – metsän sylissä", "sv": "Sylimetsässä – metsän sylissä", "en": "Sylimetsässä – metsän sylissä" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/60F82D63F89FC23AE34D0694DB5C2E50/Sylimetsassa_metsan_sylissa_", "sv": "http://www.stoa.fi/sv/evenemang/event/60F82D63F89FC23AE34D0694DB5C2E50/Sylimetsassa_metsan_sylissa_", "en": "http://www.stoa.fi/en/events/event/60F82D63F89FC23AE34D0694DB5C2E50/Sylimetsassa_metsan_sylissa_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69306/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69583", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" }, "info_url": { "fi": "https://www.lippu.fi/event/stella-polaris-stella-polariksen-vapaa-pudotus-improvisoitu-naytelma-vuotalo-21815905/", "sv": "https://www.lippu.fi/event/stella-polaris-stella-polariksen-vapaa-pudotus-improvisoitu-naytelma-vuotalo-21815905/", "en": "https://www.lippu.fi/event/stella-polaris-stella-polariksen-vapaa-pudotus-improvisoitu-naytelma-vuotalo-21815905/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385485, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T09:14:34.711407Z", "last_modified_time": "2026-07-03T09:14:34.711421Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791043.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385485/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T09:14:34.623987Z", "last_modified_time": "2026-07-03T09:14:34.830814Z", "date_published": null, "start_time": "2026-11-13T16:00:00Z", "end_time": "2026-11-13T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Stella Polariksen legendaarinen Vapaa pudotus on improvisoitu näytelmä, jossa mikään ei ole etukäteen sovittua. Hyppää tuntemattomaan!" }, "provider_contact_info": null, "description": { "fi": "<p>Stella Polariksen legendaarinen Vapaa pudotus on improvisoitu näytelmä, jossa mikään ei ole etukäteen sovittua. Hyppää tuntemattomaan!</p><p>Ei käsikirjoitusta, ei harjoiteltuja repliikkejä, ei tyylilajia, vaan näyttelijät, muusikko ja valosuunnittelija inspiroituvat yleisön ideoista ja luovat kokonaisen pitkän näytelmän improvisoidusti!</p><p>Tule mukaan kokemaan, kuinka hahmot, laulut ja tarinat syntyvät juuri siinä ja nyt – sinun silmiesi edessä. Jokainen ilta on ainutlaatuinen, täynnä yllätyksiä, oivalluksia ja naurua tai kyyneleitä.</p><p>Kokoonpano esityksissä: 4 näyttelijää, muusikko, valosuunnittelija<br>Esiintyjät vaihtuvat esitysten välillä. Kaikki oikeudet muutoksiin pidetään.<br> <br>Ikäsuositus: 13-v. ja sitä vanhemmat<br>Kesto: 2 t, sisältäen väliajan</p>" }, "name": { "fi": "Stella Polaris: Vapaa pudotus – Improvisoitu näytelmä", "sv": "Stella Polaris: Vapaa pudotus – Improviserad pjäs", "en": "Stella Polaris: Vapaa pudotus – Improvised play" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8BF6905FCBBD9C0167F85E2364FA1C65/Stella_Polaris_Vapaa_pudotus", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8BF6905FCBBD9C0167F85E2364FA1C65/Stella_Polaris_Vapaa_pudotus", "en": "http://www.vuotalo.fi/en/events/event/8BF6905FCBBD9C0167F85E2364FA1C65/Stella_Polaris_Vapaa_pudotus" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69583/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69582", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385484, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T09:14:33.927057Z", "last_modified_time": "2026-07-03T09:14:33.927073Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784176.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385484/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T09:14:33.786425Z", "last_modified_time": "2026-07-03T09:14:34.133463Z", "date_published": null, "start_time": "2026-11-10T12:00:00Z", "end_time": "2026-11-10T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Merityövoiman edunvalvonnalle oli 1700-luvun jälkipuoliskolla tarve. Työ merellä oli kovaa, kuluttavaa ja vaarallista ja leskiä oli paljon." }, "provider_contact_info": null, "description": { "fi": "<p>Merityövoiman edunvalvonnalle oli 1700-luvun jälkipuoliskolla tarve. Työ merellä oli kovaa, kuluttavaa ja vaarallista ja leskiä oli paljon.</p><p>Viaporin linnoitustyömaa oli vilkastuttanut kaupungin elinkeinotoimintaa ja kauppamerenkulkua sekä kasvattanut merenkulusta elantonsa saavien määrää. Helsingin kauppalaivaston tonnisto kasvoi ja matkat pitenivät. Helsinkiläislaiva Anders Johan Nordenskiöld ylitti ensimmäisenä vuonna 1769 Atlantin. Helsingin merimieshuone oli yksi Viaporin linnoitustyömaan mukanaan tuomista sosiaalisista innovaatioista.</p><p>Luennoitsijana dosentti Mikko Huhtamies.</p><p>Luennon kesto: 1 t 30 min<br>Vapaa pääsy</p>" }, "name": { "fi": "Varhaista edunvalvontaa – Helsingin merimieshuone 1700-luvulla – Työväenopiston luento", "sv": "Varhaista edunvalvontaa – Helsingin merimieshuone 1700-luvulla – Työväenopiston luento", "en": "Varhaista edunvalvontaa – Helsingin merimieshuone 1700-luvulla – Työväenopiston luento" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E0DF2AEB2AF9F48EA913D6CC9A10BD10/Varhaista_edunvalvontaa_Helsingin_merimieshuone_1700-luvulla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E0DF2AEB2AF9F48EA913D6CC9A10BD10/Varhaista_edunvalvontaa_Helsingin_merimieshuone_1700-luvulla", "en": "http://www.vuotalo.fi/en/events/event/E0DF2AEB2AF9F48EA913D6CC9A10BD10/Varhaista_edunvalvontaa_Helsingin_merimieshuone_1700-luvulla" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69581", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/event/klubb-ankdamm-maestro-bettina-benny-tornroos-vuotalo-21849246/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-maestro-bettina-benny-tornroos-vuotalo-21849246/", "en": "https://www.lippu.fi/event/klubb-ankdamm-maestro-bettina-benny-tornroos-vuotalo-21849246/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385483, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T08:13:58.309507Z", "last_modified_time": "2026-07-03T08:13:58.309523Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792330.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385483/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T08:13:58.176278Z", "last_modified_time": "2026-07-03T08:13:58.471023Z", "date_published": null, "start_time": "2026-11-07T16:00:00Z", "end_time": "2026-11-07T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Voiko vain kahdeksan sanan mittaisesta runosta tulla ratkaiseva tekijä ammatillisella uralla? Benny Törnroosin kohdalla kävi juuri näin.", "sv": "Kan en dikt med endast 8 ord bli avgörande för en yrkeskarriär? I Benny Törnroos fall gick det just så här.", "en": "Can a poem of only eight words become decisive for a professional career? In Benny Törnroos’s case, that is exactly what happened." }, "provider_contact_info": null, "description": { "fi": "<p>Voiko vain kahdeksan sanan mittaisesta runosta tulla ratkaiseva tekijä ammatillisella uralla? Benny Törnroosin kohdalla kävi juuri näin.</p><p>Bettina Sågbom kohtaa radio- ja tv-toimittajan, trubaduurin, purjehtijan ja Muumipapan äänenä tunnetun Bennyn Vuotalossa 7.11. vuosittaisessa Maestro & Bettina -illassa.</p><p>Pianossa Henrik Wikström.</p><p>Klubi-ilta, A-oikeudet, Café Pokkari huolehtii tarjoilusta, ovet avataan klo 17.30. Konsertin kesto on noin 120 minuuttia, sisältäen väliajan.</p><p>Liput à 20 / 15 € Lippu.fi tai lippuautomaatilta ovelta.</p>", "sv": "<p>Kan en dikt med endast 8 ord bli avgörande för en yrkeskarriär? I Benny Törnroos fall gick det just så här.</p><p>Bettina Sågbom möter radio- och tv-redaktören, trubaduren, seglaren och Muminpappan Benny i Nordhuset den 7.11 i den årliga Maestro & Bettina.</p><p>Vid pianot Henrik Wikström.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30. Konsertens längd är ca 120 min. inkl. paus.</p><p>Biljetter à 20/15 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>Can a poem of only eight words become decisive for a professional career? In Benny Törnroos’s case, that is exactly what happened.</p><p>Bettina Sågbom meets radio and TV editor, troubadour, sailor and the voice of Moominpappa, Benny Törnroos, at Vuosaari House on 7 November in the annual Maestro & Bettina evening.</p><p>With Henrik Wikström at the piano.</p><p>Club night, refreshments by Café Pokkari, doors open at 17:30. Duration: about 120 minutes, including intermission.</p><p>Tickets à 20/15 euros @ Lippu.fi or from the ticket machine at the door.</p>" }, "name": { "fi": "Maestro & Bettina: Benny Törnroos – Klubb Ankdamm", "sv": "Maestro & Bettina: Benny Törnroos – Klubb Ankdamm", "en": "Maestro & Bettina: Benny Törnroos – Klubb Ankdamm" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/E53BEBA759D8694C5D98199BDAC46D09/Maestro_Bettina_Benny_Tornroos", "sv": "http://www.vuotalo.fi/sv/evenemang/event/E53BEBA759D8694C5D98199BDAC46D09/Maestro_Bettina_Benny_Tornroos", "en": "http://www.vuotalo.fi/en/events/event/E53BEBA759D8694C5D98199BDAC46D09/Maestro_Bettina_Benny_Tornroos" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69581/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69580", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385482, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T08:13:57.783368Z", "last_modified_time": "2026-07-03T08:13:57.783385Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789977.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385482/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T08:13:57.660459Z", "last_modified_time": "2026-07-03T08:13:57.923366Z", "date_published": null, "start_time": "2026-11-06", "end_time": "2026-11-28", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Mielenterveyden haasteet ovat moninaisia ja voivat koskettaa ketä tahansa, milloin tahansa. On tärkeää tulla kohdatuksi aidosti ja kokonaisena." }, "provider_contact_info": null, "description": { "fi": "<p>Mielenterveyden haasteet ovat moninaisia ja voivat koskettaa ketä tahansa, milloin tahansa. On tärkeää tulla kohdatuksi aidosti ja kokonaisena.</p><p>Kuinka tehdä näkymätön näkyväksi taiteen kautta?</p><p>Näyttelymme keskeisinä teemoina ovat mielenterveyskriisi, mielenterveys- ja päihdeongelmat, stigma, sosiaalisesti kestävä kehitys sekä yhdenvertaisuus ja osallisuus. Moniäänisen näyttelymme tavoitteena on herättää ajatuksia, tunteita, kysymyksiä ja keskustelua ajankohtaisesta ja tärkeästä aiheesta ja yhteiskuntamme tilanteesta.</p><p>Teossarja antaa äänen järjestöjen asiantuntijoille, muille mielenterveys- ja päihdetyön ammattilaisille ja heille, keille mielenterveys- ja päihdeongelmat ovat tuttuja omasta arkitodellisuudesta. Haluamme edistää dialogia ja lisätä tietoisuutta. Pyrimme purkamaan teemoihin liittyvää stigmaa ja vaikenemisen kulttuuria. Avun tarve on kasvava. Keskeistä on yhteiskuntamme valmius ja tahtotila tunnistaa ja hoitaa ongelmien syitä ja vastata avun tarpeeseen. Tarvitaan inhimillistä kohtaamista ja empatiaa.</p><p><i>”Laiminlyömällä yhteiskuntamme kantavien rakenteiden turvaamisen, kasvatamme inhimillisen kärsimyksen velkataakkaa. Välinpitämättömyyden summa ei ole mitattavissa vain euroissa, sillä menetämme jatkuvasti henkistä valuuttaa. Puhumattakaan siitä, että ihmiselämän hinta on korvaamattoman arvokas.”</i></p>" }, "name": { "fi": "Depa Kollektiivi: MielenTila", "sv": "Depa Kollektiivi: MielenTila", "en": "Depa Kollektiivi: MielenTila" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6B5CABF6DC61BDE1A8A8995A34D9DB9C/Depa_Kollektiivi_MielenTila", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6B5CABF6DC61BDE1A8A8995A34D9DB9C/Depa_Kollektiivi_MielenTila", "en": "http://www.vuotalo.fi/en/events/event/6B5CABF6DC61BDE1A8A8995A34D9DB9C/Depa_Kollektiivi_MielenTila" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69580/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69578", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" }, "info_url": { "fi": "https://www.lippu.fi/event/johanna-ringbom-iiro-salmi-du-vet-hur-det-kanns-ibland-vuotalo-21849545/", "sv": "https://www.lippu.fi/event/johanna-ringbom-iiro-salmi-du-vet-hur-det-kanns-ibland-vuotalo-21849545/", "en": "https://www.lippu.fi/event/johanna-ringbom-iiro-salmi-du-vet-hur-det-kanns-ibland-vuotalo-21849545/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385480, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T07:14:18.854511Z", "last_modified_time": "2026-07-03T07:14:18.854527Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792327.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385480/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2026-07-03T07:14:18.726808Z", "last_modified_time": "2026-07-03T07:14:19.045709Z", "date_published": null, "start_time": "2026-11-03T12:00:00Z", "end_time": "2026-11-03T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Näyttelijä Johanna Ringbomin ja muusikko Iiro Salmen uusi musiikkituotanto keskittyy lauluntekijä ja muusikko Olle Adolphsonin hienoon tuotantoon.", "sv": "Skådespelaren Johanna Ringbom och musikern Iiro Salmi presenterar en helt ny musikalisk produktion kring den fina vislyrikern och musikern Olle Adolphson." }, "provider_contact_info": null, "description": { "fi": "<p>Näyttelijä Johanna Ringbomin ja muusikko Iiro Salmen uusi musiikkituotanto keskittyy lauluntekijä ja muusikko Olle Adolphsonin hienoon tuotantoon.</p><p>Konsertissa kuullaan tunnettuja lauluja, kuten ”Mitt eget land” ja ”Trubbel”, mutta myös vähemmän tunnettuja kappaleita. Ohjelmistossa on 8–9 laulua, joiden välissä kurkistamme Adolphsonin elämään ja luomistyöhön; hänen monitahoiseen, herkkään ja levottomaan luonteeseensa.</p><p>Adolphson omin sanoin: <i>”Parasta, mitä minunlaiselleni voi tapahtua, on se, että laulu saa siivet, lentää ylös ja jättää luojansa. Silloin siitä tulee kansanlaulu, ja se on suurin kunnia.”</i></p><p>Konsertin kesto: n. 1 tunti.</p><p>Liput 10 € / 8 € osoitteesta lippu.fi tai ovella olevasta lippuautomaatista.</p>", "sv": "<p>Skådespelaren Johanna Ringbom och musikern Iiro Salmi presenterar en helt ny musikalisk produktion kring den fina vislyrikern och musikern Olle Adolphson.</p><p>Skådespelaren Johanna Ringbom och musikern Iiro Salmi presenterar en helt ny musikalisk produktion kring den fina vislyrikern och musikern Olle Adolphson.</p><p>I konserten ingår kända visor bl.a. Mitt eget land och Trubbel. Men också mera okända. Det blir 8-9 visor och mellan dem insyn i hans liv och skapande. Han var en komplicerad, känslig, rastlös natur.</p><p>Han har själv sagt: “Det bästa som kan hända en sån som jag, är att en visa får vingar, flyger upp och lämnar sin upphovsman. Då blir den en folkvisa och det är den största hedern.”</p><p>Konsertens längd: en knapp timme.</p><p>Biljetter 10/8 € @ Lippu.fi eller från biljettautomaten vid dörren.</p>" }, "name": { "fi": "Johanna Ringbom & Iiro Salmi: Du vet hur det känns ibland – Svenska veckan | Tiistaimatinea", "sv": "Johanna Ringbom & Iiro Salmi: Du vet hur det känns ibland – Svenska veckan | Tisdags-matiné", "en": "Johanna Ringbom & Iiro Salmi: Du vet hur det känns ibland – Svenska veckan | Tiistaimatinea" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/37B6E9A6877DF555FE2EB20646335AE2/Johanna_Ringbom_Iiro_Salmi_Du_vet_hur_det_kanns_ibland_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/37B6E9A6877DF555FE2EB20646335AE2/Johanna_Ringbom_Iiro_Salmi_Du_vet_hur_det_kanns_ibland_", "en": "http://www.vuotalo.fi/en/events/event/37B6E9A6877DF555FE2EB20646335AE2/Johanna_Ringbom_Iiro_Salmi_Du_vet_hur_det_kanns_ibland_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69578/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69543", "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:31/?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/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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-02T13:14:34.053418Z", "last_modified_time": "2026-07-02T13:14:34.053432Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385478/?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-07-02T13:14:33.941238Z", "last_modified_time": "2026-07-02T13:14:34.247999Z", "date_published": null, "start_time": "2026-12-10T15:00:00Z", "end_time": "2026-12-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Nuorten Uuden Musiikin Ilta NUMI on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.", "sv": "Nuorten Uuden Musiikin Ilta NUMI är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.", "en": "Nuorten Uuden Musiikin Ilta NUMI ('Evening of New Music by Young People') is a free-of-charge music event where artists aged 13–29 have a low-threshold chance to perform." }, "provider_contact_info": null, "description": { "fi": "<p>Nuorten Uuden Musiikin Ilta NUMI on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.</p><p>Lavalle nousee kahdeksan avoimen haun kautta valittua esiintyjää, jotka esittävät 1–2 kappaletta ja saavat palautetta kokeneilta mentoreilta. NUMI tukee nuoria musiikintekijöitä kehittymään ja verkostoitumaan.</p><p>Seuraa @numi.hel Instagramissa ja laita DM, jos haluat mukaan järjestämään – tehdään yhdessä tilaa uudelle musiikille!</p><p>Tapahtuma on ilmainen ja päihteetön.</p><p>Kesto: 2 tuntia<br>Kieli: monikielinen</p>", "sv": "<p>Nuorten Uuden Musiikin Ilta NUMI är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.</p><p>Åtta artister som valts ut i en öppen ansökan stiger upp på scenen för att framföra 1–2 låtar, och får respons från erfarna mentorer. NUMI hjälper unga musiker att utvecklas och skapa nätverk.</p><p>Följ @numi.hel på Instagram och skicka ett DM och du vill vara med och arrangera – tillsammans skapar vi plats för ny musik!</p><p>Evenemanget är gratis och rusmedelsfritt.</p><p>Längd: 2 timmar<br>Språk: flerspråkig</p>", "en": "<p>Nuorten Uuden Musiikin Ilta NUMI ('Evening of New Music by Young People') is a free-of-charge music event where artists aged 13–29 have a low-threshold chance to perform.</p><p>Eight performers, selected through an open call, will take to the stage to perform one or two songs and receive feedback from experienced mentors. NUMI supports young musicians in developing their craft and networking.</p><p>Follow @numi.hel on Instagram and DM us if you want to get involved – let's make room for new music together!</p><p>Admission is free and the event is drug and alcohol free.</p><p>Duration: 2 hours<br>Language: multilingual</p>" }, "name": { "fi": "NUMI: Nuorten Uuden Musiikin Ilta", "sv": "NUMI: Nuorten Uuden Musiikin Ilta", "en": "NUMI: Nuorten Uuden Musiikin Ilta" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/06576A638B93C45E3A5E189FF6B448DC/NUMI_Nuorten_Uuden_Musiikin_Ilta", "sv": "http://www.stoa.fi/sv/evenemang/event/06576A638B93C45E3A5E189FF6B448DC/NUMI_Nuorten_Uuden_Musiikin_Ilta", "en": "http://www.stoa.fi/en/events/event/06576A638B93C45E3A5E189FF6B448DC/NUMI_Nuorten_Uuden_Musiikin_Ilta" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69543/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69542", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385477, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-02T13:14:27.277061Z", "last_modified_time": "2026-07-02T13:14:27.277077Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792301.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385477/?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-29T10:13:40.713665Z", "last_modified_time": "2026-07-02T13:14:27.311944Z", "date_published": null, "start_time": "2026-10-14T14:00:00Z", "end_time": "2026-10-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Nuorten Uuden Musiikin Ilta NUMI on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.", "sv": "Nuorten Uuden Musiikin Ilta NUMI är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.", "en": "Nuorten Uuden Musiikin Ilta NUMI ('Evening of New Music by Young People') is a free-of-charge music event where artists aged 13–29 have a low-threshold chance to perform." }, "provider_contact_info": null, "description": { "fi": "<p>Nuorten Uuden Musiikin Ilta NUMI on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.</p><p>Lavalle nousee kahdeksan avoimen haun kautta valittua esiintyjää, jotka esittävät 1–2 kappaletta ja saavat palautetta kokeneilta mentoreilta. NUMI tukee nuoria musiikintekijöitä kehittymään ja verkostoitumaan.</p><p>Seuraa @numi.hel Instagramissa ja laita DM, jos haluat mukaan järjestämään – tehdään yhdessä tilaa uudelle musiikille!</p><p>Tapahtuma on ilmainen ja päihteetön.</p><p>Kesto: 2 tuntia<br>Kieli: monikielinen</p>", "sv": "<p>Nuorten Uuden Musiikin Ilta NUMI är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.</p><p>Åtta artister som valts ut i en öppen ansökan stiger upp på scenen för att framföra 1–2 låtar, och får respons från erfarna mentorer. NUMI hjälper unga musiker att utvecklas och skapa nätverk.</p><p>Följ @numi.hel på Instagram och skicka ett DM och du vill vara med och arrangera – tillsammans skapar vi plats för ny musik!</p><p>Evenemanget är gratis och rusmedelsfritt.</p><p>Längd: 2 timmar<br>Språk: flerspråkig</p>", "en": "<p>Nuorten Uuden Musiikin Ilta NUMI ('Evening of New Music by Young People') is a free-of-charge music event where artists aged 13–29 have a low-threshold chance to perform.</p><p>Eight performers, selected through an open call, will take to the stage to perform one or two songs and receive feedback from experienced mentors. NUMI supports young musicians in developing their craft and networking.</p><p>Follow @numi.hel on Instagram and DM us if you want to get involved – let's make room for new music together!</p><p>Admission is free and the event is drug and alcohol free.</p><p>Duration: 2 hours<br>Language: multilingual</p>" }, "name": { "fi": "NUMI: Nuorten Uuden Musiikin Ilta", "sv": "NUMI: Nuorten Uuden Musiikin Ilta", "en": "NUMI: Nuorten Uuden Musiikin Ilta" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7656CF06FDC67D66E16462FD412AF746/NUMI_Nuorten_Uuden_Musiikin_Ilta", "sv": "http://www.stoa.fi/sv/evenemang/event/7656CF06FDC67D66E16462FD412AF746/NUMI_Nuorten_Uuden_Musiikin_Ilta", "en": "http://www.stoa.fi/en/events/event/7656CF06FDC67D66E16462FD412AF746/NUMI_Nuorten_Uuden_Musiikin_Ilta" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69542/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69051", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201330, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-19T07:16:13.851561Z", "last_modified_time": "2026-05-19T07:16:13.851574Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792477.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201330/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-19T07:16:13.741635Z", "last_modified_time": "2026-07-02T13:14:14.798077Z", "date_published": null, "start_time": "2026-08-21T14: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, "provider": null, "short_description": { "fi": "Petteri Sariola tunnetaan energisistä live-esiintymisistään, vahvoista sävellyksistään ja perkussiivisesta soittotyylistään akustisella kitaralla.", "sv": "Petteri Sariola är känd för sina energiska liveframträdanden, sina kraftfulla kompositioner och sin perkussiva spelstil på akustisk gitarr.", "en": "Petteri Sariola is known for his energetic live performances, his powerful compositions and his percussive style of playing the acoustic guitar." }, "provider_contact_info": null, "description": { "fi": "<p>Petteri Sariola tunnetaan energisistä live-esiintymisistään, vahvoista sävellyksistään ja perkussiivisesta soittotyylistään akustisella kitaralla.</p><p>Virtuoottinen kitaristi ja laulaja-lauluntekijä tarttui soittimeen seitsemän vuoden iässä, ja useiden epäonnistuneiden bändikokeilujen jälkeen hän kehitti oman tyylinsä, joka jäljittelee kokonaisen yhtyeen soundia yhdellä kitaralla.</p><p>Sariola on julkaissut neljä sooloalbumia, soittanut yli tuhat keikkaa Euroopassa, USA:ssa ja Japanissa sekä saavuttanut miljoonia katsojia YouTube-kanavallaan. Hänen viides studioalbuminsa <i>Voyager</i> julkaistiin syksyllä 2025. Levy aloitti uuden moniosaisen rock-oopperakokonaisuuden, jonka seuraava osa tulee lähivuosina.</p><p>Sariola yhdistää musiikissaan luontevasti rockin ja taidemusiikin elementtejä. Hänen omista sävellyksistään koostuvan levytrilogian viimeinen osa, <i>Resolution</i> (2017), sai Helsingin Sanomien arviossa viisi tähteä. Hänelle on myönnetty Nokia Young Talent -stipendi, Helsinki Funk Awards -kunniamaininta ja City-lehden Vuoden kitaristi -tunnustus. Hän on haastateltavana merkittävissä kitarajulkaisuissa mm. Akustik Gitarre -lehdessä ja Yhdysvaltalaisessa Guitar Player -lehdessä. Hän on toiminut lämmittelijänä mm. Tori Amosille (USA), Andy McKeelle (USA) ja Rodrigo y Gabrielalle (MEX) sekä esiintynyt yhdessä Jon Gommin (UK), Mike Dawesin (UK), Elastisen, Robinin ja Jenni Vartiaisen kanssa.</p>", "sv": "<p>Petteri Sariola är känd för sina energiska liveframträdanden, sina kraftfulla kompositioner och sin perkussiva spelstil på akustisk gitarr.</p><p>Den virtuose gitarristen, sångaren och låtskrivaren började spela redan som sjuåring, och efter flera misslyckade bandförsök utvecklade han sin egen stil, som efterliknar ett helt bands sound med en enda gitarr.</p><p>Sariola har släppt fyra soloalbum, gett över tusen konserter i Europa, USA och Japan samt nått miljontals tittare på sin YouTube-kanal. Hans femte studioalbum, Voyager, släpptes hösten 2025. Skivan var starten på en ny rockopera i flera delar, vars nästa del kommer att släppas inom de närmaste åren.</p><p>I sin musik förenar Sariola på ett naturligt sätt element från rock och klassisk musik. Den sista delen, Resolution (2017), i en skivtrilogi som består av hans egna kompositioner fick fem stjärnor i en recension i Helsingin Sanomat. Han har tilldelats stipendiet Nokia Young Talent, ett hedersomnämnande vid Helsinki Funk Awards och utmärkelsen Årets gitarrist av tidningen City. Han har medverkat i intervjuer i framstående gitarrtidskrifter, bland annat tidningen Akustik Gitarre och den amerikanska tidningen Guitar Player. Han har varit förband åt bland andra Tori Amos (USA), Andy McKee (USA) och Rodrigo y Gabriela (MEX) samt uppträtt tillsammans med Jon Gomm (Storbritannien), Mike Dawes (Storbritannien), Elastinen, Robin och Jenni Vartiainen.</p>", "en": "<p>Petteri Sariola is known for his energetic live performances, his powerful compositions and his percussive style of playing the acoustic guitar.</p><p>A virtuoso guitarist and singer-songwriter, he picked up the instrument at the age of seven, and after several unsuccessful attempts at playing in bands, he developed his own style, which imitates the sound of an entire band with just one guitar. <br> <br>Sariola has released four solo albums, played over a thousand gigs across Europe, the US and Japan, and attracted millions of viewers on his YouTube channel. His fifth studio album, Voyager, was released in autumn 2025. The album marked the start of a new multi-part rock opera, the next part of which is due to be released in the coming years.</p><p>In his music, Sariola effortlessly blends elements of rock and art music. The final instalment of his trilogy of albums consisting of his own compositions, Resolution (2017), received a five-star review in Helsingin Sanomat. He has been granted the Nokia Young Talent award, an honourable mention at the Helsinki Funk Awards, and the title of ‘Guitarist of the Year’ by the City newspaper. He has been interviewed in leading guitar publications, including Akustik Gitarre and the US magazine Guitar Player. He has opened for artists such as Tori Amos (USA), Andy McKee (USA) and Rodrigo y Gabriela (MEX), and has performed alongside Jon Gomm (UK), Mike Dawes (UK), Elastinen, Robin and Jenni Vartiainen.</p>" }, "name": { "fi": "Petteri Sariola", "sv": "Petteri Sariola", "en": "Petteri Sariola" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9CC46685CB41FF0B53C79E52CA9E6002/Petteri_Sariola", "sv": "http://www.espanlava.fi/sv/evenemang/event/9CC46685CB41FF0B53C79E52CA9E6002/Petteri_Sariola", "en": "http://www.espanlava.fi/en/events/event/9CC46685CB41FF0B53C79E52CA9E6002/Petteri_Sariola" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69051/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69576", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385476, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-02T13:14:13.723356Z", "last_modified_time": "2026-07-02T13:14:13.723372Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795910.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385476/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-02T13:14:13.610730Z", "last_modified_time": "2026-07-02T13:14:13.866555Z", "date_published": null, "start_time": "2026-08-20T13:00:00Z", "end_time": "2026-08-20T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!", "en": "Cultural Centre Stoa welcomes the recently arrived international residents to Helsinki!" }, "provider_contact_info": null, "description": { "fi": "<p>Welcome Day toivottaa vasta Suomeen muuttaneet uudet asukkaat tervetulleeksi Helsinkiin!</p><p>Tapahtumassa tuoreet kaupunkilaiset pääsevät tutustumaan oman asuinalueensa palveluihin, harrastuksiin ja vapaa-ajan tarjontaan.</p><p>Welcome Day tarjoaa hyödyllisen tiedon lisäksi hauskaa, inspiroivaa ja yhteisöllistä ohjelmaa kaikenikäisille.</p><p>Welcome Dayssa puhumme englantia, minkä lisäksi tarjoamme tulkkausta tarpeen mukaan.</p><p>Vapaa pääsy.</p>", "en": "<p>Cultural Centre Stoa welcomes the recently arrived international residents to Helsinki!</p><p>In this event new residents will get to know the services, hobbies and other leisure time activities available to them in their neighborhoods.</p><p>In addition to providing useful information, the Welcome Day program includes fun, inspiring and communal activities for people of all ages.</p><p>We speak English at Welcome Day. Additionally, interpreters will be present at the event. The event is free to attend.</p>" }, "name": { "fi": "Stoa Welcome Day", "sv": "Stoa Welcome Day", "en": "Stoa Welcome Day" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CC76439FAD1D0F175D1C9A29EF2F786E/Stoa_Welcome_Day_", "sv": "http://www.stoa.fi/sv/evenemang/event/CC76439FAD1D0F175D1C9A29EF2F786E/Stoa_Welcome_Day_", "en": "http://www.stoa.fi/en/events/event/CC76439FAD1D0F175D1C9A29EF2F786E/Stoa_Welcome_Day_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69576/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69286", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385006, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T08:13:22.424670Z", "last_modified_time": "2026-06-09T08:13:22.424683Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791101.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385006/?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-09T08:13:22.275573Z", "last_modified_time": "2026-07-02T12:14:24.813601Z", "date_published": null, "start_time": "2026-08-22T07:30:00Z", "end_time": "2026-08-22T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa viettämään kiireetöntä ja vapaata aikaa tanssin, leikin ja lähiluonnon parissa!", "sv": "Trevlig samvaro i dansens och naturens tecken!", "en": "Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!" }, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa viettämään kiireetöntä ja vapaata aikaa tanssin, leikin ja lähiluonnon parissa!</p><p>Arjen keskellä on välillä vaikea löytää hetkiä vain olla yhdessä ja leikkiä tai vaikkapa mennä tutustumaan lähimetsään.</p><p>Työpajat tarjoavat mahdollisuuden aikuisille ja lapsille viettää kiireetöntä ja vapaata aikaa tanssin, leikin ja lähiluonnon parissa. Työpajoissa keskitytään erityisesti leikkimiseen ja yhdessä liikkumiseen tanssillisten tehtävien kautta. Työpajojen aiheet kulkevat mielikuvitus leikeistä tarinoihin, peleihin, metsässä kulkemiseen ja tutkimiseen yhdessä.</p><p>Työpajoja ohjaavat tanssitaiteilija tanssipedagogi <b>Jenni Koistinen</b> ja tanssitaiteilija-koreografi <b>Virva Talonen</b>.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi.</p><p><b>KENELLE?</b> Kaikille tanssista, leikistä ja luonnosta kiinnostuneille perheille ja aikuisille lapsen kanssa (äidit, isät, isovanhemmat, tädit, sedät, kummit, ystävät, serkut ja sisaret…). Toivomme osallistujien sitoutuvan koko syyskauden kerroille. Työpajoihin osallistuminen ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p><b>MISSÄ?</b> Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p><b>MILLOIN?</b> Lauantaisin klo 10.30–11.45<br>Päivämäärät: 22.8., 29.8.,<br>5.9., 12.9., 19.9., 26.9.,<br>3.10., 10.10., 24.10. ja<br>7.11.2026. Ei 17.10.</p><p><b>MITEN ILMOITTAUDUN?</b> Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen <b>artofknowing2025@gmail.com</b>. Ilmoittautumisen yhteydessä kerro:</p><p>• Osallistujien nimi / nimet <br>• Puhelinnumero <br>• Ryhmä, johon osallistutaan (<b>5–8-vuotiaat aikuisineen</b> / 3.–6.-luokkalaiset / Nuoret ja aikuiset)</p><p><b>MISTÄ LISÄTIETOJA?</b> Vuotalon kulttuurituottaja Salla Fornaro: 0405371520</p>", "sv": "<p>Trevlig samvaro i dansens och naturens tecken!</p><p>Under verkstäderna har du möjlighet att lära dig mer om olika sätt att dansa och röra dig på ditt eget sätt inomhus och utomhus. Du har möjlighet att skapa egna danser och små uppträdanden på olika teman, både på egen hand och tillsammans med andra.</p><p>Verkstäderna leds av danskonstnären och -pedagogen <b>Jenni Koistinen</b> samt danskonstnären och koreografen <b>Virva Talonen</b>. I diskussionerna deltar också forskarna Anna Rainio och Tuija Kasa.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Konestiftelsen och där vi i samarbete med forskare och danskonstnärer utvecklar demokratiska och inkluderande metoder, där lek, kroppslighet och naturen är viktiga källor till kunskap. <br> <br>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi.</p><p><b>FÖR VEM?</b> För alla familjer och vuxna med barn som är intresserade av naturen (mammor, pappor, mor- och farföräldrar, mostrar, fastrar, morbröder, farbröder, faddrar, vänner, kusiner, syskon osv.). Deltagande i verkstäderna kräver ingen tidigare bakgrund inom eller erfarenhet av dans. Verkstäderna hålls på finska, och vid behov använder vi också svenska och engelska.</p><p><b>VAR?</b> Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö. De som anmält sig till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p><b>NÄR?</b> Lördagar kl. 10.30–11.45. <br>Datum: 22.8, 29.8, <br>5.9, 12.9, 19.9, 26.9, <br>3.10, 10.10, 24.10 och <br>7.11.2026. Inte lördagen den 17 oktober under höstlovsveckan.</p><p><b>HUR ANMÄLER JAG MIG?</b> Anmälan sker via e-post till adressen <b>artofknowing2025@gmail.com</b>. Ange följande i anmälan: <br> <br>• Deltagarens namn och telefonnummer <br>• Vårdnadshavarens namn och telefonnummer <br>• Vilken grupp deltagaren deltar i (<b>5–8-åringar tillsammans med en vuxen</b> / elever i årskurs 3–6 / ungdomar och vuxna) <br> <br><b>VAR FÅR JAG MER INFORMATION?</b> Salla Fornaro, kulturproducent på Nordhuset: 040 537 15 20</p>", "en": "<p>Come spend unhurried leisure time with us dancing, playing and enjoying the local nature!</p><p>In these workshops, you get to explore different ways of dancing and moving in your own way, both indoors and outdoors. You get to create your own dances and put on short performances on various themes, either on your own or together with others.</p><p>The workshops are instructed by dance artist and educator <b>Jenni Koistinen</b> and dance artist and choreographer <b>Virva Talonen</b>. The discussions also feature researchers Anna Rainio and Tuija Kasa.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop democratic and participatory methods in which play, embodiment and nature are important sources of knowing.</p><p>When you participate in the workshops, you also have a chance to take part in the research project if you wish. For more information on the project, please contact: anna.rainio@helsinki.fi.</p><p><b>FOR WHOM?</b> For all families and adults with a child interested in nature (mothers, fathers, grandparents, aunts, uncles, godparents, friends, cousins, siblings, etc.). No previous dance background or experience is required for attending the workshops. The workshops are instructed in Finnish, and we can also speak Swedish and English where necessary./// 5-8-vuotiaat ja perheet:</p><p><b>WHERE?</b> The workshops are held in the Small Hall room of Vuosaari House and in the nearby forests of Vuosaari. Those registered for the workshops receive more information about the assembly places before the course starts.</p><p><b>WHEN?</b> Saturdays at 10.30–11.45. <br>Dates: 22 August, 29 August, <br>5 September, 12 September, 19 September, 26 September, <br>3 October, 10 October, 24 October, and <br>7 November 2026. Not held on Saturday 17 October during the autumn break week.</p><p><b>HOW DO I SIGN UP?</b> You can sign up by sending email to <b>artofknowing2025@gmail.com</b>. When signing up, please provide the following details: <br> <br>• The participant’s name and telephone number <br>• The guardian’s name and telephone number <br>• The group that you are signing up for (<b>children aged 5–8 with an adult</b> / children in grades 3–6 / young people and adults) <br> <br><b>WHERE CAN I FIND MORE INFORMATION?</b> Salla Fornaro, cultural producer at Vuosaari House: +358 40 537 1520</p>" }, "name": { "fi": "Tanssi- ja luontotyöpajat – 5–8-vuotiaille ja heidän lähiaikuisilleen", "sv": "Dans- och naturverkstäder – För barn i åldern 5–8 år och deras nära vuxna", "en": "Dance and nature workshops – For children aged 5–8 and their close adults" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/429FD1F888270B7B5666FA46E4B583DD/Tanssi-_ja_luontotyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/429FD1F888270B7B5666FA46E4B583DD/Dans-_och_naturverkstader", "en": "http://www.vuotalo.fi/en/events/event/429FD1F888270B7B5666FA46E4B583DD/Dance_and_nature_workshops" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69286/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69573", "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:31/?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:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "18 € / 15 €", "sv": "18 € / 15 €", "en": "18 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/saeidnaghibshanbehzadeh/", "sv": "https://www.lippu.fi/artist/saeidnaghibshanbehzadeh/", "en": "https://www.lippu.fi/artist/saeidnaghibshanbehzadeh/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385473, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-02T12:14:24.212412Z", "last_modified_time": "2026-07-02T12:14:24.212428Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795894.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385473/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-02T12:14:24.101517Z", "last_modified_time": "2026-07-02T12:14:24.372100Z", "date_published": null, "start_time": "2026-08-20T17:00:00Z", "end_time": "2026-08-20T18:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Middle East Jam Festival huipentuu kansainvälisesti arvostetun iranilaisen mestarimuusikko Saeid Shanbehzadehin konserttiin.", "en": "Saeid Shanbehzadeh is an internationally acclaimed Iranian master musician, known for revitalizing the traditional music of southern Iran." }, "provider_contact_info": null, "description": { "fi": "<p>Middle East Jam Festival huipentuu kansainvälisesti arvostetun iranilaisen mestarimuusikko Saeid Shanbehzadehin konserttiin.</p><p>Hänet tunnetaan Etelä-Iranin Bushehrin alueen perinteisen musiikin uudistajana. Hänen rinnallaan esiintyy hänen poikansa, virtuoosimainen lyömäsoittaja Naghib Shanbehzadeh.</p><p>Heidän musiikkinsa yhdistää Persianlahden alueen rikkaan perinteen hypnoottisiin rytmeihin, vahvaan grooveen ja nykyaikaisiin sävyihin. Lavalla duo luo intensiivisen ja energisen konserttikokemuksen, jossa ney-anbanin tunnistettava soundi ja virtuoottinen lyömäsoitto vievät yleisön transsimaiseen tunnelmaan.</p>", "en": "<p>Saeid Shanbehzadeh is an internationally acclaimed Iranian master musician, known for revitalizing the traditional music of southern Iran.</p><p>He performs together with his son, virtuoso percussionist Naghib Shanbehzadeh.</p><p>Their music blends the rich traditions of the Persian Gulf with hypnotic rhythms, powerful groove, and contemporary expression. On stage, the duo creates an intense and energetic performance where the distinctive sound of the ney-anban (Iranian bagpipe) and dynamic percussion draw the audience into a trance-like experience.</p>" }, "name": { "fi": "Saeid & Naghib Shanbehzadeh (IRN/FRA) – Taiteiden yö", "sv": "Saeid & Naghib Shanbehzadeh (IRN/FRA) – Taiteiden yö", "en": "Saeid & Naghib Shanbehzadeh (IRN/FRA) – Night of the Arts" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DF444C606F6CF1D1E3F59221301662F3/Saeid_Naghib_Shanbehzadeh_IRN_FRA_", "sv": "http://www.stoa.fi/sv/evenemang/event/DF444C606F6CF1D1E3F59221301662F3/Saeid_Naghib_Shanbehzadeh_IRN_FRA_", "en": "http://www.stoa.fi/en/events/event/DF444C606F6CF1D1E3F59221301662F3/Saeid_Naghib_Shanbehzadeh_IRN_FRA_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69573/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69285", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?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/yso:p1278/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385005, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T08:13:21.371134Z", "last_modified_time": "2026-06-09T08:13:21.371151Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791088.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385005/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T08:13:21.196284Z", "last_modified_time": "2026-07-02T12:14:23.594843Z", "date_published": null, "start_time": "2026-08-20T15:00:00Z", "end_time": "2026-08-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa viettämään kiireetöntä aikaa tanssin ja lähiluonnon parissa!", "sv": "Välkommen till en avkopplande stund med dans och den lokala naturen!", "en": "Come spend unhurried time with us dancing and enjoying the local nature!" }, "provider_contact_info": null, "description": { "fi": "<p>Tervetuloa viettämään kiireetöntä aikaa tanssin ja lähiluonnon parissa!</p><p>Työpajoissa pääset tutustumaan erilaisiin tapoihin tanssia ja liikkua omalla tavallasi. Työpajat tapahtuvat sekä tanssisalissa että Vuosaaren alueen lähiluonnossa. Työpajoissa keskitytään erityisesti yhdessä liikkumiseen tanssillisten tehtävien, leikkien ja pelien kautta. Yhtenä keskeisenä teemana työpajoissa on metsä ja sen ekosysteemi.</p><p>Työpajoja ohjaavat tanssitaiteilija tanssipedagogi <b>Jenni Koistinen</b> ja tanssitaiteilija-koreografi <b>Virva Talonen</b>. Syksyn aikana työpajoissa vierailevat myös tutkijat <b>Anna Rainio</b> ja <b>Tuija Kasa</b>, joiden kanssa keskustelemme työpajoissa syntyneistä aiheista.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi.</p><p><b>KENELLE?</b> Kaikille tanssista ja luonnosta kiinnostuneille nuorille ja aikuisille. Toivomme osallistujien sitoutuvan osallistumaan koko syyskauden kerroille. Työpajoihin osallistuminen ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p><b>MISSÄ?</b> Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p><b>MILLOIN?</b> Torstaisin klo 18–19.30.<br>Päivämäärät: 20.8, 27.8,<br>3.9, 10.9, 17.9, 24.9,<br>1.10, 8.10, 22.10, 29.10 ja<br>5.11.2026. Ei 15.10.</p><p><b>MITEN ILMOITTAUDUN?</b> Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen <b>artofknowing2025@gmail.com</b>. Ilmoittautumisen yhteydessä kerro:</p><p>• Osallistujien nimi / nimet <br>• Puhelinnumero <br>• Ryhmä, johon osallistutaan (5–8-vuotiaat aikuisineen / 3.–6.-luokkalaiset / <b>Nuoret ja aikuiset</b>)</p><p><b>MISTÄ LISÄTIETOJA?</b> Vuotalon kulttuurituottaja Salla Fornaro: 0405371520</p>", "sv": "<p>Välkommen till en avkopplande stund med dans och den lokala naturen!</p><p>Verkstäderna ger dig möjlighet att lära dig att dansa och motionera på ditt sätt. Verkstäderna hålls både i danssalen och i naturen i Nordsjö. Verkstäderna fokuserar särskilt på att röra på sig tillsammans genom dansövningar, lekar och spel. Ett centralt tema i verkstäderna är skogen och dess ekosystem.</p><p>Verkstäderna leds av danskonstnären och -pedagogen <b>Jenni Koistinen</b> samt danskonstnären och koreografen <b>Virva Talonen</b>. Under hösten besöks verkstäderna också av forskarna Anna Rainio och Tuija Kasa, som vi diskuterar de teman som uppstår i verkstäderna med.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Konestiftelsen och där vi i samarbete med forskare och danskonstnärer utvecklar demokratiska och inkluderande metoder, där lek, kroppslighet och naturen är viktiga källor till kunskap. <br> <br>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi.</p><p><b>FÖR VEM?</b> För alla ungdomar och vuxna som är intresserade av dans och natur. Vi önskar att deltagarna förbinder sig att delta i alla höstterminens verkstäder. Deltagande i verkstäderna kräver ingen tidigare bakgrund inom eller erfarenhet av dans. Verkstäderna hålls på finska, och vid behov använder vi också svenska och engelska.</p><p><b>VAR?</b> Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö. De som anmält sig till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p><b>NÄR?</b> Torsdagar kl. 18–19.30. <br>Datum: 20.8, 27.8, <br>3.9, 10.9, 17.9, 24.9, <br>1.10, 8.10, 22.10, 29.10 och <br>5.11.2026. Inte 15.10.</p><p><b>HUR ANMÄLER JAG MIG?</b> Anmälan sker via e-post till adressen <b>artofknowing2025@gmail.com</b>. Ange följande i anmälan: <br> <br>• Deltagarens namn eller deltagarnas namn <br>• Telefonnummer <br>• Vilken grupp deltagaren deltar i (5–8-åringar tillsammans med en vuxen / elever i årskurs 3–6 / <b>ungdomar och vuxna</b>) <br> <br><b>VAR FÅR JAG MER INFORMATION?</b> Salla Fornaro, kulturproducent på Nordhuset: 040 537 15 20</p>", "en": "<p>Come spend unhurried time with us dancing and enjoying the local nature!</p><p>In these workshops, you get to explore different ways of dancing and moving in your own way. The workshops are held both in a dance hall and in the local nature of the Vuosaari area. The workshops focus particularly on moving together through dance-based exercises, play and games. One of the key themes of the workshops is the forest and its ecosystem.</p><p>The workshops are instructed by dance artist and educator <b>Jenni Koistinen</b> and dance artist and choreographer <b>Virva Talonen</b>. During the autumn, the workshops also feature researchers Anna Rainio and Tuija Kasa, with whom we discuss the topics that emerge in the workshops.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop democratic and participatory methods in which play, embodiment and nature are important sources of knowing. <br> <br>When you participate in the workshops, you also have a chance to take part in the research project if you wish. For more information on the project, please contact: anna.rainio@helsinki.fi.</p><p><b>FOR WHOM?</b> For all young people and adults interested in dance and nature. We hope that participants commit to attending the sessions during the autumn semester. No previous dance background or experience is required for attending the workshops. The workshops are instructed in Finnish, and we can also speak Swedish and English where necessary.</p><p><b>WHERE?</b> The workshops are held in the Small Hall room of Vuosaari House and in the nearby forests of Vuosaari. Those registered for the workshops receive more information about the assembly places before the course starts.</p><p><b>WHEN?</b> Thursdays at 18.00–19.30. <br>Dates: 20 August, 27 August, <br>3 September, 10 September, 17 September, 24 September, <br>1 October, 8 October, 22 October, 29 October and <br>5 November 2026. Not held on 15 October.</p><p><b>HOW DO I SIGN UP?</b> You can sign up by sending email to <b>artofknowing2025@gmail.com</b>. When signing up, please provide the following details: <br> <br>• The participant’s name or participants’ names <br>• Telephone number <br>• The group that you are signing up for (children aged 5–8 with an adult / children in grades 3–6 / <b>young people and adults</b>) <br> <br><b>WHERE CAN I FIND MORE INFORMATION?</b> Salla Fornaro, cultural producer at Vuosaari House: +358 40 537 1520</p>" }, "name": { "fi": "Tanssi- ja luontotyöpajat – Nuorille ja aikuisille", "sv": "Dans- och naturverkstäder – För ungdomar och vuxna", "en": "Dance and nature workshops – For young people and adults" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1B1793AA24B9BF2A2540278ABB024F42/Tanssi-_ja_luontotyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1B1793AA24B9BF2A2540278ABB024F42/Dans-_och_naturverkstader", "en": "http://www.vuotalo.fi/en/events/event/1B1793AA24B9BF2A2540278ABB024F42/Dance_and_nature_workshops" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69285/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69284", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384993, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:23.909731Z", "last_modified_time": "2026-06-09T07:13:23.909749Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791077.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384993/?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-09T07:13:23.709689Z", "last_modified_time": "2026-07-02T12:14:22.844724Z", "date_published": null, "start_time": "2026-08-20T13:30:00Z", "end_time": "2026-08-20T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kivaa yhdessäoloa tanssin ja lähiluonnon parissa!", "sv": "Trevlig samvaro i dansens och naturens tecken!", "en": "Let us have a lovely time together, enjoying dance and nature!" }, "provider_contact_info": null, "description": { "fi": "<p>Kivaa yhdessäoloa tanssin ja lähiluonnon parissa!</p><p>Työpajoissa pääset tutustumaan erilaisiin tapoihin tanssia ja liikkua yksin ja yhdessä muiden kanssa. Työpajat tapahtuvat sekä tanssisalissa että Vuosaaren alueen lähiluonnossa. Työpajoissa teemme omia tansseja sekä pieniä esityksiä erilaisista aiheista. <br>Voit tuoda mukanasi omaa musiikkia ja omia tanssi-ideoita, joita voimme yhdessä kehitellä eteenpäin!</p><p>Työpajoja ohjaavat tanssitaiteilija, tanssipedagogi <b>Jenni Koistinen</b> ja tanssitaiteilija, koreografi <b>Virva Talonen</b> . Syksyn aikana työpajoissa vierailevat myös tutkijat <b>Anna Rainio</b> ja <b>Tuija Kasa</b>, joiden kanssa keskustelemme työpajoissa syntyneistä aiheista.</p><p>Työpajat ovat osa Koneen säätiön rahoittamaa Helsingin yliopiston Tietämisen taide -hanketta, jossa kehitämme yhteistyössä tutkijoiden ja tanssitaiteilijoiden kanssa demokraattisia ja osallistavia menetelmiä, joissa leikki, kehollisuus ja luonto ovat tärkeitä tietämisen lähteitä.</p><p>Osallistuessasi työpajoihin sinulla on halutessasi mahdollisuus olla mukana tutkimuksessa. <br>Lisätietoja tutkimuksesta: anna.rainio@helsinki.fi.</p><p><b>KENELLE?</b> Kaikille tanssista, esiintymisestä ja luonnosta kiinnostuneille 3.–6. luokkalaisille. Toivomme osallistujien sitoutuvan osallistumaan syyskauden kerroille. Työpajoihin osallistuminen ei vaadi aikaisempaa tanssitaustaa tai -kokemusta. Työpajat ohjataan suomeksi ja tarvittaessa käytämme myös ruotsin ja englannin kieltä.</p><p><b>MISSÄ?</b> Työpajat pidetään Vuotalolla Pikkusalissa sekä Vuosaaren alueen lähimetsissä. Työpajoihin ilmoittautuneet saavat tarkemmat tiedot kokoontumispaikoista ennen kurssin alkua.</p><p><b>MILLOIN?</b> Torstaisin klo 16.30–17.30. <br>Päivämäärät: 20.8, 27.8, <br>3.9, 10.9, 17.9, 24.9, <br>1.10, 8.10, 22.10, 29.10 ja <br>5.11.2026. Ei syyslomaviikon torstaina 15.10.</p><p><b>MITEN ILMOITTAUDUN?</b> Ilmoittautuminen tapahtuu sähköpostitse osoitteeseen <b>artofknowing2025@gmail.com</b> Ilmoittautumisen yhteydessä kerro:</p><p>• Osallistujan nimi ja puhelinnumero <br>• Huoltajan nimi ja puhelinnumero <br>• Ryhmä, johon osallistutaan (5–8-vuotiaat aikuisineen / <b>3.–6.-luokkalaiset</b> / Nuoret ja aikuiset)</p><p><b>MISTÄ LISÄTIETOJA?</b> Vuotalon kulttuurituottaja Salla Fornaro: 0405371520</p>", "sv": "<p>Trevlig samvaro i dansens och naturens tecken!</p><p>Under verkstäderna har du möjlighet att lära dig mer om olika sätt att dansa och röra dig på ditt eget sätt inomhus och utomhus. Du har möjlighet att skapa egna danser och små uppträdanden på olika teman, både på egen hand och tillsammans med andra.</p><p>Verkstäderna leds av danskonstnären och -pedagogen <b>Jenni Koistinen</b> samt danskonstnären och koreografen <b>Virva Talonen</b>. I diskussionerna deltar också forskarna Anna Rainio och Tuija Kasa.</p><p>Verkstäderna ingår i Helsingfors universitets projekt Tietämisen taide, som finansieras av Konestiftelsen och där vi i samarbete med forskare och danskonstnärer utvecklar demokratiska och inkluderande metoder, där lek, kroppslighet och naturen är viktiga källor till kunskap. <br> <br>När du deltar i verkstäderna har du möjlighet att delta i forskningsprojektet om du vill. Mer information om forskningsprojektet: anna.rainio@helsinki.fi.</p><p><b>FÖR VEM?</b> För alla elever i årskurs 3–6 som är intresserade av dans, scenframträdanden och naturen. Vi önskar att deltagarna förbinder sig att delta i alla höstterminens verkstäder. Deltagande i verkstäderna kräver ingen tidigare bakgrund inom eller erfarenhet av dans. Verkstäderna hålls på finska, och vid behov använder vi också svenska och engelska.</p><p><b>VAR?</b> Verkstäderna hålls i Lilla salen i Nordhuset och i närliggande skogar i Nordsjö. De som anmält sig till verkstäderna får närmare information om var de ska samlas innan kursen börjar.</p><p><b>NÄR?</b> Torsdagar kl. 16.30–17.30. <br>Datum: 20.8, 27.8, <br>3.9, 10.9, 17.9, 24.9, <br>1.10, 8.10, 22.10, 29.10 och <br>5.11.2026. Inte torsdagen den 15 oktober under höstlovsveckan.</p><p><b>HUR ANMÄLER JAG MIG?</b> Anmälan sker via e-post till adressen <b>artofknowing2025@gmail.com</b>. Ange följande i anmälan: <br> <br>• Deltagarens namn och telefonnummer <br>• Vårdnadshavarens namn och telefonnummer <br>• Vilken grupp deltagaren deltar i (5–8-åringar tillsammans med en vuxen/<b>Elever i årskurs 3–6</b>/Ungdomar och vuxna) <br> <br><b>VAR FÅR JAG MER INFORMATION?</b> Salla Fornaro, kulturproducent på Nordhuset: 040 537 15 20</p>", "en": "<p>Let us have a lovely time together, enjoying dance and nature!</p><p>In these workshops, you get to explore different ways of dancing and moving in your own way, both indoors and outdoors. You get to create your own dances and put on short performances on various themes, either on your own or together with others.</p><p>The workshops are instructed by dance artist and educator <b>Jenni Koistinen</b> and dance artist and choreographer <b>Virva Talonen</b>. The discussions also feature researchers Anna Rainio and Tuija Kasa.</p><p>The workshops are part of the University of Helsinki’s Art of Knowing project, funded by the Kone Foundation, in which we work with researchers and dance artists to develop democratic and participatory methods in which play, embodiment and nature are important sources of knowing.</p><p>When you participate in the workshops, you also have a chance to take part in the research project if you wish. For more information on the project, please contact: anna.rainio@helsinki.fi.</p><p><b>FOR WHOM?</b> For all 3rd–6th grade pupils interested in dance, performing and nature. We hope that participants commit to attending the sessions during the autumn semester. No previous dance background or experience is required for attending the workshops. The workshops are instructed in Finnish, and we can also speak Swedish and English where necessary./// 5-8-vuotiaat ja perheet:</p><p><b>WHERE?</b> The workshops are held in the Small Hall room of Vuosaari House and in the nearby forests of Vuosaari. Those registered for the workshops receive more information about the assembly places before the course starts.</p><p><b>WHEN?</b> Thursdays at 16.30–17.30. <br>Dates: 20 August, 27 August, <br>3 September, 10 September, 17 September, 24 September, <br>1 October, 8 October, 22 October, 29 October and <br>5 November 2026. Not held on Thursday 15 October during the autumn break week.</p><p><b>HOW DO I SIGN UP?</b> You can sign up by sending email to <b>artofknowing2025@gmail.com</b>. When signing up, please provide the following details: <br> <br>• The participant’s name and telephone number <br>• The guardian’s name and telephone number <br>• The group that you are signing up for (children aged 5–8 with an adult / <b> children in grades 3–6</b> / young people and adults) <br> <br><b>WHERE CAN I FIND MORE INFORMATION?</b> Salla Fornaro, cultural producer at Vuosaari House: +358 40 537 1520</p>" }, "name": { "fi": "Tanssi- ja luontotyöpajat – 3.–6. luokkalaisille", "sv": "Dans- och naturverkstäder – För barn i årskurs 3–6", "en": "Dance and nature workshops – For children in grades 3–6" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8C55F897B60D15CD90971A00047FA054/Tanssi-_ja_luontotyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8C55F897B60D15CD90971A00047FA054/Dans-_och_naturverkstader", "en": "http://www.vuotalo.fi/en/events/event/8C55F897B60D15CD90971A00047FA054/Dance_and_nature_workshops" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69284/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpsfsvjva", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvbuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvcnq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvcxm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvdbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvdku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvduq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvd6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsveiy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvesa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsve5i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvfia/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvfre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvf3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvgje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvgsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvg3y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvhfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvhou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvhxy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvia4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvile/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvix4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvjcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvjly/?format=api" } ], "images": [ { "id": 1490234, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-29T11:04:17.046656Z", "last_modified_time": "2024-12-29T11:04:17.046676Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/cf9fc4bb-3edd-4954-961e-d7bb3ba2ad8a.jpg", "name": "", "cropping": "426,0,2981,2556", "photographer_name": "", "alt_text": "Askarteluhetki, erilaisia tarvikkeita", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490234/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-02T11:44:36.975664Z", "last_modified_time": "2026-07-02T11:44:36.975679Z", "date_published": null, "start_time": "2026-07-08T13:00:00Z", "end_time": "2026-12-16T16: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, "provider": null, "short_description": { "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja. ", "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.", "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits. " }, "provider_contact_info": null, "description": { "fi": "<p>Joka keskiviikko Sellon kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina ja ideoijina toimivat kirjastolaiset. Toimintaan ei tarvitse ilmoittauta etukäteen. Askartelu on maksutonta. Ei ikärajoja. </p>", "sv": "<p>Varje onsdag bjuder Sello biblioteks verkstad Paja in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p>", "en": "<p>Every Wednesday, Sello library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p>" }, "name": { "fi": "Askartelua Sellon kirjaston Pajassa", "sv": "Hantverk i Sellobibliotekets verkstad", "en": "Crafting in Sello Library's Makerspace" }, "info_url": { "fi": "https://www.helmet.fi/fi-FI/Kirjastot_ja_palvelut/Sellon_kirjasto/Tapahtumat/Askartelua_Sellon_kirjaston_Pajassa(277976)" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvjva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpldm5ify", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpldm5f74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpldm5gw4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpldm5hgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpldm5hwi/?format=api" } ], "images": [ { "id": 2385474, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-02T11:20:06.765094Z", "last_modified_time": "2026-07-02T11:20:06.765109Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/f139019b-43d9-46d4-849e-eaef15430500.jpg", "name": "", "cropping": "144,0,1006,863", "photographer_name": "Sanna Järvi", "alt_text": "Lipaston päällä maljakko, jossa kuivakukkia ja pino kirjoja.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385474/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T12:18:04.696100Z", "last_modified_time": "2026-07-02T11:20:24.714940Z", "date_published": null, "start_time": "2026-09-15T09:00:00Z", "end_time": "2026-12-08T11: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, "provider": null, "short_description": { "fi": "Tervetuloa hyvän mielen kirjakerhoon keskustelemaan kirjoista rennolla meiningillä. Jokaiselle kerralle on valittu kevyempi, hyvän mielen kirja.", "sv": "Välkommen till bokklubben där vi pratar om böcker i en avslappnad miljö. Vi kommer att diskutera en ny feelgood-bok varje gång.", "en": "Welcome to the feel good book club to chat about books in relaxed environment. We'll be discussing about a different feel good book each time." }, "provider_contact_info": null, "description": { "fi": "<p>Hyvän mielen kirjakerho jatkuu taas syksyllä! Lukupiirimme kokoontuu kerran kuukaudessa keskustelemaan kirjoista, kirjallisuudesta ja elämästä. Luemme hieman kevyempää kaunokirjallisuutta ja voit osallistua vaikket olisi lukenut kirjaa tai et olisi pitänyt siitä, kirjoista keskusteleminen on aina antoisaa! Tapaamme tiistaisin klo 12-13 kokoustila Hytissä, lämpimästi tervetuloa kaikki uudet ja vanhat osallistujat!</p><p><br></p><p>Tulevat kerrat:</p><p>15.9. Helena Steen: Paikka hyvässä perheessä</p><p>13.10. Carin Hjulström: Pikku murha vain</p><p>10.11. Laura Suomela: Tulppaanitoiveunia</p><p>8.12. Siri Østli: Uusien alkujen joulukalenteri</p>", "sv": "<p>Bokklubben ”Feel Good” är tillbaka i höst! Vår bokklubb träffas en gång i månaden för att diskutera böcker, litteratur och livet. Vi läser lättsammare skönlitteratur, och du är välkommen att delta även om du inte har läst boken eller inte tyckte om den – att diskutera böcker är alltid givande! Vi träffas på tisdagar kl. 12.00–13.00 i Hytti-mötesrummet. Ett varmt välkomnande till alla nya och återkommande deltagare!</p><p><br></p><p>15.9. Helena Steen: Paikka hyvässä perheessä</p><p>13.10. Carin Hjulström: Pikku murha vain</p><p>10.11. Laura Suomela: Tulppaanitoiveunia</p><p>8.12. Siri Østli: Uusien alkujen joulukalenteri</p><p><br></p><p>Bokklubben är på finska. Välkommen!</p>", "en": "<p>Feel good book club is back this fall! Our book club meets once a month to discuss books, literature, and life. We read lighter works of fiction, and you’re welcome to join even if you haven’t read the book or didn’t like it—discussing books is always rewarding! We meet on Tuesdays from 12:00 to 1:00 p.m. in the Hytti meeting room. A warm welcome to all new and returning participants!</p><p>15.9. Helena Steen: Paikka hyvässä perheessä</p><p>13.10. Carin Hjulström: Pikku murha vain</p><p>10.11. Laura Suomela: Tulppaanitoiveunia</p><p>8.12. Siri Østli: Uusien alkujen joulukalenteri</p><p><br></p><p>The book club is in finnish. Welcome!</p>" }, "name": { "fi": "Hyvän mielen kirjakerho", "sv": "Feel good-bokklubb", "en": "Feel good book club" }, "info_url": null, "location_extra_info": { "fi": "Hytti", "sv": "Hytti", "en": "Hytti" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpldm5ify/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpsfsvnoq", "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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvkme/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvlbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvlum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvmgy/?format=api" } ], "images": [ { "id": 2385475, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T07:55:27.267897Z", "last_modified_time": "2026-07-07T06:49:55.106804Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/64c7b719-d002-431d-87c2-ebc9a36523c0.jpg", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Kukkaniitty ja kirjojen kannet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385475/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-11T07:55:33.818210Z", "last_modified_time": "2026-07-02T11:18:18.543727Z", "date_published": null, "start_time": "2026-08-26T11:00:00Z", "end_time": "2026-12-16T13: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, "provider": null, "short_description": { "fi": "Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!", "en": "Join the Fun at the Sello Library English Book Club!" }, "provider_contact_info": null, "description": { "fi": "<p>Liity Sellon kirjaston hauskaan englanninkieliseen lukupiiriin!</p><p>Rakastatko keskustella kirjallisuudesta? Koetko olevasti huumorintajulla varustettu lukutoukka? Jos vastasit kyllä, silloin Sellon kirjaston englanninkielinen lukupiiri on täydellinen sinulle!</p><p>Lukupiiri kokoontuu elo-marraskuussa kuun viimeisenä keskiviikkona klo 14-15:30.</p><p>Tuo mukanasi älysi, uteliaisuutesi ja rakkautesi hyviä kirjoja kohtaan. Sukelletaan fantastisiin lukuhetkiin ja vielä fantastisempiin keskusteluihin! Liittyäksisi mukaan, lähetä sähköpostia noemi.dienes@gmail.com.</p><p>Älä jää paitsi hauskasta, liity puolentoista tunnin hauskanpitoon. Saat lukupiirin kuukauden kirjan aina ensimmäisen kerroksen infosta ennen jokaista tapaamista.</p><p>Nähdään!</p><p><br></p><p>Kirjat</p><p>1.<a href=\"https://helmet.finna.fi/Search/Results?lookfor=Crossing+%2F+Pajtim+Statovci&type=AllFields\"> Crossing / Pajtim Statovci </a>ke 26.8.2026</p><p><br></p><p>2. <a href=\"https://helmet.finna.fi/Record/helmet.2618149?sid=5358703095\">Flesh / David Szalay</a> ke 30.9.2026</p><p><br></p><p>3.<a href=\"https://helmet.finna.fi/Record/helmet.2288818?sid=5358703620\">The left hand of darkness / Ursula K. Le Guin</a> ke 28.10.2026</p><p><br></p><p>4. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+clues+in+the+fjord+%28Hildur+1%29+%2F+Satu+R%C3%A4m%C3%B6&type=AllFields&limit=20\">The clues in the fjord (Hildur 1) / Satu Rämö</a> ke 25.11.2026</p><p><br></p><p>5.<a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+rest+of+our+lives+%2F+Benjamin+Markovits&type=AllFields&limit=20&sort=relevance\">The rest of our lives / Benjamin Markovits</a> ke 16.12.2026</p>", "en": "<p>Join the Fun at the Sello Library English Book Club!</p><p>Do you love lively discussions about literature? Are you a bookworm with a sense of humor? Then the Sello Library English Book Club is the perfect place for you!</p><p> </p><p>📚 **What:** Sello Library English Book Club</p><p>📅 **When:** Last Wednesdays of the month</p><p>🕑 **Time:** 2 PM to 3:30 PM</p><p>📍 **Where:** Elina Room</p><p><br></p><p>Bring your wit, your curiosity, and your love for great books. Let's dive into fantastic reads and even better conversations! To join send an email to noemi.dienes@gmail.com.</p><p>Don't miss out on the fun—join us for an hour and a half of literary joy and lively banter. You can get the books from the first floor info a month before each meeting.</p><p>See you there!</p><p><br></p><p>Books</p><p>1. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=Crossing+%2F+Pajtim+Statovci&type=AllFields\">Crossing / Pajtim Statovci</a> ke 26.8.2026</p><p><br></p><p>2. <a href=\"https://helmet.finna.fi/Record/helmet.2618149?sid=5358703095\">Flesh / David Szalay</a> ke 30.9.2026</p><p><br></p><p>3<a href=\"https://helmet.finna.fi/Record/helmet.2288818?sid=5358703620\">.The left hand of darkness / Ursula K. Le Guin</a> ke 28.10.2026</p><p><br></p><p>4. <a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+clues+in+the+fjord+%28Hildur+1%29+%2F+Satu+R%C3%A4m%C3%B6&type=AllFields&limit=20\">The clues in the fjord (Hildur 1) / Satu Rämö</a> ke 25.11.2026</p><p><br></p><p>5.<a href=\"https://helmet.finna.fi/Search/Results?lookfor=The+rest+of+our+lives+%2F+Benjamin+Markovits&type=AllFields&limit=20&sort=relevance\">The rest of our lives / Benjamin Markovits</a> ke 16.12.2026</p>" }, "name": { "fi": "Englanninkielinen lukupiiri", "en": "English Book Club" }, "info_url": null, "location_extra_info": { "fi": "Elina", "en": "Elina" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpsfsvnoq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69279", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385000, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:34.311454Z", "last_modified_time": "2026-06-09T07:13:34.311473Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791494.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385000/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:34.216035Z", "last_modified_time": "2026-07-02T11:14:36.650903Z", "date_published": null, "start_time": "2026-10-29T16:00:00Z", "end_time": "2026-10-29T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "provider_contact_info": null, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "name": { "fi": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E3D5DFF78BD9A245E64384ECD6E0E915/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E3D5DFF78BD9A245E64384ECD6E0E915/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/E3D5DFF78BD9A245E64384ECD6E0E915/Eco-art_Thursday_" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69279/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }