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=14
{ "meta": { "count": 23126, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=15", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=13" }, "data": [ { "id": "espoo_le:agpuvnbbda", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnawzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnaxo4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnax4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnayky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnayzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnazhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnazuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna2dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna2qq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna25y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna3li/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna3zq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna4he/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna4uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna5fa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna5ty/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna6cy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna6p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna64y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna7ma/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvna72u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnbaiy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnbawm/?format=api" } ], "images": [ { "id": 2385586, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-10T06:04:51.069785Z", "last_modified_time": "2026-07-10T06:04:51.069799Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/80b8f859-c24c-4723-8faf-ebd4488e3e08.jpg", "name": "3D?", "cropping": "203,0,1048,845", "photographer_name": "", "alt_text": "3D-printtaus?", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385586/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-10T06:10:39.040276Z", "last_modified_time": "2026-07-10T06:37:13.406750Z", "date_published": null, "start_time": "2026-07-17T13:00:00Z", "end_time": "2026-12-18T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "3D-coach Pajassa", "sv": "3D-coach i Verkstaden", "en": "3D-coaching in the Makerspace" }, "location_extra_info": { "fi": "Paja" }, "provider": null, "short_description": { "fi": "Tapaa englanninkielinen 3D-coach \nIson Omenan kirjaston Pajassa.", "sv": "Träffa en engelskspråkig 3D-coach i Verkstaden på Biblioteket i Iso Omena.", "en": "Meet an English-speaking 3D Coach in the Makerspace at Iso Omena Library." }, "info_url": null, "description": { "fi": "<p>Tapaa englanninkielinen 3D-coach Ison Omenan kirjaston Pajassa.</p><p>Vapaaehtoinen coach on paikalla tukemassa sinua 3D-tulostuksen parissa – ei opettajana tai asiantuntijana, vaan rinnalla kulkijana, jonka kanssa voi yhdessä tutkia, kokeilla ja ihmetellä 3D-tulostamisen maailmaa. Olitpa sitten utelias, vasta aloittamassa tai pohtimassa jotain pulmaa, tule rohkeasti mukaan!</p>", "sv": "<p>Träffa en engelskspråkig 3D-coach i Verkstaden på Biblioteket i Iso Omena.</p><p>Den coachen finns på plats för att stötta dig med 3D-utskrift – inte som lärare eller expert, utan som någon som utforskar, testar och lär sig tillsammans med dig. Oavsett om du är nyfiken, precis har börjat eller funderar över ett problem är du varmt välkommen!</p>", "en": "<p>Meet an English-speaking 3D Coach in the Makerspace at Iso Omena Library.</p><p>Our volunteer coach is here to support you with 3D printing—not as a teacher or an expert, but as someone who explores, experiments, and learns alongside you. Whether you're curious, just getting started, or trying to solve a problem, you're warmly welcome to join!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuvnbbda/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpuv2y5km", "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:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67dq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2ywcm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2ywti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yw64/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yxk4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yxwu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yybm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yymm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yyyy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yzem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yzp4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2yz4m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y2je/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y2uq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y3b4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y3m4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y3zu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y4gm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y4ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y47e/?format=api" } ], "images": [ { "id": 1824113, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-12T12:31:33.628454Z", "last_modified_time": "2026-04-12T12:31:33.628467Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/e7fa36a4-df4e-4e75-b669-b6cc6ef99e22.jpg", "name": "", "cropping": "530,0,2689,2160", "photographer_name": "", "alt_text": "taidepäiväkirja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824113/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-10T06:23:04.554962Z", "last_modified_time": "2026-07-10T06:35:29.168292Z", "date_published": null, "start_time": "2026-08-14T14:00:00Z", "end_time": "2026-12-18T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Perjantain taidepäiväkirjapaja", "sv": "Konstjournalworkshop", "en": "Art Journaling on Fridays" }, "location_extra_info": { "fi": "Paja Lounge", "sv": "Paja Lounge", "en": "Paja Lounge" }, "provider": null, "short_description": { "fi": "Perjantain taidepäiväkirjapajassa pysähdytään rennosti luovan tekemisen äärelle. ", "sv": "Letar du efter ett trevligt och avslappnat sätt att stanna upp och väcka din kreativitet? ", "en": "Looking for a simple way to relax, reflect, and get creative? " }, "info_url": null, "description": { "fi": "<p>Perjantain taidepäiväkirjapajassa pysähdytään rennosti luovan tekemisen äärelle. Et tarvitse aiempaa kokemusta — riittää, että otat mukaan muistikirjasi ja avoimen mielen. Materiaalit tekemiseen saat paikan päältä. Irtaudu hetkeksi arjesta, viivy niin kauan kuin itselle sopii, taiteile omalla tyylilläsi ja löydä uusia tekniikoita yhdessätekemällä. Mukana englanninkielinen vapaaehtoinen.</p>", "sv": "<p>Letar du efter ett trevligt och avslappnat sätt att stanna upp och väcka din kreativitet? Du behöver ingen tidigare erfarenhet — det räcker att du tar med din anteckningsbok och ett öppet sinne. Ta en paus från vardagen och njut av skapande utan krav. En engelskspråkig volontär finns på plats.</p>", "en": "<p>Looking for a simple way to relax, reflect, and get creative? Join our Creative Journal Club and discover the art of creative journaling.</p><p>No skills required — just bring your notebook and curiosity. It’s a chance to step back from everyday life, try something different, and enjoy the process of creating.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y5km/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpuv2zffa", "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: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": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y5wu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y6du/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y6qi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y65u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y7jq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2y7wa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zacu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zaou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2za2e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zbgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zbsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zb7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zcli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zcza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zdey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zdra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zd5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zeke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zexq/?format=api" } ], "images": [ { "id": 1494530, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-01-17T13:07:38.145427Z", "last_modified_time": "2026-01-17T13:07:38.145442Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/136a44d2-7b05-44cc-a130-98ec846be8f2.jpg", "name": "", "cropping": "223,0,1191,968", "photographer_name": "", "alt_text": "Helmiä, lankarullia ja muita käsityötarvikkeita.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494530/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-10T06:25:56.794069Z", "last_modified_time": "2026-07-10T06:25:56.794091Z", "date_published": null, "start_time": "2026-08-12T14:00:00Z", "end_time": "2026-12-16T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Keskiviikon käsityöhetki", "sv": "Onsdag Handarbetsverkstad", "en": "Wedneday Craft Circle" }, "location_extra_info": { "fi": "Paja Lounge", "sv": "Paja Lounge", "en": "Paja Lounge" }, "provider": null, "short_description": { "fi": "Tervetuloa Ison Omenan kirjaston avoimeen käsityöpajaan!", "sv": "Välkommen till den öppna handarbetsverkstaden på Iso Omena bibliotek!", "en": "Welcome to the Open Craft Workshop at Iso Omena Library!" }, "info_url": null, "description": { "fi": "<p>Tervetuloa Ison Omenan kirjaston avoimeen käsityöpajaan!</p><p>Ota mukaan oma käsityö tai tule inspiroitumaan ja ideoimaan yhteisiä materiaaleja hyödyntäen. Voit esimerkiksi korjata vaatteita, tehdä koruja ja käyttää ompelukonetta. </p><p>Tässä aikuisille suunnatussa tapahtumassa voi viihtyä itselle sopivan ajan. Käsityöhetkessä on mukana englanninkielinen vapaaehtoinen.</p>", "sv": "<p>Välkommen till den öppna handarbetsverkstaden på Iso Omena bibliotek!</p><p>Ta med ditt eget handarbetsprojekt, eller kom för att få inspiration och skapa med gemensamma material. Du kan till exempel laga kläder, göra smycken eller använda en symaskin.</p><p>Evenemanget är avsett för vuxna, och du är välkommen att stanna så länge det passar dig. En engelskspråkig volontär finns på plats under verkstaden.</p>", "en": "<p>Welcome to the Open Craft Workshop at Iso Omena Library!</p><p>Bring your own craft project, or come to get inspired and create using shared materials. You can, for example, mend clothes, make jewelry, or use a sewing machine.</p><p>This event is for adults, and you are welcome to stay for as long as it suits you. An English-speaking volunteer will be present during the workshop.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuv2zffa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69555", "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:104/?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/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-30T09:13:34.797118Z", "last_modified_time": "2026-06-30T09:13:34.797135Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795880.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-30T09:13:34.646007Z", "last_modified_time": "2026-07-10T06:14:18.637291Z", "date_published": null, "start_time": "2026-09-24T11:00:00Z", "end_time": "2026-09-24T11:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ut genom väggen! / Läpi seinän! – Ragnar Bengtströmin runoesitys", "sv": "Ut genom väggen! – En poesiföreställning av Ragnar Bengtström", "en": "Ut genom väggen! – A poetry performance by Ragnar Bengtström" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Runoesitys Ut genom väggen! raottaa ovea runoilijan ja näyttelijän maailmaan.", "sv": "Poesiföreställningen Ut genom väggen! gläntar på dörren till poeten och skådespelaren Ragnar Bengtströms värld.", "en": "The poetry performance “Ut genom väggen!” (Out Through the Wall!) opens a door into the world of poet and actor Ragnar Bengtström." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/363A9E2B59C6A6DB7FAADF3B4E9D286C/Ut_genom_vaggen_Lapi_seinan_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/363A9E2B59C6A6DB7FAADF3B4E9D286C/Ut_genom_vaggen_", "en": "http://www.vuotalo.fi/en/events/event/363A9E2B59C6A6DB7FAADF3B4E9D286C/Ut_genom_vaggen_" }, "description": { "fi": "<p>Runoesitys Ut genom väggen! raottaa ovea runoilijan ja näyttelijän maailmaan.</p><p><b>Ragnar Bengtströmin</b> runot kertovat elämän kauneudesta, surusta ja absurdiudesta – humoristisesti, mutta lämpimästi. Bengtström piirtää esiin kuvia ja kohtauksia: kipeistä muistoista, kaipuusta ja toivosta, luonnosta kantavana elinvoimana sekä suuresta rakkaudesta runouteen ja teatteriin.<br>Esityksessä <i>Ut genom väggen!</i> sanat ja musiikki punoutuvat yhteen. Bengtström esittää runojaan <b>Elina Mattilan</b> sellon säveliin yhdessä lausujan <b>Sanna Huldénin</b> kanssa, joka toimii myös runojen toimittajana. Esityksen ohjaa <b>Mikaela Hasán</b>.</p><p><i>Ut genom väggen!</i> on DuvTeaternin ja Wegelius Kamarijousien yhteistuotanto. Esityksen ensi-ilta oli 28. helmikuuta 2026 Helsingin Luckanilla.</p><p><b>DuvTeatern</b> on helsinkiläinen vapaa teatteriryhmä, jossa työskentelee kehitysvammaisia ja ei-kehitysvammaisia taiteilijoita sekä muita esittävän taiteen ammattilaisia. Ryhmä on toiminut vuodesta 1999 lähtien.</p><p>DuvTeaternin päätavoitteena on luoda taiteellisesti rohkeaa ja yhteiskunnallisesti merkityksellistä esitystaidetta, joka koskettaa ja puhuttelee yleisöä. Samalla teatteri tekee pitkäjänteistä työtä esittävän taiteen kentän saavutettavuuden edistämiseksi. DuvTeaternin tuotannot rakentuvat tasa-arvoiselle yhteistyölle, jossa taiteilijoiden erilaiset kyvyt ja kokemukset nähdään voimavaroina.</p><p>Tapahtuman kokonaiskesto on noin 45 min (esitys + keskustelu).<br>Tapahtuman kieli: ruotsi. Esitys perustuu pääasiassa luettuun runouteen ja sellomusiikkiin. Kevyt kuvailutulkkaus sisältyy esitykseen.</p><p>Teemat: teatteri, ystävyys, rakkaus, suru, perhe, huumori</p><p>Senioriverkostotapahtumaan sisältyy infotori senioreille. Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Tapahtuman järjestää Seniornätverket Helsingissä yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Poesiföreställningen Ut genom väggen! gläntar på dörren till poeten och skådespelaren Ragnar Bengtströms värld.</p><p>Med skarp humor och ömsint närvaro sätter hans dikter ord på det vackra, sorgsna och absurda i livet. Bengtström målar fram bilder och scener – om smärtsamma minnen, längtan och hopp, om naturen som livskraft och om den stora kärleken till poesin och teatern. <br>I föreställningen <i>Ut genom väggen!</i> vävs ord och musik samman. Till tonerna av <b>Elina Mattilas</b> cello framför <b>Ragnar Bengtström</b> sina dikter tillsammans med recitatören <b>Sanna Huldén</b>, som också är redaktör för texterna. Föreställningen regisseras av <b>Mikaela Hasán</b>.</p><p><i>Ut genom väggen!</i> är ett samarbete mellan DuvTeatern och Wegelius Kammarstråkar. Föreställningen hade premiär på Luckan i Helsingfors den 28 februari 2026.</p><p><b>DuvTeatern</b> är en professionell fri teatergrupp för scenkonstnärer och teaterarbetare med och utan funktionsvariation. DuvTeatern har varit verksam i Helsingfors sedan 1999.</p><p>DuvTeaterns främsta mål är att skapa konstnärligt orädd och samhälleligt relevant scenkonst som berör och engagerar sin publik. Teatern jobbar även långsiktigt för ett mer tillgängligt scenkonstfält. DuvTeaterns produktioner bygger på ett samarbete mellan konstnärer med och utan funktionsvariation och strävar till att synliggöra den mångfald av perspektiv och mänsklig potential som ett tillgängligt konstfält och samhälle kan innebära.</p><p>Evenemangets längd: ca. 45 min, föreställning (30 min) + samtal (15 min)<br>Språk: svenska. Föreställningen baserar sig i huvudsak på uppläst poesi och cellomusik. Lätt syntolkning ingår.</p><p>Teman: Vänskap, kärlek, sorg, familj, humor</p><p>Seniornätverksevenemang med infotorg och kaffeservering. Fri entré, ingen förhandsanmälan. Begränsat antal platser. Arr. Seniornätverket i Helsingfors i samarbete med Nordhuset.</p>", "en": "<p>The poetry performance “Ut genom väggen!” (Out Through the Wall!) opens a door into the world of poet and actor Ragnar Bengtström.</p><p>With sharp humor and a tender presence, his poems give voice to the beautiful, the sorrowful, and the absurd in life. Bengtström paints vivid images and scenes of painful memories, longing and hope, of nature as a life force, and of a deep love for poetry and theatre.</p><p>In <i>Ut genom väggen!</i>, words and music are interwoven. To the sound of <b>Elina Mattila’s</b> cello, <b>Ragnar Bengtström</b> performs his poems together with reciter <b>Sanna Huldén</b>, who also serves as editor of the texts. The performance is directed by <b>Mikaela Hasán</b>.</p><p><i>Ut genom väggen!</i> is a collaboration between DuvTeatern and Wegelius Kammarstråkar. The performance premiered at Luckan in Helsinki on 28th of February 2026.</p><p><b>DuvTeatern</b> is a company of actors and theatre workers with a mission to create artistically challenging performances for the stage. Over the years DuvTeatern has produced a range of work including radical interpretations of well-known classics, opera, children’s theatre, performance art, shows based on poetry, improvisation, music and dance. DuvTeatern has been operating continuously in Helsinki since its foundation in 1999.</p><p>DuvTeatern’s ensemble consists of actors and theatre workers with and without disabilities. The company’s artistic production is always grounded in the ensemble’s own experiences, ideas and interests, co-developed with other theatre groups, institutions and guest artists.</p><p>Duration: approx. 45 minutes, performance (30 min) + discussion (15 min)<br>Swedish: The performance is primarily based on spoken poetry and cello music. Some audio description features.</p><p>Themes: theatre, friendship, love, grief, family, humor</p><p>Event for Swedish-speaking senior citizens with an information forum in Swedish. Free entry, no pre-bookings. Organised by Seniornätverket in Helsinki in cooperation with Vuosaari House.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69555/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69606", "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: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": [], "info_url": { "fi": "https://www.lippu.fi/sv/event/laura-voutilainen-joulukonsertti-vuotalo-21816422/", "sv": "https://www.lippu.fi/sv/event/laura-voutilainen-joulukonsertti-vuotalo-21816422/", "en": "https://www.lippu.fi/sv/event/laura-voutilainen-joulukonsertti-vuotalo-21816422/" }, "description": null, "price": { "fi": "24,80€ / 20€", "sv": "24,80€ / 20€", "en": "24,80€ / 20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385580, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T12:15:09.368730Z", "last_modified_time": "2026-07-09T12:15:09.368745Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791047.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385580/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T12:15:09.137600Z", "last_modified_time": "2026-07-10T05:13:59.717412Z", "date_published": null, "start_time": "2026-12-18T16:00:00Z", "end_time": "2026-12-18T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Laura Voutilainen", "sv": "Laura Voutilainen", "en": "Laura Voutilainen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Säkenöivä konsertti täynnä tuttuja hittejä ja vahvaa tulkintaa." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6E9B67DA1090345B16B3B3BF4AA88510/Laura_Voutilainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6E9B67DA1090345B16B3B3BF4AA88510/Laura_Voutilainen", "en": "http://www.vuotalo.fi/en/events/event/6E9B67DA1090345B16B3B3BF4AA88510/Laura_Voutilainen" }, "description": { "fi": "<p>Säkenöivä konsertti täynnä tuttuja hittejä ja vahvaa tulkintaa.</p><p><b>Laura Voutilaisen</b> ensilevytyksestä on kulunut jo 32 vuotta, ja tänä aikana hän on noussut suomalaisen musiikkimaailman ehdottomaan kärkikaartiin. Ujosta ja hiljaisesta sellististä on vuosien saatossa kasvanut vaativatkin estradit suvereenisti haltuun ottava äärettömän monipuolinen ja kyvykäs viihdetaiteilija.</p><p>Pitkän uransa aikana hän on noussut kirkkaaksi tähdeksi kotimaisen popin ja iskelmän taivaalle kappaleillaan: debyyttisinglestä \"Muuttanut oot maailmain\" (1993) euroviisuklassikkoon \"Addicted to You\" (2002) ja \"Miks ei\" (2017) -hittiin. Voutilainen on tullut suomalaisille tutuksi ääneksi ja kasvoksi monipuolisilla esiintymisillään konserttilavoilla, televisio-ohjelmista (mm. <i>Tanssii tähtien kanssa</i> 2010 ja <i>Vain elämää</i> 2017), musikaaleista (mm. <i>Yön sisar</i> 2002 ja <i>Mamma Mia!</i> 2018) ja elokuvien äänirooleista (mm. <i>Herkules</i> 1997 ja<i> Wicked</i> 2024).</p><p>Läpimurtonsa Laura teki tammikuussa 1994, jolloin hänen esikoisalbuminsa <i>Laura Voutilainen</i> julkaistiin. Kyseessä oli vuoden 1994 eniten myyty suomalainen albumi, joka päätyi noin 120 000 suomalaiskotiin.</p><p>Laura on palkittu kahdesti, vuosina 1994 ja 1996, Vuoden Naissolistina Emma Gaalassa. Tämän lisäksi hänet on palkittu Vuoden Naisartistina Iskelmä Gaalassa vuonna 2008 ja Iskelmä-Finlandia palkinnolla vuonna 2010.</p><p>Konsertin kesto: 2 t, sis. väliajan</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69606/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69607", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/sv/event/henna-ja-supersankarit-tonttuparaati-vuotalo-21809581/", "sv": "https://www.lippu.fi/sv/event/henna-ja-supersankarit-tonttuparaati-vuotalo-21809581/", "en": "https://www.lippu.fi/sv/event/henna-ja-supersankarit-tonttuparaati-vuotalo-21809581/" }, "description": null, "price": { "fi": "6€", "sv": "6€", "en": "6€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385581, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T12:15:09.973731Z", "last_modified_time": "2026-07-09T12:15:09.973744Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789859.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385581/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T12:15:09.835633Z", "last_modified_time": "2026-07-09T12:15:10.145432Z", "date_published": null, "start_time": "2026-12-19T13:00:00Z", "end_time": "2026-12-19T13:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Henna ja Supersankarit: Tonttuparaati", "sv": "Henna ja Supersankarit: Tonttuparaati", "en": "Henna ja Supersankarit: Tonttuparaati" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lastenmusiikkiyhtye Henna ja Supersankarit saapuu kouluttamaan uusia tonttuja Korvatunturille!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/054D7D37937B994683A81155C40690F2/Henna_ja_Supersankarit_Tonttuparaati", "sv": "http://www.vuotalo.fi/sv/evenemang/event/054D7D37937B994683A81155C40690F2/Henna_ja_Supersankarit_Tonttuparaati", "en": "http://www.vuotalo.fi/en/events/event/054D7D37937B994683A81155C40690F2/Henna_ja_Supersankarit_Tonttuparaati" }, "description": { "fi": "<p>Lastenmusiikkiyhtye Henna ja Supersankarit saapuu kouluttamaan uusia tonttuja Korvatunturille!</p><p>Riemukkaassa koko perheen konsertissa pääset opettelemaan tonttutaitoja niin vanhojen tuttujen kuin yhtyeen uusien mukaansatempaavien joululaulujen tahdissa!</p><p>Konsertissa on voimakas hyväntuulen varoitus.</p><p>Henna ja Supersankarit on saavuttanut useita ehdokkuuksia Lastenmusiikin Jellonagaalassa: Vuoden tulokas, Vuoden lastenmusiikkiyhtye, Vuoden levy, Vuoden lastenlaulu ja Vuoden lastenmusiikintekijä.</p><p>Yhtyeen kappaleita on käytetty Pikku Kakkosen televisioiduissa konserteissa. Yhtyeen Youtube-kanava on kerännyt lyhyessä ajassa yli 150 000 katselukertaa!</p><p>Henna ja Supersankarit on julkaissut supersuositun <i>Supersankari</i> -esikoisalbumin (2023) sekä singlet \"Tonttuparaati\" (2024), \"Lentokonelaulu\" (2025) ja \"Hiekkakakkulaulu\" (2025) sekä <i>Hei vaan pimeä</i> - EP:n (9/2026).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69607/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpunwaviy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpunwatiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpunwaucm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpunwauqu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpunwau4u/?format=api" } ], "images": [ { "id": 2385582, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-09T11:35:11.131191Z", "last_modified_time": "2026-07-09T11:35:11.131207Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/cce0a22e-1dab-46b3-bf46-25e68a23e287.jpg", "name": "", "cropping": "280,0,1000,720", "photographer_name": "", "alt_text": "Kuvassa on iso kirja, linnan edessä ja puita seka satenkaari.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385582/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-07-09T11:30:05.911432Z", "last_modified_time": "2026-07-09T11:35:49.299801Z", "date_published": null, "start_time": "2026-09-24T14:30:00Z", "end_time": "2026-12-17T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": " Arabiankielinen avoin satuhetki" }, "location_extra_info": { "fi": "Aikuisten pelihuone" }, "provider": null, "short_description": { "fi": "Tervetuloa koko perheen kanssa hauskaan ajanviettoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinnostuneille!\n" }, "info_url": null, "description": { "fi": "<p>Tervetuloa koko perheen kanssa hauskaan ajanviettoon, jossa luemme satuja lapsille ja kaikille arabian kielestä kiinnostuneille!</p><p><br></p><p>#Hello Espoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpunwaviy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69604", "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:29/?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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/sv/event/hopeacine-vuotalo-vuotalo-21877354/", "sv": "https://www.lippu.fi/sv/event/hopeacine-vuotalo-vuotalo-21877354/", "en": "https://www.lippu.fi/sv/event/hopeacine-vuotalo-vuotalo-21877354/" }, "description": null, "price": { "fi": "10€", "sv": "10€", "en": "10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T11:14:38.908400Z", "last_modified_time": "2026-07-09T11:14:38.908416Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T11:14:38.805755Z", "last_modified_time": "2026-07-09T11:14:39.029330Z", "date_published": null, "start_time": "2026-12-15T12:00:00Z", "end_time": "2026-12-15T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HopeaCine: Kerro kaikille", "sv": "HopeaCine: Kerro kaikille", "en": "HopeaCine: Kerro kaikille" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A77F53D0413D88940FB5147E191620EC/HopeaCine_Kerro_kaikille", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A77F53D0413D88940FB5147E191620EC/HopeaCine_Kerro_kaikille", "en": "http://www.vuotalo.fi/en/events/event/A77F53D0413D88940FB5147E191620EC/HopeaCine_Kerro_kaikille" }, "description": { "fi": "<p>Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!</p><p>Kerro kaikille on voimaelokuva Amanda Aaltosesta, joka kieltäytyy alistumasta hänelle varattuun köyhän naisen ankeaan kohtaloon ja etsii huimapäisesti onneaan maailmalta. Rangaistukseksi sääntöjen rikkomisesta yhteiskunta anastaa häneltä kaikkein tärkeimmän, vapauden, ja sulkee hänet Seilin saarelle.</p><p>Ohjaaja: Alli Haapasalo<br>Pääosissa: Aamu Milonoff, Krista Kosonen, Marketta Tikkanen, Jakob Öhrman<br>Kesto: 1 t 52min + 30 min keskustelu<br>Kieli: suomi</p><p>**</p><p><b>HopeaCinen</b> syksyn ohjelmistossa on tuttuun tapaan kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi.</p><p>HopeaCine-sarjan elokuvia esitetään Cinema Orionissa, Malmitalossa ja Vuotalossa.</p><p>Joulukuun elokuva: Kerro kaikille<br>Cinema Orion ke 9.12. klo 13.00<br>Malmitalo to 10.12. klo 13.00<br>Vuotalo ti 15.12. klo 14.00</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69604/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69603", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/sv/event/finglish-standup-ilta-ali-jahangiri-karim-aldulaimi-with-guests-vuotalo-21741830/", "sv": "https://www.lippu.fi/sv/event/finglish-standup-ilta-ali-jahangiri-karim-aldulaimi-with-guests-vuotalo-21741830/", "en": "https://www.lippu.fi/sv/event/finglish-standup-ilta-ali-jahangiri-karim-aldulaimi-with-guests-vuotalo-21741830/" }, "description": null, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385576, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T11:14:38.223461Z", "last_modified_time": "2026-07-09T11:14:38.223477Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791075.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385576/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T11:14:38.102189Z", "last_modified_time": "2026-07-09T11:14:38.353171Z", "date_published": null, "start_time": "2026-12-12T16:00:00Z", "end_time": "2026-12-12T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Finglish Stand Up – Ali Jahangiri, Karim Aldulaimi & guests", "sv": "Finglish Stand Up – Ali Jahangiri, Karim Aldulaimi & guests", "en": "Finglish Stand Up – Ali Jahangiri, Karim Aldulaimi & guests" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kaksikielinen komediailta, jossa nauru ei katso kieltä!", "sv": "En komedikväll på finska och engelska där skrattet inte bryr sig om språk!", "en": "A bilingual comedy event where laughter knows no language boundaries!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6F2593CCBA5F7B432CBDCA131506B193/Finglish_Stand_Up", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6F2593CCBA5F7B432CBDCA131506B193/Finglish_Stand_Up", "en": "http://www.vuotalo.fi/en/events/event/6F2593CCBA5F7B432CBDCA131506B193/Finglish_Stand_Up" }, "description": { "fi": "<p>Kaksikielinen komediailta, jossa nauru ei katso kieltä!</p><p>Luvassa on ilta täynnä huippukoomikoita, jotka esiintyvät sekä suomeksi että englanniksi. Lavalle nousee sekä uusia nousevia nimiä että kokeneita konkareita ja tunnelma on taatusti katossa!</p><p>Illan MC:nä toimii karismaattinen <b>Karim Aldulaimi</b>, yksi Suomen kiinnostavimmista ja nopeimmin nousevista stand up -koomikoista. Karim on valloittanut yleisön lavalla, somessa ja sydämissä ja vauhti vain kiihtyy!</p><p>Illan päättää <b>Ali Jahangiri</b>.<br> <br>Finglish Stand Up -illoissa on aina hyvä meininki: lavalla nähdään koomikoita eri taustoista ja tyyleistä, ja monikielinen huumori yhdistää yleisön! Tule nauramaan mukana – Finglish Stand Up yhdistää kielet, kulttuurit ja komiikan parhaat puolet!</p><p>Kieli: suomi, englanti.<br> <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30. Kesto: n.2 h sis. väliaika. Liput à 20/15 € @ Lippu.fi tai lippuautomaatilta ovella.</p>", "sv": "<p>En komedikväll på finska och engelska där skrattet inte bryr sig om språk!</p><p>Det blir en kväll full av toppkomiker som uppträder på både finska och engelska. På scenen ser vi både nya lovande namn och erfarna veteraner, och stämningen kommer garanterat att nå taket!</p><p>Kvällens konferencier är den karismatiske <b>Karim Aldulaimi</b>, en av Finlands mest intressanta och snabbast stigande stand up-komiker. Karim har fängslat publiken på scenen, i sociala medier och i deras hjärtan, och tempot bara ökar!<br> <br>På Finglish Stand Up-kvällarna är det alltid god stämning – vi får se komiker från olika bakgrunder och stilar på scenen, och publiken förenas av den flerspråkiga humorn. Kom med och skratta – Finglish Stand Up förenar språk, kulturer och komikens bästa sidor! Huvudartist: <b>Ali Jahangiri.</b></p><p>Språk: finska, engelska<br>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30. Längd: ca 120 min. inkl. paus. Bilj. à 20/15 € @ Lippu.fi eller från biljettautomaten i aulan.</p>", "en": "<p>A bilingual comedy event where laughter knows no language boundaries!</p><p>The evening will be full of top comedians performing in both Finnish and English. The stage will feature new up-and-coming names as well as seasoned veterans, and the atmosphere is guaranteed to go through the roof!<br> <br>The MC of the evening will be the charismatic <b>Karim Aldulaimi</b>, one of Finland’s most interesting and fastest-rising stand-up comedians. Karim has captivated audiences on stage, on social media and in people’s hearts, and he is only picking up steam!</p><p><b>Ali Jahangiri</b> closes the evening.</p><p>Finglish Stand Up evenings are always a great time – comedians from different backgrounds and styles take to the stage, and the audience is united by multilingual humour! Come laugh with us – Finglish Stand Up brings together languages, cultures and the best aspects of comedy!</p><p>Language: Finnish, English</p><p>Club evening, alcohol serving licence, refreshments by Café Pokkari, starting from 5.30 PM. Duration: roughly 120 min, incl. intermission. Tickets à 20/15 € @ Lippu.fi or from the ticket machine at the door.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69600", "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": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385573, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T09:14:30.510962Z", "last_modified_time": "2026-07-09T09:14:30.510976Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789982.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385573/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T09:14:30.361331Z", "last_modified_time": "2026-07-09T09:14:30.724604Z", "date_published": null, "start_time": "2026-12-05T06:00:00Z", "end_time": "2027-01-30T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ikikallion tarinoita", "sv": "Ikikallion tarinoita", "en": "Ikikallion tarinoita" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tiesitkö, että Vuosaaressakin on joskus tallustanut mammutti? Koko perheen näyttely kurkistaa esihistorialliseen aikaan." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CCB01825D8841E2F01A52E3E5E8DF182/Ikikallion_tarinoita", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CCB01825D8841E2F01A52E3E5E8DF182/Ikikallion_tarinoita", "en": "http://www.vuotalo.fi/en/events/event/CCB01825D8841E2F01A52E3E5E8DF182/Ikikallion_tarinoita" }, "description": { "fi": "<p>Tiesitkö, että Vuosaaressakin on joskus tallustanut mammutti? Koko perheen näyttely kurkistaa esihistorialliseen aikaan.</p><p><i>Minä olen pieni kallio.</p><p>Nimeni on nykyään Stenkullan kallio,<br>mutta minulla on ollut myös monia muita nimiä.</p><p>Minä olen ollut täällä jo pitkään.</p><p>Olen nähnyt monia kansoja ja kuullut monia kieliä.</p><p>Olen seurannut ihmisiä ja heidän elämäänsä:<br>surua, iloa, vihaa ja rakkautta.</p><p>Olen nähnyt, kuinka luonto ja eläimet ovat muuttuneet.</p><p>Nyt haluan kertoa teille, mitä kaikkea olen kokenut.</i></p><p>Ikikallion tarina alkaa yli 100 000 vuoden takaa ajasta, jolloin Vuosaaren alueella kulki mammutteja ja niiden metsästäjiä. Tuhansien vuosien aikana kallio ehtii ihmetellä monen eri ihmisheimon puuhia sekä ympäristössä tapahtuvia muutoksia. Lasten kokoisessa näyttelyssä pääset eläytymään aikakaudesta ja tunnelmasta toiseen. Lopulta päädyt nykyaikaan, jossa maa yhä kätkee sisäänsä menneisyyden sirpaleita. Vuosaaren mammutistakin on jäänyt jäljelle valtava kyynärluu.</p><p>Näyttely on toteutettu selkosuomeksi <i>Ikikallion tarinoita – mammuteista meidän aikaamme</i> -kuvakirjan pohjalta. Tarinan on kirjoittanut arkeologi <b>Andreas Koivisto</b>, ja kuvituksen on tehnyt esihistoriaan erikoistunut taiteilija <b>Tom Björklund</b>. Vantaan kaupunginmuseon alkuperäisnäyttely on muokattu Vuotalon galleriatilaan sopivaksi.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69600/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69599", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385572, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T08:14:06.405137Z", "last_modified_time": "2026-07-09T08:14:06.405154Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790982.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T08:14:06.289505Z", "last_modified_time": "2026-07-09T08:14:06.620066Z", "date_published": null, "start_time": "2026-11-05", "end_time": "2026-11-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkeellä marraskuussa", "en": "Liikkeeellä marraskuussa – Moving in November" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.", "en": "The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AB3F02D13860C7DFB53334DC4B81197A/Liikkeella_marraskuussa", "en": "http://www.caisa.fi/en/events/event/AB3F02D13860C7DFB53334DC4B81197A/Liikkeeella_marraskuussa_Moving_in_November" }, "description": { "fi": "<p>Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan teoksia kansainvälisiltä ja paikallisilta taiteilijoilta, joiden kriittinen ajattelu, visiot, kokemukset ja unelmat avaavat pieniä ikkunoita maailmaan, jossa elämme.</p><p>Caisa on festivaalin keskeinen yhteistyökumppani ja keskeinen esityspaikka. Festivaalin ohjelmisto, lipunmyynti sekä ilmoittautuminen Audience Clubiin ja Soup Talk -keskustelutilaisuuksiin avautuvat syyskuun puolivälissä.</p><p>Jos haluat syventää suhdettasi tanssiin ja esitystaiteeseen, olet tervetullut mukaan <b>Audience Club</b> -ryhmään, joka osallistuu festivaaliin yhdessä ja seuraa sen ohjelmaa. Audience Club tarjoaa fasilitoituja keskusteluja, luovia tehtäviä ja ohjattuja harjoitteita, jotka tukevat ajatustenvaihtoa sekä yhteyden rakentumista teoksiin ja muihin katsojiin.</p><p>Toinen tapa tutustua ohjelmaan on osallistua <b>Soup Talk</b> -keskusteluihin, joissa ohjelmistossa vierailevat taiteilijat kohtaavat paikallisen taiteilijan ja yleisön soppakulhon ja keskustelun äärellä. Tervetuloa kuuntelemaan, esittämään kysymyksiä ja keskustelemaan. Soup Talkit järjestetään yhteistyössä Caisan kanssa.</p><p>Liikkeellä marraskuussa järjestetään 5.–15.11.2026.</p>", "en": "<p>The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026.</p><p>The festival is an invitation to come together and experience works by international and local artists, whose critical thinking, visions, experiences, and dreams open small windows onto the world we are living in.</p><p>Caisa is an important partner of the festival and a central venue. The festival programme, ticket sales, and registration for the Audience Club and Soup Talks will open in mid-September.</p><p>If you wish to deepen your engagement with dance and performance, you are welcome to join the <b>Audience Club</b>, a group that follows the festival programme together. The Audience Club offers facilitated discussions, creative tasks, and guided exercises that support exchange and foster connections with both the works and fellow audience members.</p><p>Another way to engage with the programme is by joining <b>Soup Talks</b>, a series of informal conversations with artists presenting their work during the festival. Visiting artists meet a local artist and the audience around a bowl of soup and conversation. Everybody is invited to listen, ask questions, and take part in the discussion. Soup Talks are organised in collaboration with Caisa.</p><p>Moving in November takes place from 5 to 15 November 2026.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69584", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:733/?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: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": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385487, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T10:14:51.585331Z", "last_modified_time": "2026-07-03T10:14:51.585347Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790818.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385487/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T10:14:51.504757Z", "last_modified_time": "2026-07-09T08:14:06.129984Z", "date_published": null, "start_time": "2026-11-05", "end_time": "2026-11-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkeellä marraskuussa", "sv": "Liikkeellä marraskuussa", "en": "Liikkeeellä marraskuussa – Moving in November" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.", "en": "The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7264FD7423DE0DC70896B44DE70BFA62/Liikkeella_marraskuussa", "sv": "http://www.stoa.fi/sv/evenemang/event/7264FD7423DE0DC70896B44DE70BFA62/Liikkeella_marraskuussa", "en": "http://www.stoa.fi/en/events/event/7264FD7423DE0DC70896B44DE70BFA62/Liikkeeella_marraskuussa_Moving_in_November" }, "description": { "fi": "<p>Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan teoksia kansainvälisiltä ja paikallisilta taiteilijoilta, joiden kriittinen ajattelu, visiot, kokemukset ja unelmat avaavat pieniä ikkunoita maailmaan, jossa elämme.</p><p>Stoa on festivaalin pitkäaikaisin yhteistyökumppani ja keskeinen esityspaikka. Festivaalin ohjelmisto, lipunmyynti sekä ilmoittautuminen Audience Clubiin ja Soup Talk -keskustelutilaisuuksiin avautuvat syyskuun puolivälissä.</p><p>Jos haluat syventää suhdettasi tanssiin ja esitystaiteeseen, olet tervetullut mukaan <b>Audience Club</b> -ryhmään, joka osallistuu festivaaliin yhdessä ja seuraa sen ohjelmaa. Audience Club tarjoaa fasilitoituja keskusteluja, luovia tehtäviä ja ohjattuja harjoitteita, jotka tukevat ajatustenvaihtoa sekä yhteyden rakentumista teoksiin ja muihin katsojiin.</p><p>Toinen tapa tutustua ohjelmaan on osallistua <b>Soup Talk</b> -keskusteluihin, joissa ohjelmistossa vierailevat taiteilijat kohtaavat paikallisen taiteilijan ja yleisön soppakulhon ja keskustelun äärellä. Tervetuloa kuuntelemaan, esittämään kysymyksiä ja keskustelemaan. Soup Talkit järjestetään yhteistyössä Caisan kanssa.</p><p>Liikkeellä marraskuussa järjestetään 5.–15.11.2026.</p>", "en": "<p>The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026.</p><p>The festival is an invitation to come together and experience works by international and local artists, whose critical thinking, visions, experiences, and dreams open small windows onto the world we are living in.</p><p>Stoa is a long-time partner of the festival and a central venue. The festival programme, ticket sales, and registration for the Audience Club and Soup Talks will open in mid-September.</p><p>If you wish to deepen your engagement with dance and performance, you are welcome to join the <b>Audience Club</b>, a group that follows the festival programme together. The Audience Club offers facilitated discussions, creative tasks, and guided exercises that support exchange and foster connections with both the works and fellow audience members.</p><p>Another way to engage with the programme is by joining <b>Soup Talks</b>, a series of informal conversations with artists presenting their work during the festival. Visiting artists meet a local artist and the audience around a bowl of soup and conversation. Everybody is invited to listen, ask questions, and take part in the discussion. Soup Talks are organised in collaboration with Caisa.</p><p>Moving in November takes place from 5 to 15 November 2026.</p><p>Paikka: Teatterisali, Musiikkisali, Aula<br>Ohjelmisto julkistetaan ja lipunmyynti aukeaa syksyllä 2026</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69309", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385489, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T11:14:29.732866Z", "last_modified_time": "2026-07-03T11:14:29.732881Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793732.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385489/?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-07-03T11:14:29.624036Z", "last_modified_time": "2026-07-09T07:14:10.632872Z", "date_published": null, "start_time": "2026-11-21T12:00:00Z", "end_time": "2026-11-21T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pienten ja suurten eliökuntalaisten klubi – lapsille ja aikuisille", "sv": "Pienten ja suurten eliökuntalaisten klubi – lapsille ja aikuisille", "en": "Pienten ja suurten eliökuntalaisten klubi – lapsille ja aikuisille" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lapsen oikeuksien viikolla Stoassa lauantai on pienten ja suurten eliökuntalaisten päivä!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D8876F30977ABA691E27E00AF5309F98/Pienten_ja_suurten_eliokuntalaisten_klubi_", "sv": "http://www.stoa.fi/sv/evenemang/event/D8876F30977ABA691E27E00AF5309F98/Pienten_ja_suurten_eliokuntalaisten_klubi_", "en": "http://www.stoa.fi/en/events/event/D8876F30977ABA691E27E00AF5309F98/Pienten_ja_suurten_eliokuntalaisten_klubi_" }, "description": { "fi": "<p>Lapsen oikeuksien viikolla Stoassa lauantai on pienten ja suurten eliökuntalaisten päivä!</p><p>Päivän ohjelma on inspiroitunut <b>Anni Kytömäen</b> <i>Eliökuntalaisten manifestista</i>, ja sen aikana juhlitaan viisautta, leikkiä ja luovuutta, jota on erityisesti eliökuntalaisista pienimmillä. <u><a href=\"https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/manifesti_fi_A4_riisuttu_Optimized.pdf\">Voit tutustua manifestiin tästä</u></a>, ja <u><a href=\"https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/eliokuntalaisten%20manifesti%20selkosuomi.pdf\">täältä pääset lukemaan selkokielelle mukautetun manifestin</u></a>.</p><p>Nyt on aikuisten vuoro kuunnella, millaisia polkuja lapset tulevaisuuteen haluavat tallata. Lisäksi luvassa on ainakin paljon mukavaa tekemistä, popcornia – ja tietysti myös tanssia.</p><p>Ohjelma tarkentuu.</p><p>Vapaa pääsy.</p>", "sv": "<p>https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/manifest%20for%20alla%20levande.pdf</p>", "en": "<p>https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/A%20Manifesto%20for%20a%20living%20world.pdf</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69299", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385076, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T08:14:04.347349Z", "last_modified_time": "2026-06-11T08:14:04.347364Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793722.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385076/?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-11T08:14:04.262814Z", "last_modified_time": "2026-07-09T07:13:56.518866Z", "date_published": null, "start_time": "2026-09-04T07:30:00Z", "end_time": "2026-09-04T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jussin niittysadut – Tarinallinen satuhetki Eliökuntalaisten niityllä", "sv": "Jussin niittysadut (Jussis ängssagor) – Sagostund på Alla Levandes äng", "en": "Jussin niittysadut (Jussi’s meadow fairytales) – A storytelling session on the Meadow of the Living World" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!", "sv": "Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!", "en": "Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0E14653C6D6FF310C598232F177E34F/Jussin_niittysadut_", "sv": "http://www.stoa.fi/sv/evenemang/event/C0E14653C6D6FF310C598232F177E34F/Jussin_niittysadut_Jussis_angssagor_", "en": "http://www.stoa.fi/en/events/event/C0E14653C6D6FF310C598232F177E34F/Jussin_niittysadut_Jussi_s_meadow_fairytales_" }, "description": { "fi": "<p>Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!</p><p>Sadut syntyvät lasten ideoista improvisoiden ja niityllä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.</p><p><b>Jussi Ollila</b> on näyttelijä ja muusikko, jonka erityisosaamista on improvisaatio ja lastenkulttuuri. Hänet voi tunnistaa myös lastenohjelmien Maltin ja Valtin Valtin roolista. Jussilla on oma kiertävä teatteri Tarinataikurit ja hän soittaa TomuTomu -yhtyeessä.</p><p>Paikkana on Stoan aukion vieressä kasvava Eliökuntalaisten niitty. Tapaamispaikka aukion Stoa-veistoksilla.</p><p>Myrskysään sattuessa tuokio siirtyy sisätiloihin tai sille etsitään uusi ajankohta.</p><p>Myös perheet ovat tuokioihin tervetulleita!</p><p>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy, mukaan mahtuvat perheet, päiväkotiryhmät ja muut kokoonpanot. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Varhaiskasvatusryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.hel.fi 4.8. klo 10 alkaen</u></a>.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!</p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av det liv man möter på ängen. Den trogna utflyktsgitarren är med.</p><p><b>Jussi Ollila</b> är skådespelare och musiker med specialkompetens inom improvisation och barnkultur. Man känner igen honom också från rollen som Valtti i barnprogrammet Maltti ja Valtti. Jussi har sin egen ambulerande teater, Tarinataikurit, och spelar i bandet TomuTomu.</p><p>Platsen är Alla Levandes äng, som växer fram intill Stoaplatsen. Mötesplatsen är vid skulpturerna på Stoaplatsen.</p><p>Vid oväder flyttas sagostunden inomhus eller så hittas ett nytt datum för den.</p><p>Också familjer är välkomna att delta!</p><p>Åldersrekommendation: 3–7 år <br>Längd: cirka 45 min. <br>Språk: finska</p><p>Fritt inträde: familjer, daghemsgrupper och andra sällskap är välkomna. <a href=\"https://kultus.hel.fi/sv/search?places=tprek%3A7259\"><u>Obligatorisk förhandsanmälan för grupper inom småbarnspedagogiken på kultus.hel.fi från och med den 4 augusti kl. 10</u></a>.</p>", "en": "<p>Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!</p><p>The stories are improvised based on children’s ideas and inspired by the life that we encounter in a meadow. A trusty campground guitar accompanies our travels.</p><p><b>Jussi Ollila</b> is an actor and musician whose special areas of expertise are improvisation and children’s culture. He is also known for his role as Valtti in the children’s programme Maltti ja Valtti. Jussi runs his own travelling theatre company, Tarinataikurit, and plays in the band TomuTomu.</p><p>The venue is the Meadow of the Living World growing next to the Stoa square. We'll meet at the Stoa sculpture in the square.</p><p>In the event of stormy weather, the event will be moved indoors or rescheduled.</p><p>Families are also welcome to join us!</p><p>Recommended age: 3–7 <br>Duration: roughly 45 min <br>Language: Finnish</p><p>Free entry; families, daycare groups and other groups are welcome. <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7259\"><u>Obligatory advance registration for early childhood education groups at kultus.hel.fi from 4 August at 10.00 onwards</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69298", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385075, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T08:14:04.039419Z", "last_modified_time": "2026-06-11T08:14:04.039434Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793721.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385075/?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-11T08:14:03.950226Z", "last_modified_time": "2026-07-09T07:13:56.348449Z", "date_published": null, "start_time": "2026-09-04T06:30:00Z", "end_time": "2026-09-04T07:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jussin niittysadut – Tarinallinen satuhetki Eliökuntalaisten niityllä", "sv": "Jussin niittysadut (Jussis ängssagor) – Sagostund på Alla Levandes äng", "en": "Jussin niittysadut (Jussi’s meadow fairytales) – A storytelling session on the Meadow of the Living World" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!", "sv": "Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!", "en": "Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/691BF08803460CBE7842EF701E1CECCF/Jussin_niittysadut_", "sv": "http://www.stoa.fi/sv/evenemang/event/691BF08803460CBE7842EF701E1CECCF/Jussin_niittysadut_Jussis_angssagor_", "en": "http://www.stoa.fi/en/events/event/691BF08803460CBE7842EF701E1CECCF/Jussin_niittysadut_Jussi_s_meadow_fairytales_" }, "description": { "fi": "<p>Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!</p><p>Sadut syntyvät lasten ideoista improvisoiden ja niityllä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.</p><p><b>Jussi Ollila</b> on näyttelijä ja muusikko, jonka erityisosaamista on improvisaatio ja lastenkulttuuri. Hänet voi tunnistaa myös lastenohjelmien Maltin ja Valtin Valtin roolista. Jussilla on oma kiertävä teatteri Tarinataikurit ja hän soittaa TomuTomu -yhtyeessä.</p><p>Paikkana on Stoan aukion vieressä kasvava Eliökuntalaisten niitty. Tapaamispaikka aukion Stoa-veistoksilla.</p><p>Myrskysään sattuessa tuokio siirtyy sisätiloihin tai sille etsitään uusi ajankohta.</p><p>Myös perheet ovat tuokioihin tervetulleita!</p><p>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy, mukaan mahtuvat perheet, päiväkotiryhmät ja muut kokoonpanot. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Varhaiskasvatusryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.hel.fi 4.8. klo 10 alkaen</u></a>.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!</p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av det liv man möter på ängen. Den trogna utflyktsgitarren är med.</p><p><b>Jussi Ollila</b> är skådespelare och musiker med specialkompetens inom improvisation och barnkultur. Man känner igen honom också från rollen som Valtti i barnprogrammet Maltti ja Valtti. Jussi har sin egen ambulerande teater, Tarinataikurit, och spelar i bandet TomuTomu.</p><p>Platsen är Alla Levandes äng, som växer fram intill Stoaplatsen. Mötesplatsen är vid skulpturerna på Stoaplatsen.</p><p>Vid oväder flyttas sagostunden inomhus eller så hittas ett nytt datum för den.</p><p>Också familjer är välkomna att delta!</p><p>Åldersrekommendation: 3–7 år <br>Längd: cirka 45 min. <br>Språk: finska</p><p>Fritt inträde: familjer, daghemsgrupper och andra sällskap är välkomna. <a href=\"https://kultus.hel.fi/sv/search?places=tprek%3A7259\"><u>Obligatorisk förhandsanmälan för grupper inom småbarnspedagogiken på kultus.hel.fi från och med den 4 augusti kl. 10</u></a>.</p>", "en": "<p>Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!</p><p>The stories are improvised based on children’s ideas and inspired by the life that we encounter in a meadow. A trusty campground guitar accompanies our travels.</p><p><b>Jussi Ollila</b> is an actor and musician whose special areas of expertise are improvisation and children’s culture. He is also known for his role as Valtti in the children’s programme Maltti ja Valtti. Jussi runs his own travelling theatre company, Tarinataikurit, and plays in the band TomuTomu.</p><p>The venue is the Meadow of the Living World growing next to the Stoa square. We'll meet at the Stoa sculpture in the square.</p><p>In the event of stormy weather, the event will be moved indoors or rescheduled.</p><p>Families are also welcome to join us!</p><p>Recommended age: 3–7 <br>Duration: roughly 45 min <br>Language: Finnish</p><p>Free entry; families, daycare groups and other groups are welcome. <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7259\"><u>Obligatory advance registration for early childhood education groups at kultus.hel.fi from 4 August at 10.00 onwards</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69298/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69300", "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: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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385079, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T09:14:53.311746Z", "last_modified_time": "2026-06-11T09:14:53.311763Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793723.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385079/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-11T09:14:53.121242Z", "last_modified_time": "2026-07-09T07:13:54.861722Z", "date_published": null, "start_time": "2026-08-29T11:00:00Z", "end_time": "2026-08-29T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Stoan Suomen luonnon päivä", "sv": "Finska naturens dag på Stoa", "en": "Finnish Nature Day at Stoa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suomen luonnon päivänä metsä kutsuu! Liity mukaan kävelylle Hallainvuoreen ja Pekko Käpin konserttiin.", "sv": "Skogen kallar på Finska naturens dag! Följ med på en promenad till Hallonberget och Pekko Käppis konsert.", "en": "On Finnish Nature Day, the forest beckons! Join us for a walk to Hallainvuori and a concert by Pekko Käppi." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/8B98D98603660D2FD7CEE575BB858041/Stoan_Suomen_luonnon_paiva", "sv": "http://www.stoa.fi/sv/evenemang/event/8B98D98603660D2FD7CEE575BB858041/Finska_naturens_dag_pa_Stoa_", "en": "http://www.stoa.fi/en/events/event/8B98D98603660D2FD7CEE575BB858041/Finnish_Nature_Day_at_Stoa" }, "description": { "fi": "<p>Suomen luonnon päivänä metsä kutsuu! Liity mukaan kävelylle Hallainvuoreen ja Pekko Käpin konserttiin.</p><p>Konserttipaikalla partiolaiset keittävät metsäkahvit 50:lle ensimmäiselle.</p><p><b>klo 14 | kävely toimittaja Riikka Kaihovaaran seurassa.</b><br>Lähtö: Leikkipaikka Hallainvuori, Myllärintie 6.<br><u><a href\"https://ilmonet.fi/course/H265474>Ilmoittaudu kävelylle Riikka Kaihovaaran seurassa tästä linkistä</u></a>.</p><p><b>klo 14 | kävely lapsille ja aikuisille biologi ja tietokirjailija Sanja Hakalan seurassa ötököihin tutustuen.</b><br>Lähtö: Leikkipaikka Hallainvuori, Myllärintie 6.<br><u><a href\"https://ilmonet.fi/course/H265473>Ilmoittaudu Sanja Hakalan ötökkätutkimusmatkalle tästä.</u></a></p><p><b>klo 15 | Metsäkonsertissa jouhikkotaiteilija Pekko Käppi</b><br>Ota mukaan istuinalusta. Konserttiin voi tulla, vaikka ei osallistuisi ohjelmallisille kävelyille. Ei ilmoittautumista. Opastus konserttipaikalle leikkipaikka Hallainvuorelta, Myllärintie 6 klo 14.45.</p><p><b>Pekko Käppi</b> on monipuolinen musiikintekijä, joka on erikoistunut vanhaan suomalaiseen lauluperinteeseen ja soittaa suomalais-karjalaista jouhikkoa. Käppi tunnetaan erityisesti jouhikon soiton uuden tulemisen pioneerina, mutta myös tutkijana, opettajana, tuottajana ja säveltäjänä. Hänen sävellyksiään on syntynyt elokuviin, teatteriin, installaatioihin ja äänilevyille. Käpin musiikissa yhdistyvät kansanperinne, tarinat, blues-sävyt sekä voimakas ja vangitseva lavakarisma.</p><p><b>Riikka Kaihovaara</b> on suomalainen dokumentaristi, toimittaja ja kirjailija. Kaihovaara työskentelee Yleisradiossa ja on tehnyt useita dokumenttisarjoja ja -elokuvia yhteiskunnallisista aiheista. Kaihovaaran esseekokoelmissa <i>Villi ihminen ja muita luontokappaleita</i> sekä <i>Vieras eläin ja muita uusia luontokappaleita</i> pohditaan luontosuhdetta ja ihmisen roolia osana luontoa. Hänen töitään leimaavat luonnon ja luonnollisuuden käsitteiden kriittinen tutkiminen.</p><p><b>Sanja Hakala</b> on biologi, tietokirjailija ja tutkijatohtori Helsingin yliopistossa. Hän tutkii hyönteisten sosiaalista käytöstä, erityisesti muurahaisia, laajemmin elonkirjoa ja ihmisten suhtautumista siihen esimerkiksi kaupunkien viherrakentamisessa. Hakala on kirjoittanut mm. teokset <i>Pikku Myyn ötökkäkirja</i> ja <i>Muumipapan lintukirja</i>, ja tehnyt tiedeviestintää Ötökkäakatemiassa.</p><p>Ota mukaan istuinalusta ja halutessasi evästä. Varaudu säänmukaisilla varusteilla ja hyvillä kengillä.</p><p>Lisätiedot:<br>Vapaa pääsy. Tervetuloa! Ilmoittaudu haluamallesi kävelylle.<br>Huomaathan, että reitit eivät ole esteettömiä.<br>Säävaraus: Kovalla sateella tai myrskytuulella konsertti siirretään sisätiloihin Stoaan. Samoin ötökkäkävely toteutetaan Stoan sisällä työpajana.<br>Älä jätä metsään mitään roskia.</p><p>Tapahtuman järjestää Stoa: Itäkeskuksen kirjasto, Kulttuuripalvelut, Helsingin työväenopisto ja Nuorisopalvelut.</p>", "sv": "<p>Skogen kallar på Finska naturens dag! Följ med på en promenad till Hallonberget och Pekko Käppis konsert.</p><p>På konsertplatsen kokar scouterna skogskaffe till de 50 första besökarna.</p><p><b>kl. 14 | Promenad tillsammans med journalisten Riikka Kaihovaara.</b> <br>Avfärd: Hallonbergets lekplats, Mjölnarvägen 6. <br><u><a href=\"https://ilmonet.fi/course/H265474?lang=sv\">Anmäl dig till promenaden tillsammans med Riikka Kaihovaara via den här länken</u></a>.</p><p><b>kl. 14 | Promenad för barn och vuxna tillsammans med biologen och den facklitterära författaren Sanja Hakala, där vi lär oss mer om insekter.</b> <br>Avfärd: Hallonbergets lekplats, Mjölnarvägen 6. <br><u><a href=\"https://ilmonet.fi/course/H265473?lang=sv\">Anmäl dig till Sanja Hakalas insektstudieresa här.</u></a></p><p><b>kl. 15 | Skogskonsert med stråkharpisten Pekko Käppi</b> <br>Ta med sittunderlag. Du kan komma på konserten även om du inte deltar i de guidade vandringarna. Ingen anmälan. Guidning till konsertplatsen från Hallonbergets lekplats, Mjölnarvägen 6, kl. 14.45. <br> <br> <br><b>Pekko Käppi</b> är en mångsidig musikskapare som har specialiserat sig på den gamla finska sångtraditionen och spelar finsk-karelsk stråkharpa. Käppi är framför allt känd som en pionjär inom den nya eran för stråkharpan, men också som forskare, lärare, producent och kompositör. Han har gjort kompositioner för filmer, teaterföreställningar, installationer och grammofonskivor. I Käppis musik förenas folktradition, berättelser, bluestoner med en stark och fängslande scenkarisma.</p><p><b>Riikka Kaihovaara</b> är en finsk dokumentärfilmare, journalist och författare. Kaihovaara arbetar på Rundradion och har gjort flera dokumentärserier och dokumentärfilmer om samhällsfrågor. I sina essäsamlingar <i>Villi ihminen ja muita luontokappaleita</i> och <i>Vieras eläin ja muita uusia luontokappaleita</i> reflekterar Kaihovaara över människans förhållande till naturen och hennes roll i den. Hennes verk präglas av en kritisk granskning av begreppen natur och naturlighet.</p><p><b>Sanja Hakala</b> är biolog, facklitterär författare och forskardoktor vid Helsingfors universitet. Hon forskar i insekternas sociala beteende, särskilt myrornas, samt i den biologiska mångfalden i stort och människors inställning till den, till exempel när det gäller grönt byggande i städer. Hakala har skrivit bland annat böckerna <i>Pikku Myyn ötökkäkirja</i> och <i>Muumipapan lintukirja</i> samt arbetat med vetenskapskommunikation inom nätverket Ötökkäakatemia.</p><p>Ta med sittunderlag och matsäck om du vill. Se till att ha rätt utrustning för vädret och bra skor.</p><p>Mer information:</p><p>Fritt inträde. Välkommen! Anmäl dig till en valfri promenad.</p><p>Observera att vandringslederna inte är tillgängliga.</p><p>Enbart om vädret tillåter: Vid kraftigt regn eller stormvindar flyttas konserten inomhus till Stoa. Även insektspromenaden genomförs som en verkstad inne på Stoa.</p><p>Lämna inget skräp efter dig i skogen.</p><p>Evenemanget ordnas av Stoa: Östra centrums bibliotek, Kulturtjänsterna, Helsingfors finska arbetarinstitut och Ungdomstjänsterna</p>", "en": "<p>On Finnish Nature Day, the forest beckons! Join us for a walk to Hallainvuori and a concert by Pekko Käppi.</p><p>At the concert venue, Scouts serve a cup of forest-style coffee to the first 50 people.</p><p><b>14.00 | A walk with journalist Riikka Kaihovaara.</b> <br>Departure point: Playground Hallainvuori, Myllärintie 6. <br><u><a href=\"https://ilmonet.fi/course/H265474?lang=en\">Sign up for the walk with Riikka Kaihovaara via this link</u></a>.</p><p><b>14.00 | A walk for children and adults, led by biologist and non-fiction writer Sanja Hakala, to learn about bugs.</b> <br>Departure point: Playground Hallainvuori, Myllärintie 6. <br><u><a href=\"https://ilmonet.fi/course/H265473?lang=en\">Sign up for Sanja Hakala’s bug excursion here.</u></a></p><p><b>15.00 | Forest concert by jouhikko bowed lyre artist Pekko Käppi</b> <br>Bring something to sit on. You are welcome to attend the concert even if you do not take part in the guided walks. No registration required. Attendees are guided to the concert venue from Playground Hallainvuori, Myllärintie 6, at 14.45. <br> <br> <br><b>Pekko Käppi</b> is a versatile musician who specialises in the old Finnish song tradition and plays the Finnish-Karelian jouhikko bowed lyre. Käppi is best known as a pioneer of the revival of the jouhikko, but also as a researcher, teacher, producer and composer. He has composed music for films, theatre, installations and recordings. Käppi’s music combines folk traditions, storytelling and blues influences, delivered with a powerful and captivating stage presence.</p><p><b>Riikka Kaihovaara</b> is a Finnish documentary filmmaker, journalist and author. Kaihovaara works for the Finnish Broadcasting Company and has produced numerous documentary series and films on societal matters. Kaihovaara’s essay collections <i>Villi ihminen ja muita luontokappaleita</i> (‘Wild Human and other Creatures’) and <i>Vieras eläin ja muita uusia luontokappaleita</i> (‘Alien Animal and Other New Creatures’) delve into humankind’s relationship with nature and its role as part of nature. Her works are characterised by critical examination of the concepts of nature and naturalness.</p><p><b>Sanja Hakala</b> is a biologist, non-fiction writer and postdoctoral researcher at the University of Helsinki. She studies the social behaviour of insects, particularly ants, as well as biodiversity at large and people’s attitudes towards it, e.g. in the context of green construction in cities. Hakala has written works such as <i>Pikku Myyn ötökkäkirja</i> (‘Little My’s Bug Book’) and <i>Muumipapan lintukirja</i> (‘Moominpappa’s Bird Book’), and she has carried out science communication in the Ötökkäakatemia network.</p><p>Bring something to sit on and a snack if you like. Dress for the weather and wear suitable shoes.</p><p>Further information:</p><p>Free entry. See you there! Sign up for the walk of your choice.</p><p>Please note that the routes are not accessible.</p><p>Subject to weather conditions: In the event of heavy rain or strong wind, the concert will be moved indoors to Stoa. Similarly, the bug walk will then take place inside Stoa as a workshop.</p><p>Please do not leave any litter in the forest.</p><p>The event is organised by Stoa: Itäkeskus Library, Cultural Services, Helsinki Finnish Adult Education Centre and Youth Services.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69300/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpudz7ude", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ao4/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpudz7qfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpudz7rli/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpudz7scm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpudz7sxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpudz7tne/?format=api" } ], "images": [ { "id": 2385571, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:25:12.778730Z", "last_modified_time": "2026-07-08T12:25:12.778745Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fd2e7f47-4a2b-4187-b0f0-64ea484393ef.jpg", "name": "elokuvakerho", "cropping": "71,0,933,862", "photographer_name": "", "alt_text": "elokuvakerho", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385571/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T12:43:14.473381Z", "last_modified_time": "2026-07-08T20:05:01.069558Z", "date_published": null, "start_time": "2026-08-19T15:00:00Z", "end_time": "2026-10-14T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Elokuvakerho", "sv": "Filmklubben", "en": "Movie Club" }, "location_extra_info": { "fi": "Kokoushuone Meri, paitsi 30.9. kokoushuone Kari", "sv": "Mötesrummet Meri, utom den 30.9 i mötesrummet Kari.", "en": "Meeting Room Meri, except on 30 September Meeting Room Kari." }, "provider": null, "short_description": { "fi": "Tervetuloa keskustelemaan elokuvan herättämistä ajatuksista!", "sv": "Välkommen att diskutera tankarna som filmen väcker!", "en": "Join us to discuss the thoughts and ideas inspired by the film!" }, "info_url": null, "description": { "fi": "<p>Katso elokuva omaan tahtiisi ennen tapaamista ja tule mukaan jakamaan ajatuksia muiden kanssa. Elokuvakerhossa keskustellaan elokuvien herättämistä teemoista, kuten ihmisyydestä, tekoälystä, erilaisuudesta ja yhteisöllisyydestä, rennossa ja avoimessa ilmapiirissä. Aiempaa kokemusta elokuvien analysoinnista ei tarvita – uteliaisuus ja halu keskustella riittävät. Keskustelua tukevat kysymykset saat myös tulosteena Ison Omenan kirjaston palvelutiskiltä 15.7. alkaen.</p><p><strong>19.8.2026 (Kokoushuone Meri)</strong></p><p><strong>Hidden Figures - Varjoon jääneet (2016) </strong></p><p>Ikäraja K7</p><p>Teemoja: Näkyväksi tuleminen • Monimuotoisuus • Psykologinen turvallisuus • Teknologiamurros</p><p>Voit pitää nämä kysymykset mielessä elokuvaa katsoessasi:</p><ul><li>Kenen osaaminen jää elokuvassa aluksi piiloon — ja miksi?</li><li>Millaiset rakenteet estävät henkilöitä näyttämästä koko osaamistaan?</li><li>Missä hetkissä näkyy psykologinen turvallisuus tai sen puute?</li><li>Kuka käyttää elokuvassa valtaa näkyvästi, kuka hiljaisesti?</li><li>Mitä tämä tarina kertoo tekoälyn ajasta: kenen osaaminen voi nyt jäädä varjoon?</li></ul><p><strong>2.9.2026 (Kokoushuone Meri)</strong></p><p><strong>The Imitation Game (2014)</strong></p><p>Ikäraja K12</p><p>Teemoja: Erilainen ajattelu • Innovaatio • Kuuluminen • Identiteetti • Tekoälyn historia</p><p>Voit pitää nämä kysymykset mielessä elokuvaa katsoessasi:</p><ul><li>Miten elokuva kuvaa erilaista ajattelua — lahjana, ongelmana vai molempina?</li><li>Miksi Turingin on vaikea tulla ymmärretyksi työryhmässä?</li><li>Milloin erilaisuus hyväksytään elokuvassa, ja milloin sitä rangaistaan?</li><li>Millainen merkitys luottamuksella on tiimin työssä?</li><li>Miten Turingin tarina liittyy tämän päivän keskusteluun tekoälystä ja ihmisarvosta?</li></ul><p><strong>16.9.2026 (Kokoushuone Meri)</strong></p><p><strong>Her (2013)</strong></p><p>Ikäraja K12</p><p>Teemoja: Tekoäly • Yksinäisyys • Inhimillinen yhteys • Riippuvuus teknologiasta</p><p>Voit pitää nämä kysymykset mielessä elokuvaa katsoessasi:</p><ul><li>Miksi Theodore kiintyy Samanthaan? Mitä hän saa tekoälyltä?</li><li>Onko Samanthan kuunteleminen aitoa vai taitavaa reagointia — ja onko sillä väliä?</li><li>Mitä elokuva kertoo yksinäisyydestä teknologian keskellä?</li><li>Voiko tekoäly tukea ihmistä emotionaalisesti, ja missä kulkee raja?</li><li>Mitä tapahtuu, kun tekoäly kehittyy nopeammin kuin ihminen ehtii ymmärtää?</li></ul><p><strong>30.9.2026 (Kokoushuone Kari)</strong></p><p><strong>The Intern - Harjoittelija (2015)</strong></p><p>Ikäraja S</p><p>Teemoja: Ikädiversiteetti • Mentorointi • Hiljainen tieto • Arjen psykologinen turvallisuus</p><p>Voit pitää nämä kysymykset mielessä elokuvaa katsoessasi</p><ul><li>Millaisia ennakkoluuloja elokuvassa liittyy ikään ja osaamiseen?</li><li>Mitä Ben tuo yhteisöön, mitä teknologia tai nopeus eivät korvaa?</li><li>Miten kuunteleminen rakentaa turvallisuutta arjen pienissä tilanteissa?</li><li>Voiko mentorointi kulkea molempiin suuntiin — nuoremmalta vanhemmalle ja päinvastoin?</li><li>Miten digitalisaation aikakaudella voisi arvostaa paremmin hiljaista tietoa?</li></ul><p><strong>14.10.2026 (Kokoushuone Meri)</strong></p><p><strong>Invictus - Voittamaton (2009)</strong></p><p>Ikäraja K12</p><p>Teemoja: Yhteinen identiteetti • Johtajuus • Sovinto</p><p>Voit pitää nämä kysymykset mielessä elokuvaa katsoessasi:</p><ul><li>Miten Mandela rakentaa yhteistä identiteettiä tilanteessa, jossa ihmiset eivät luota toisiinsa?</li><li>Miksi rugbyjoukkue on elokuvassa enemmän kuin urheilujoukkue?</li><li>Mitä elokuva kertoo symboleista — väreistä, lauluista, lipuista ja pelipaidoista?</li><li>Voiko yhteinen tavoite auttaa ylittämään vanhoja jakolinjoja?</li><li>Millaista johtajuutta tarvitaan, jotta yhteinen identiteetti ei peitä vaikeita kysymyksiä?</li></ul>", "sv": "<p>Se filmen i din egen takt före träffen och kom med för att dela dina tankar med andra. I filmklubben samtalar vi i en avslappnad och öppen atmosfär om teman som filmen väcker, såsom mänsklighet, artificiell intelligens, olikhet och gemenskap. Du behöver inte ha någon tidigare erfarenhet av filmanalys – det räcker med nyfikenhet och en vilja att samtala. Frågor som stöd för diskussionen finns att hämta vid bibliotekets kunddisk (på finska).</p><p>Samtalet förs på finska.</p>", "en": "<p>Watch the film at your own pace before the meeting, then join us to share your thoughts with others. In the film club, we discuss the themes the film raises—such as humanity, artificial intelligence, diversity, and community—in a relaxed and welcoming atmosphere. No previous experience in film analysis is required; curiosity and a willingness to take part in the discussion are all you need. Discussion questions are also available as a handout in Finnish at the library's service desk.</p><p>The discussion will be held in Finnish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpudz7ude/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69592", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385570, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T13:14:36.632209Z", "last_modified_time": "2026-07-08T13:14:36.632252Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791317.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385570/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:34.963902Z", "last_modified_time": "2026-07-08T13:14:36.787439Z", "date_published": null, "start_time": "2026-11-17T16:00:00Z", "end_time": "2026-11-17T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PHMOsta kajahtaa! -oppilaskonsertti", "sv": "PHMOsta kajahtaa! -oppilaskonsertti", "en": "PHMOsta kajahtaa! -oppilaskonsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7ACEAB45A64AA0ED15E3FA224752CFEA/PHMOsta_kajahtaa_-oppilaskonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7ACEAB45A64AA0ED15E3FA224752CFEA/PHMOsta_kajahtaa_-oppilaskonsertti", "en": "http://www.malmitalo.fi/en/events/event/7ACEAB45A64AA0ED15E3FA224752CFEA/PHMOsta_kajahtaa_-oppilaskonsertti" }, "description": { "fi": "<p>PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa.</p><p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston eri ikäisten taitajien esityksiä – konsertteihin on vapaa pääsy!</p><p>Konsertit 2., 3. ja 17.11. klo 18.00 Malmitalossa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69592/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69597", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385569, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:11.015854Z", "last_modified_time": "2026-07-08T12:14:11.015870Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789838.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385569/?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-07-08T12:14:10.924922Z", "last_modified_time": "2026-07-08T12:14:11.157290Z", "date_published": null, "start_time": "2026-12-12T12:00:00Z", "end_time": "2026-12-12T12:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EB8DDA43F6D5FE2DE85C58484958A8B0/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/EB8DDA43F6D5FE2DE85C58484958A8B0/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/EB8DDA43F6D5FE2DE85C58484958A8B0/Red_Nose_Company_Ihmeellinen_maalari" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69597/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68477", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385568, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:09.302461Z", "last_modified_time": "2026-07-08T12:14:09.302476Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789834.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385568/?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-07-08T12:14:09.195425Z", "last_modified_time": "2026-07-08T12:14:09.444935Z", "date_published": null, "start_time": "2026-12-03T08:00:00Z", "end_time": "2026-12-03T08:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/132F3F1F6F217003ABD6F2FE510116BD/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/132F3F1F6F217003ABD6F2FE510116BD/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/132F3F1F6F217003ABD6F2FE510116BD/Red_Nose_Company_Ihmeellinen_maalari" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }