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&is_free=true&page=38
{ "meta": { "count": 30620, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=39", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=37" }, "data": [ { "id": "kulke:69598", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385566, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:08.524304Z", "last_modified_time": "2026-07-08T12:14:08.524320Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789832.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385566/?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:08.412254Z", "last_modified_time": "2026-07-08T12:14:08.662024Z", "date_published": null, "start_time": "2026-12-02T08:00:00Z", "end_time": "2026-12-02T08: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, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DE966008F7C772A0819499051E0AA2E4/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/DE966008F7C772A0819499051E0AA2E4/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/DE966008F7C772A0819499051E0AA2E4/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": 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?" }, "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:69598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69595", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:07.975179Z", "last_modified_time": "2026-07-08T12:14:07.975195Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789827.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385565/?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:07.835707Z", "last_modified_time": "2026-07-08T12:14:08.205962Z", "date_published": null, "start_time": "2026-12-01T08:00:00Z", "end_time": "2026-12-01T08: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, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4C9C60316107771B68ED9DB0090A2740/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/4C9C60316107771B68ED9DB0090A2740/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/4C9C60316107771B68ED9DB0090A2740/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": 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?" }, "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:69595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68467", "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:348/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T12:14:03.400450Z", "last_modified_time": "2026-04-14T12:14:03.400465Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786155.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T12:14:03.230416Z", "last_modified_time": "2026-07-08T11:16:20.197011Z", "date_published": null, "start_time": "2026-08-19T14:30:00Z", "end_time": "2026-08-19T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve_n_Seagulls_William_Oster_the_Moonliners", "sv": "http://www.malmitalo.fi/sv/evenemang/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve_n_Seagulls_William_Oster_the_Moonliners", "en": "http://www.malmitalo.fi/en/events/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve_n_Seagulls_William_Oster_the_Moonliners" }, "name": { "fi": "Steve ’n’ Seagulls, William Öster & the Moonliners – Malmin tapahtumakesä 2026", "sv": "Steve ’n’ Seagulls, William Öster & the Moonliners – Malms evenemangssommar 2026", "en": "Steve ’n’ Seagulls, William Öster & the Moonliners – Malmi Summer of Events 2026" }, "location_extra_info": null, "short_description": { "fi": "Kantria hehkuva ilta loistavan live-musiikin parissa kutsuu jälleen kävijät koolle Malmin tapahtumakesään!", "sv": "En kväll med glödande country och fantastisk livemusik bjuder åter in besökarna till Malms evenemangssommar!", "en": "An evening glowing with country and great live music invites visitors to the Malmi Summer of Events once again!" }, "description": { "fi": "<p>Kantria hehkuva ilta loistavan live-musiikin parissa kutsuu jälleen kävijät koolle Malmin tapahtumakesään!</p><p><b>Aikataulu</b><br>17.30–18.20\tWilliam Öster & the Moonliners<br>19.00–20.00\tSteve'n'Seagulls</p><p><b>Päivän ohjelma<br>klo 17.30–18.20 William Öster & the Moonliners</b><br>William Öster & the Moonliners tarjoilee sydäntä lämmittäviä melodioita ja jalalla poljettavaa twangia. Luvassa on rentoa, intiimiä bluesin, kantrin ja folkin fuusiota – musiikkia, joka lohduttaa ja kutsuu liikkeelle.<br>Williamin karismaattista laulua ja tarinankerrontaa säestää The Moonliners -yhtye: Sebastian Finska (pedal steel- ja sähkökitarat), Tommi Teronen (koskettimet), Juha ”Mid Tempo” Mäkinen (basso) ja Jani Ahtiainen (rummut). Tule sellaisena kuin olet ja anna grooven viedä.</p><p><b>klo 19.00–20.00 Steve ’n’ Seagulls</b><br>Vuonna 2010 perustettu Steve ’n’ Seagulls tunnetaan omaleimaisesta tyylistään, jossa newgrass, country, rock ja bluegrass kohtaavat. Yhtyeen laaja soitinarsenaali – banjosta kontrabassoon ja haitarista mandoliiniin – vaihtuu lennosta, ja kokonaisuus on hioutunut vuosien saatossa timantinkovaksi live elämykseksi.</p><p>Steve ’n’ Seagulls on julkaissut neljä albumia ja kiertänyt maailmaa Euroopasta Pohjois Amerikkaan, Australiaan ja Etelä Amerikkaan asti. Keikat tunnetaan energisyydestään, taidokkuudestaan ja tarttuvasta tunnelmastaan, jossa viihdytään ja nautitaan musiikista täysillä.</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>En kväll med glödande country och fantastisk livemusik bjuder åter in besökarna till Malms evenemangssommar!</p><p><b>Tidtabell</b><br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls</p><p><b>Dagens program<br>kl. 17.30–18.20 William Öster & the Moonliners</b><br>William Öster & the Moonliners bjuder på hjärtevärmande melodier och fottrampande twang. Lättsam, intim blandning av blues, country och folkmusik – musik som ger tröst och kallar till rörelse.<br>Williams karismatiska sång och historieberättande ackompanjeras av The Moonliners: Sebastian Finska (pedal steel och elgitarr), Tommi Teronen (keyboard), Juha ”Mid Tempo” Mäkinen (bas) och Jani Ahtiainen (trummor). Kom som du är och låt grooven föra.</p><p><b>kl. 19.00–20.00 Steve 'n' Seagulls</b><br>Steve 'n' Seagulls bildades 2010 och är känt för sin särpräglade stil, där newgrass, country, rock och bluegrass möts. Bandets stora instrumentarsenal – allt från banjo till kontrabas och från dragspel till mandolin – byts ut i farten, och helheten har under åren finslipats till en diamanthård liveupplevelse.</p><p>Steve 'n' Seagulls har släppt fyra album och turnerat världen över från Europa till Nordamerika, Australien och Sydamerika. Spelningarna är kända för sin energi, skicklighet och greppande stämning, där människor trivs och njuter av musiken till fullo.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>An evening glowing with country and great live music invites visitors to the Malmi Summer of Events once again!</p><p><b>Schedule</b><br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n’ Seagulls</p><p><b>Programme of the day<br>17.30–18.20 William Öster & the Moonliners</b><br>William Öster & the Moonliners will offer heart-warming melodies and foot-stomping twang. The audience is in for a relaxed, intimate fusion of blues, country and folk – music that will comfort and invite you to move.<br>William's charismatic singing and storytelling will be accompanied by The Moonliners: Sebastian Finska (pedal steel and electric guitars), Tommi Teronen (keyboards), Juha ‘Mid Tempo’ Mäkinen (bass) and Jani Ahtiainen (drums). Come as you are and let the groove take you.</p><p><b>19.00–20.00 Steve 'n' Seagulls</b><br>Formed in 2010, Steve 'n' Seagulls are known for their distinctive style, where newgrass, country, rock and bluegrass meet. The band's vast arsenal of instruments from banjo to double bass and from accordion to mandolin changes on the fly, and this musical mixture has been honed into a cutting live experience over the years.</p><p>Steve 'n' Seagulls have released four albums and toured the world from Europe to North America, Australia and South America. Their shows are known for energy, skill and infectious atmosphere, where people are entertained and enjoy the music to the full.</p><p>Entry to the events is free of charge!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpuc6z64a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T10:15:36.274249Z", "last_modified_time": "2026-07-08T10:15:36.274262Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fdc657be-fa5a-4d3f-aeb7-e8772bd9efd8.png", "name": "", "cropping": "0,94,789,883", "photographer_name": "Ai - tekoälykuva", "alt_text": "tekoälyllä tuotettu kuva Azerbaidzanilaisesta Arshin Mal Alan (operetti) musiikkiteoksesta jossa tyttö parvekkeella ja poika kävelee kadulla, he molemmat haaveilevat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385564/?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-08T10:19:06.328049Z", "last_modified_time": "2026-07-08T10:19:06.328065Z", "date_published": null, "start_time": "2026-07-16T13:50:00Z", "end_time": "2026-07-16T14:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": null, "name": { "fi": "Arshin Mal Alan – lasten esittämä azerbaidžanilainen musiikkikomedia (engl.)", "en": "Arshin Mal Alan – an Azerbaijani musical comedy performed by children (English)" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "short_description": { "fi": "Arshin Mal Alan\" on yksi Azerbaidžanin tunnetuimmista musiikkikomedioista. Lasten esittämä lämminhenkinen ja iloinen näytelmä tarjoaa elämyksiä kaikenikäisille", "en": "\"Arshin Mal Alan\" is one of Azerbaijan's best-known musical comedies. This heartwarming and cheerful play, performed by children" }, "description": { "fi": "Arshin Mal Alan – lasten esittämä azerbaidžanilainen musiikkikomedia<p>Tervetuloa koko perheen kulttuuritapahtumaan!</p><p>\"Arshin Mal Alan\" on yksi Azerbaidžanin tunnetuimmista musiikkikomedioista. Lasten esittämä lämminhenkinen ja iloinen näytelmä tarjoaa elämyksiä kaikenikäisille.</p><p>📅 16.7.2026 klo 16.50</p><p>📍 Lippulaivan kirjasto, Salonki, Espoo</p><p>Kieli: englanti</p><p>🎟️ Vapaa pääsy</p><p>Lämpimästi tervetuloa!</p>", "en": "Arshin Mal Alan – an Azerbaijani musical comedy performed by children<p>Welcome to a cultural event for the whole family!</p><p>\"Arshin Mal Alan\" is one of Azerbaijan’s best-known musical comedies. This heartwarming and joyful play, performed by children, offers an enjoyable experience for all ages.</p><p>📅 July 16, 2026, at 4:50 p.m.</p><p>📍 Lippulaiva Library, Salonki, Espoo</p><p>Language: English</p><p>🎟️ Free admission</p><p>We warmly welcome you!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuc6z64a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:47528682-b39e-4d24-91c6-d2eb7aecb0bc", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79290/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2026-07-08T10:16:50.272605Z", "last_modified_time": "2026-07-08T10:16:50.272623Z", "date_published": "2026-07-08T10:15:49Z", "start_time": "2026-07-08T10:25:00Z", "end_time": "2026-07-08T12:25:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "info_url": null, "name": { "fi": "8.7.2026 Kattotapahtuma - alitapahtuma -testi" }, "location_extra_info": null, "short_description": { "fi": "Lyhty kuvaus" }, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:47528682-b39e-4d24-91c6-d2eb7aecb0bc/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpucqzqdy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824151, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-01T10:17:05.647780Z", "last_modified_time": "2026-04-01T10:17:05.647794Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e0ef750-781b-48c4-96de-bc6fd613b376.jpeg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Veikko Somerpuro", "alt_text": "Henri Vanhanen katsoo kameraan, hänellä on puku ja kravatti. Vieressä on kuva hänen , sekä Mika Aaltolan kirjasta, nimeltä Etulinjassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824151/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T09:31:22.917644Z", "last_modified_time": "2026-07-08T09:34:47.113014Z", "date_published": "2026-07-08T09:00:00Z", "start_time": "2026-09-10T15:00:00Z", "end_time": "2026-09-10T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Henri Vanhanen", "sv": "Henri Vanhanen", "en": "Henri Vanhanen" }, "info_url": null, "name": { "fi": "Kirjailijavieraana Henri Vanhanen - Suomi ja maailma: turvallisuuspoliittinen ilta", "sv": "Författargäst: Henri Vanhanen – Finland och världen: en kväll om säkerhetspolitik", "en": "Guest Author Henri Vanhanen - Finland and the World: An Evening on Security Policy " }, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "short_description": { "fi": "Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee? ", "sv": "Hur har Finlands säkerhetsmiljö förändrats i en värld i omvandling och i takt med att konkurrensen mellan USA, Ryssland och Kina skärps?", "en": "How has Finland’s security environment changed in a world in transition and amid growing competition between the United States, Russia, and China?" }, "description": { "fi": "<p>Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee?</p><p>Vieraana ulko- ja turvallisuuspolitiikan asiantuntija, ja tietokirjailija <strong>Henri Vanhanen</strong>.</p><p>Vanhanen esittelee uutuuskirjaansa ”<strong>Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa</strong>” (Otava 2026). Kirja kuvaa turvallisuuspolitiikan nykyhetkeä ja tulevaisuutta sekä sitä, miten meidän on sopeuduttava muuttuvaan maailmanjärjestykseen ja mitä se vaatii Suomelta.</p><p>Asiantuntija-alustuksen jälkeen on tilaa yleisökysymyksille sekä keskustelulle. Tervetuloa!</p><p>Noudatamme kirjaston tapahtumissa <a href=\"https://www.espoo.fi/fi/kulttuuriespoon-turvallisemman-tilan-periaatteet\">Turvallisemman tilan periaatteita</a>.</p>", "sv": "<p>Hur har Finlands säkerhetsmiljö förändrats i en värld i omvandling och i takt med att konkurrensen mellan USA, Ryssland och Kina skärps?</p><p>Gäst är utrikes- och säkerhetspolitisk expert samt fackboksförfattare <strong>Henri Vanhanen</strong>, som presenterar sin nya bok ”<strong>Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa</strong>” (Otava 2026).</p><p>Boken beskriver dagens och framtidens säkerhetspolitik samt hur Finland behöver anpassa sig till den föränderliga världsordningen och vilka krav detta ställer på oss.</p><p>Efter expertinledningen finns tid för publikfrågor och diskussion. Välkommen!</p><p><a href=\"https://www.espoo.fi/sv/kulturesbos-principer-tryggare-rum\">Vi följer bibliotekets principer för tryggare rum.</a></p><p>Evenemanget är på finska.</p>", "en": "<p>How has Finland’s security environment changed in a world in transition and amid growing competition between the United States, Russia, and China?</p><p>Our guest is foreign and security policy expert and nonfiction author <strong>Henri Vanhanen</strong>, who will present his new book On the <strong>Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa</strong> (Otava 2026).</p><p>The book examines the current state and future of security policy and explores how Finland must adapt to a shifting global order and what this requires from us.</p><p>After the expert presentation, there will be time for audience questions and discussion. Welcome!</p><p><a href=\"https://www.espoo.fi/en/cultureespoos-principles-safer-space\">We follow the library’s Safer Space Principles.</a></p><p>The event will be held in Finnish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpucqzqdy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69083", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385549, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:05.369717Z", "last_modified_time": "2026-07-08T08:14:05.369739Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792691.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T08:14:05.287481Z", "last_modified_time": "2026-07-08T08:14:05.460933Z", "date_published": null, "start_time": "2026-12-09T15:30:00Z", "end_time": "2026-12-09T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti", "en": "http://www.malmitalo.fi/en/events/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti" }, "name": { "fi": "PHMO: Muskarilaisten konsertti", "sv": "PHMO: Muskarilaisten konsertti", "en": "PHMO: Muskarilaisten konsertti" }, "location_extra_info": null, "short_description": { "fi": "Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!" }, "description": { "fi": "<p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68657", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385548, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.964875Z", "last_modified_time": "2026-07-08T08:14:04.964894Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791518.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T08:14:04.883716Z", "last_modified_time": "2026-07-08T08:14:05.069454Z", "date_published": null, "start_time": "2026-12-07T16:00:00Z", "end_time": "2026-12-07T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa", "en": "http://www.malmitalo.fi/en/events/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa" }, "name": { "fi": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantait", "sv": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantait", "en": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantaitj" }, "location_extra_info": null, "short_description": { "fi": "Kuun ensimmäinen maanantai tanssitaan Malmitalolla!" }, "description": { "fi": "<p>Kuun ensimmäinen maanantai tanssitaan Malmitalolla!</p><p>Ilmaiset ja kaikille avoimet yhteisötanssit alkavat tanssiopetuksella, jonka jälkeen oppeja pääsee harjoittelemaan livebändin säestyksellä. Tanssittava tyyli vaihtuu joka kuukausi. Tervetuloa tanssimaan!<br> <br>Aikataulu:<br>18–19 Império do Papagaio: samba<br>19–20 Samba Online<br> <br>Império do Papagaion tunnilla pääset tutustumaan brasilialaiseen karnevaalisambaan.</p><p>Samba Online on brasilialainen yhtye, joka tuo lavalle Brasilian perinteiset ja energiset rytmit, kuten samban ja pagoden. Asuttuaan Suomessa useiden vuosien ajan ryhmä brasilialaisia muusikoita sai idean vahvistaa sambakulttuuria Suomessa ja koko Pohjoismaissa.</p><p>Yhtye on jakanut lavan tunnettujen samba-artistien kanssa, kuten Arlindinho Cruzin, joka on Arlindo Cruzin – yhden samban historian merkittävimmistä nimistä – poika sekä Juninho Thybau, joka on Zeca Pagodinhon sukulainen.</p><p>Samba Online on esiintynyt suurilla lavoilla, kuten Apollo Live Clubissa, Biblioteket Livessa, Brazilian Day Stockholmissa sekä Helsinki Samba Carnavalissa Senaatintorilla, sekä esiintymällä Viking Linen aluksilla. Yhtye on esiintynyt kansainvälisesti muun muassa Suomessa, Ruotsissa, Norjassa ja Virossa.</p><p>Kappaleet “Passada de Jogador” ja “Pause e Play” ovat saatavilla kaikilla digitaalisilla alustoilla, ja lisää julkaisuja on tulossa pian. Samba Onlinen suurin vahvuus on sen iloinen ja tarttuva energia sekä tanssittava rytmi, joka saa yleisön liikkumaan ja nauttimaan musiikista alusta loppuun.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68962", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-797/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2201268, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-13T06:14:28.340574Z", "last_modified_time": "2026-05-13T06:14:28.340588Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735440.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201268/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-13T06:14:28.121486Z", "last_modified_time": "2026-07-08T08:13:42.170316Z", "date_published": null, "start_time": "2026-07-27T13:00:00Z", "end_time": "2026-07-27T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1A0E0C19E91449A26E5A452F64F59DA9/Jazz_Suomi_100_-keskustelu_Jazz_ja_rauha_Lauri_Kallion_yhtye_", "sv": "http://www.espanlava.fi/sv/evenemang/event/1A0E0C19E91449A26E5A452F64F59DA9/Jazz_i_Finland_100_-diskussion_Jazz_och_fred_Lauri_Kallion_yhtye", "en": "http://www.espanlava.fi/en/events/event/1A0E0C19E91449A26E5A452F64F59DA9/Jazz_in_Finland_100_discussion_Jazz_and_peace_Lauri_Kallion_yhtye" }, "name": { "fi": "Jazz Suomi 100 -keskustelu: Jazz ja rauha | Lauri Kallion yhtye – Jazz-Espa", "sv": "Jazz i Finland 100 -diskussion: “Jazz och fred” | Lauri Kallion yhtye – Jazz-Espa", "en": "Jazz in Finland 100 discussion: “Jazz and peace” | Lauri Kallion yhtye – Jazz-Espa" }, "location_extra_info": null, "short_description": { "fi": "Jazz-Espan avaa paneelikeskustelu jazzin roolista rauhan rakentajana sekä eri musiikkigenrejä yhteen sulauttava Lauri Kallion yhtye.", "sv": "Jazz-Espa öppnas av en paneldiskussion om jazzens roll som fredsskapare samt av Lauri Kallios band, som förenar olika musikgenrer.", "en": "Jazz-Espa will be opened by a panel discussion on the role of jazz as a peacebuilder and by Lauri Kallio’s ensemble, which blends various musical genres." }, "description": { "fi": "<p>Jazz-Espan avaa paneelikeskustelu jazzin roolista rauhan rakentajana sekä eri musiikkigenrejä yhteen sulauttava Lauri Kallion yhtye.</p><p>Klo 16.00 Jazz Suomi 100 -keskustelu: Jazz ja rauha<br>Klo 17.15 Lauri Kallion yhtye</p><p>**</p><p><b>Jazz Suomi 100 -keskustelu: Jazz ja rauha</b></p><p>Elämme aikaa, jota varjostavat sodat ja epävarmuuden kasvaminen. Taiteella ja kulttuurilla on tärkeä rooli demokratian vahvistamisessa sekä kulttuurien välisen vuoropuhelun ja resilienssin rakentamisessa. Jazz on taidemuotona tunnustettu rauhan, monimuotoisuuden sekä ihmisoikeuksien ja ihmisarvon edistäjänä.</p><p>Paneelissa tarkastellaan, miten aktivismi ja rauhan teemat näkyvät tämän päivän jazzmuusikoiden taiteessa ja tavassa hahmottaa omaa artistiuttaan.</p><p><b>Keskustelijat:</b><br>Linda Fredriksson, muusikko, säveltäjä<br>Joakim Berghäll, muusikko, säveltäjä<br>Heli Reimann, jazzin tutkija</p><p>Moderaattori:<br>Kim Emil Ramstedt, tutkija, Helsingin yliopisto</p><p>Paneelissa puhutaan englantia.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>**</p><p><b>Lauri Kallio</b> on moneen venyvä musiikin ammattilainen, jonka työn jälkiä voi löytää noin neljältäkymmeneltä julkaisulta: äänittäjänä, miksaajana ja tuottajana, säveltäjänä, sovittajana sekä luonnollisesti myös soittajana, ennen kaikkea kitaristina. Kallio on viime vuosina tullut tutuksi mm. yhtyeistä <b>Pambikallio </b>ja <b>Jimi Tenor Band</b>. Kallion toinen levy <i>Turtles, Cats and Other Creatures</i> julkaistiin 2025.</p><p><b>Lauri Kallion yhtye</b> soittaa musiikkia, jonka “tulkinnoille avoin maisema jättää kuulijalle vastuuta ja vapautta etsiä tarinat sekä niille merkitykset. Sitäkään ei tosin tarvitse tehdä, voi vain olla ja nauttia.” (Pekka Laine)</p><p><b>Lauri Kallio</b> – kitara<br><b>Adele Sauros </b>– saksofonit & poikkihuilu<br><b>Natalia Castrillón</b> – harppu<br><b>Ville Rauhala</b> – basso<br><b>Joonas Leppänen</b> – rummut</p><p><i>Suomen Jazzliiton järjestämä Jazz-Espa esittelee kotimaan ajankohtaisimpia jazzyhtyeitä 27.7.–1.8.2026 Espan lavalla. Konsertit ovat ilmaisia, esteettömiä ja koko perheelle sopivia. Tapahtumilla on säävaraus. Seuraa tiedotusta osoitteessa jazzespa.fi sekä somessa @suomenjazzliitto.</i></p><p>Kuva:<br>Vasemmalla – Linda Fredriksson (c) Iiris Heikka / Joakim Berghäll (c) Dorit Salutskij / Kim Ramstedt (c) Emmi Suominen / Heli Reimann (c) ei tiedossa<br>Oikealla – Lauri Kallio (c) Jimi Tenor<br>Graafiset elementit: Suomen Jazzliitto</p>", "sv": "<p>Jazz-Espa öppnas av en paneldiskussion om jazzens roll som fredsskapare samt av Lauri Kallios band, som förenar olika musikgenrer.</p><p>Kl. 16.00 Jazz i Finland 100 -diskussion: Jazz och fred<br>Kl. 17.15 Lauri Kallion yhtye</p><p>**</p><p><b>Jazz i Finland 100 -diskussion: Jazz och fred</b></p><p>Vi lever i en tid som överskuggas av krig och växande osäkerhet. Konst och kultur har en viktig roll i att stärka demokratin samt i att bygga upp dialog mellan kulturer och resiliens. Jazzen är erkänd som en konstform som främjar fred, mångfald samt mänskliga rättigheter och människovärde.</p><p>Panelen undersöker hur aktivism och fredsteman syns i dagens jazzmusikers konst och i sättet de uppfattar sitt eget konstnärskap.</p><p><b>Deltagare:</b><br>Linda Fredriksson, musiker, kompositör<br>Joakim Berghäll, musiker, kompositör<br>Heli Reimann, jazz forskare</p><p>Moderator:<br>Kim Emil Ramstedt, forskare, Helsingfors universitetet</p><p>Panelen hållas på engelska.</p><p>År 2026 har det gått 100 år sedan jazzen symboliskt anlände till Finland med fartyget Andania. Året är därför ett historiskt jubileumsår för den finländska jazzen: jubileumsåret Jazz i Finland 100. Jubileumsåret lyfter fram finländsk jazz och dess utövare både i Finland och utomlands, och firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz i Finland 100 koordineras av Finlands Jazzförbund.</p><p>**</p><p><b>Lauri Kallio</b> är ett mångsidigt musikproffs vars arbete återfinns på ett fyrtiotal utgåvor. Han har verkat som inspelningstekniker, mixare, producent, kompositör och arrangör – samt naturligtvis som musiker, främst gitarrist. Under de senaste åren har Kallio blivit känd genom bland annat banden <b>Pambikallio</b> och <b>Jimi Tenor Band</b>. Kallios andra album, <i>Turtles, Cats and Other Creatures</i>, gavs ut 2025.</p><p><b>Lauri Kallion yhtye</b> spelar musik vars \"landskap, öppet för tolkningar, ger lyssnaren ansvar och frihet att söka efter berättelserna och deras betydelser. Det behöver man dock inte heller göra, man kan bara vara och njuta.\" (Pekka Laine)</p><p><b>Lauri Kallio</b> – gitarr<br><b>Adele Sauros</b> – saxofoner & tvärflöjt<br><b>Natalia Castrillón</b> – harpa<br><b>Ville Rauhala</b> – bas<br><b>Joonas Leppänen</b> – trummor</p><p><i>Jazz-Espa, som arrangeras av Finlands Jazzförbund, presenterar landets mest aktuella jazzgrupper den 27.7–1.8.2026 på Esplanadestraden. Konserterna är gratis, tillgängliga och passar för hela familjen. Evenemangen har väderreservation. Följ informationen på jazzespa.fi och i sociala medier @suomenjazzliitto.</i></p><p>Foto:<br>Till vänster – Linda Fredriksson (c) Iiris Heikka / Joakim Berghäll (c) Dorit Salutskij / Kim Ramstedt (c) Emmi Suominen / Heli Reimann (c) okänd<br>Till höger – Lauri Kallio (c) Jimi Tenor<br>Grafiska element: Suomen Jazzliitto</p>", "en": "<p>Jazz-Espa will be opened by a panel discussion on the role of jazz as a peacebuilder and by Lauri Kallio’s ensemble, which blends various musical genres.</p><p>16:00 Jazz in Finland 100 discussion: Jazz and peace<br>17:15 Lauri Kallion yhtye</p><p>**</p><p><b>Jazz in Finland 100 discussion: Jazz and peace</b></p><p>We live in a time overshadowed by war and growing uncertainty. Art and culture play a vital role in strengthening democracy, as well as in building intercultural dialogue and resilience. As an art form, jazz is recognized for promoting peace, diversity, human rights, and human dignity.</p><p>The panel examines how activism and themes of peace are reflected in the work of today's jazz musicians and in the way they perceive their own artistry.</p><p><b>Panelists:</b><br>Linda Fredriksson, musician, composer<br>Joakim Berghäll, musician, composer<br>Heli Reimann, jazz researcher</p><p>Moderator:<br>Kim Emil Ramstedt, researcher, University of Helsinki</p><p>The panel will be held in English.</p><p>The year 2026 marks 100 years since jazz symbolically arrived in Finland aboard the Andania ship. The centenary celebration, Jazz in Finland 100, will highlight Finnish jazz and its artists at home and abroad, recognising jazz as an integral part of Finland's cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>**</p><p><b>Lauri Kallio</b> is a versatile music professional whose work can be found on approximately forty releases. He has contributed as a recording engineer, mixer, producer, composer, and arranger—and naturally as a performer, primarily a guitarist. In recent years, Kallio has become well-known for his work with bands such as <b>Pambikallio</b> and the <b>Jimi Tenor Band</b>. His second album, <i>Turtles, Cats and Other Creatures</i>, was released in 2025.</p><p>Lauri Kallio’s ensemble plays music where the \"landscape, open to interpretation, leaves the listener with the responsibility and freedom to seek out stories and their meanings. Then again, you don’t have to do that either; you can just be and enjoy.\" (Pekka Laine)</p><p><b>Lauri Kallio</b> – guitar<br><b>Adele Sauros</b> – saxophones & flute<br><b>Natalia Castrillón</b> – harp<br><b>Ville Rauhala</b> – bass<br><b>Joonas Leppänen</b> – drums</p><p><i>Jazz-Espa, organized by the Finnish Jazz Federation, presents the most current domestic jazz ensembles from July 27 to August 1, 2026, at the Espa Stage. The concerts are free of charge, accessible, and suitable for the whole family. Events are subject to weather conditions. Follow our updates at jazzespa.fi and on social media @suomenjazzliitto.</i></p><p>Photo credits:<br>On the left – Linda Fredriksson (c) Iiris Heikka / Joakim Berghäll (c) Dorit Salutskij / Kim Ramstedt (c) Emmi Suominen / Heli Reimann (c) unknown<br>On the right – Lauri Kallio (c) Jimi Tenor<br>Graphic elements: Suomen Jazzliitto</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68962/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69082", "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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T07:13:56.065016Z", "last_modified_time": "2026-07-08T07:13:56.065032Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792688.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T07:13:55.937821Z", "last_modified_time": "2026-07-08T07:13:56.211535Z", "date_published": null, "start_time": "2026-12-03T16:00:00Z", "end_time": "2026-12-03T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti", "en": "http://www.malmitalo.fi/en/events/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti" }, "name": { "fi": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti", "sv": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti", "en": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti" }, "location_extra_info": null, "short_description": { "fi": "Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!" }, "description": { "fi": "<p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69225", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:755/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T06:14:36.968686Z", "last_modified_time": "2026-07-08T06:14:36.968704Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793532.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385544/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T06:14:36.899826Z", "last_modified_time": "2026-07-08T06:14:37.057051Z", "date_published": null, "start_time": "2026-12-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_", "en": "http://www.kanneltalo.fi/en/events/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_" }, "name": { "fi": "Kauneimmat joululaulut", "sv": "Kauneimmat joululaulut", "en": "Kauneimmat joululaulut" }, "location_extra_info": null, "short_description": { "fi": "Laula yhdessä ja tee hyvää!" }, "description": { "fi": "<p>Laula yhdessä ja tee hyvää!</p><p>Suomen Lähetysseuran Kauneimmat Joululaulut kaikuvat jälleen maailman lasten puolesta. Tule laulamaan yhdessä – yksin, kaksin tai isommallakin porukalla!</p><p>Kannelmäen seurakunnan järjestämässä tilaisuudessa joulun tunnelmaan vievät sekä perinteiset tutut joululaulut että viime vuosina suosioon nousseet kappaleet. Samalla kun laulat itsellesi joulutunnelmaa, voit lahjoittaa maailman lasten hyväksi Suomen Lähetysseuran kautta.</p><p><u><a href=\"https://kauneimmatjoululaulut.fi/\">Lue lisää Kauneimmista Joululauluista</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69225/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69224", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385543, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T06:14:36.592609Z", "last_modified_time": "2026-07-08T06:14:36.592626Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385543/?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-08T06:14:36.458970Z", "last_modified_time": "2026-07-08T06:14:36.781023Z", "date_published": null, "start_time": "2026-12-13T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut", "en": "http://www.kanneltalo.fi/en/events/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut" }, "name": { "fi": "Lasten kauneimmat joululaulut", "sv": "Lasten kauneimmat joululaulut", "en": "Lasten kauneimmat joululaulut" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa laulamaan yhdessä kaikenikäisille pienille ja isoille sopivia joululauluja!" }, "description": { "fi": "<p>Tervetuloa laulamaan yhdessä kaikenikäisille pienille ja isoille sopivia joululauluja!</p><p>Kanssasi laulamassa ja joulun tunnelmaa tuomassa on muun muassa lapsikuoro Kannelkellot johtajanaan kanttori Sirkku Rintamäki.</p><p>Kannelmäen seurakunnan järjestämässä yhteislaulutilaisuudessa otetaan huomioon erityisesti perheen pienimmät. Samalla kun laulat itsellesi joulutunnelmaa, voit lahjoittaa maailman lasten hyväksi Suomen Lähetysseuran kautta.</p><p><u><a href=\"https://kauneimmatjoululaulut.fi/\">Lue lisää Kauneimmista Joululauluista</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69224/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68961", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/kulke:755/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385542, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T05:13:57.696930Z", "last_modified_time": "2026-07-08T05:13:57.696946Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792384.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385542/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T05:13:57.546065Z", "last_modified_time": "2026-07-08T05:13:57.956462Z", "date_published": null, "start_time": "2026-12-07T15:00:00Z", "end_time": "2026-12-07T17:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa", "en": "http://www.kanneltalo.fi/en/events/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa" }, "name": { "fi": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait", "sv": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait", "en": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait" }, "location_extra_info": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää." }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p><b>Elokuvaluento klo 17–17.45<br>Elokuva klo 18–19.50</b></p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.<br> <br>Ikäraja: 7<br>Pituus: 108 min<br>Ohjaus: Pamela Tola<br>Käsikirjoitus: Pamela Tola, Karoliina Lindgren ja Aleksi Bardy<br>Näyttelijät: Muun muassa Leena Uotila, Seela Sella, Sanna-Kaisa Palo, Eero Saarinen, Pirjo Lonka, Jani Volanen, Linnea Skog, Noa Tola ja Heikki Nousiainen<br>Genre: Komedia<br>Ensi-ilta: 25.12.2025</p><p>Syksyn <b>Kino Kuutamoissa</b> nähdään uusia kotimaisia elokuvia. Elokuvahistorian asiantuntija <b>FT Harri Kilpi</b> johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68961/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68611", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385540, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:43.026928Z", "last_modified_time": "2026-07-07T13:14:43.026943Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791185.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:42.922435Z", "last_modified_time": "2026-07-07T13:14:43.154592Z", "date_published": null, "start_time": "2026-12-06T13:00:00Z", "end_time": "2026-12-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla", "en": "http://www.kanneltalo.fi/en/events/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla" }, "name": { "fi": "Kannelmäen Itsenäisyyspäiväjuhla", "sv": "Kannelmäen Itsenäisyyspäiväjuhla", "en": "Kannelmäen Itsenäisyyspäiväjuhla" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa juhlistamaan itsenäisyyspäivää Sitratorille!" }, "description": { "fi": "<p>Tervetuloa juhlistamaan itsenäisyyspäivää Sitratorille!</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68611/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69591", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:41.741002Z", "last_modified_time": "2026-07-07T13:14:41.741021Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791516.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:41.633497Z", "last_modified_time": "2026-07-07T13:14:41.884123Z", "date_published": null, "start_time": "2026-11-30T16:00:00Z", "end_time": "2026-11-30T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D6F50B5C18A92B996AC4BEAB9FCBAAF4/Malmitalon_teehuone", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D6F50B5C18A92B996AC4BEAB9FCBAAF4/Malmitalon_teehuone", "en": "http://www.malmitalo.fi/en/events/event/D6F50B5C18A92B996AC4BEAB9FCBAAF4/Malmitalon_teehuone" }, "name": { "fi": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "sv": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "en": "Malmitalon teehuone – Malmitalon yhteisömaanantait" }, "location_extra_info": null, "short_description": { "fi": "Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella." }, "description": { "fi": "<p>Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella.</p><p>Teehuone on yhteisöllinen ja kaikille avoin tila hengähtämiseen, rentoutumiseen ja eri kulttuureista oppimiseen. Tarjolla teetä ja pieniä herkkuja. Tapahtuma on osa Malmitalon yhteisömaanantait-sarjaa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69591/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68928", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385538, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:41.318560Z", "last_modified_time": "2026-07-07T13:14:41.318576Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792274.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385538/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:41.163383Z", "last_modified_time": "2026-07-07T13:14:41.502660Z", "date_published": null, "start_time": "2026-11-30T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CEF9B758BC6E70C140823D7094AAE13C/Kirjailijavieraana_Emmi_Itaranta", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CEF9B758BC6E70C140823D7094AAE13C/Kirjailijavieraana_Emmi_Itaranta", "en": "http://www.kanneltalo.fi/en/events/event/CEF9B758BC6E70C140823D7094AAE13C/Kirjailijavieraana_Emmi_Itaranta" }, "name": { "fi": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait", "sv": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait", "en": "Kirjailijavieraana Emmi Itäranta – Maksuttomat maanantait" }, "location_extra_info": null, "short_description": { "fi": "Emmi Itäranta kertoo ja keskustelee teoksestaan Lumenlaulaja. Haastattelijana FM Kati-Annika Ansas. \"En ole koskaan paljastanut syntytarinaani kenellekään. En ennen kuin nyt.\"" }, "description": { "fi": "<p>Emmi Itäranta kertoo ja keskustelee teoksestaan Lumenlaulaja. Haastattelijana FM Kati-Annika Ansas. \"En ole koskaan paljastanut syntytarinaani kenellekään. En ennen kuin nyt.\"</p><p><i>Lumenlaulaja</i> (Teos 2025) on Emmi Itärannan uusin teos, jossa Louhen lumoava syntytarina vie meidät myyttiseen menneisyyteen, taikavoimien ja muodonmuutosten maailmaan. Vallitsee sopusointu ja kunnioitus ihmisen, luonnon ja eläinten välillä. Kunnes idylli rikkoutuu, ja elämään astuvat vallanhimo, kostonhalu ja ahneus.</p><p>Lauha elää lapsuuttaan Pohjolassa, jossa hallitsevat vahvat naiset, jokaisella heistä oma loitsuhahmonsa, eläinmuotonsa. Lauhan ollessa yhdeksänvuotias Pohjolaan hyökkää vieras heimo, joka surmaa suurimman osan hänen perheestään, ja Lauha pakenee äitinsä ja kahden pikkusisarensa kanssa. Kovien kokemusten jälkeen hän päätyy turvaan naistenyhteisöön, Metsänpeittoon, jossa elää hiljaiseloa vuosien ajan.</p><p>Traagisen tapahtuman jälkeen hän päättää kostaa Pohjolan valloittajille, ottaa kotinsa takaisin. Pohjolan puolustaminen ja oman perheen pitäminen turvassa muovaavat Lauhasta Louhen, naisen, jota moni pelkää. Pakomatkan kivuliaat muistot ajavat Louhea kohti valintoja, joilla on kohtalokkaita seurauksia koko Pohjolan väelle ja Louhelle itselleen.</p><p><b>Emmi Itäranta</b> on Tampereella asuva palkittu ja rakastettu spekulatiivisen fiktion kirjoittaja, jonka esikoisteos <i>Teemestarin kirja</i> (2012) on jo klassikko. <i>Teemestarin kirjasta</i> on tehty elokuva ja se on käännetty yli 20 kielelle. Itärannan suomenkielisen tekstin rinnalla kirjoittama englanninkielinen versio <i>Memory of Water</i> julkaistiin Yhdysvalloissa ja Isossa-Britanniassa vuonna 2014, ja se on saanut lukuisia englanninkielisen scifi- ja fantasiakirjallisuuden palkintoehdokkuuksia sekä The James Tiptree Jr. Award -raadin kunniamaininnan.</p><p>Itärannan toinen romaani <i>Kudottujen kujien kaupunki</i> ilmestyi vuonna 2015. Kolmannella kirjallaan <i>Kuunpäivän</i> kirjeet hän voitti arvostetun Tähtivaeltaja-palkinnon vuonna 2021.</p><p>Neljäs romaani <i>Lumenlaulaja</i> on scifi-romaanien jälkeen vahva paluu fantasian maailmaan.</p><p>Kieli: suomi<br>Vapaa pääsy</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p><p>Tapahtuman tuottavat yhteistyössä Kulttuuripalvelut, Helsingin työväenopisto ja Kannelmäen kirjasto.</p>", "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68928/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69269", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385528, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T12:13:56.777395Z", "last_modified_time": "2026-07-07T12:13:56.777410Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793695.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385528/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T12:13:56.714911Z", "last_modified_time": "2026-07-07T13:14:40.005374Z", "date_published": null, "start_time": "2026-11-27T16:30:00Z", "end_time": "2026-11-27T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/ED277A7E6487CD81422E65B9BC64E8D1/Kantele-_ja_aanimaljarentoutus", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/ED277A7E6487CD81422E65B9BC64E8D1/Kantele-_ja_aanimaljarentoutus", "en": "http://www.kanneltalo.fi/en/events/event/ED277A7E6487CD81422E65B9BC64E8D1/Kantele-_ja_aanimaljarentoutus" }, "name": { "fi": "Kantele- ja äänimaljarentoutus", "sv": "Kantele- ja äänimaljarentoutus", "en": "Kantele- ja äänimaljarentoutus" }, "location_extra_info": null, "short_description": { "fi": "Rentoutushetkessä hellitään mieltä ja kehoa kanteleen ja äänimaljojen rauhoittavan lumoavien sointien tunnelmissa." }, "description": { "fi": "<p>Rentoutushetkessä hellitään mieltä ja kehoa kanteleen ja äänimaljojen rauhoittavan lumoavien sointien tunnelmissa.</p><p>Musiikin lisäksi ohjelma sisältää lempeää liikettä sekä ohjattua, meditatiivista läsnäoloharjoittelua. Pysähdy arjen keskellä oman kokemuksesi äärelle, levähdä ja kuulostele. Osallistuminen ei vaadi aiempaa kokemusta.</p><p>Ota mukaasi alusta makoilua varten, lämmintä vaatetta ja halutessasi viltti.</p><p>Ohjaajana toimii <b>Sarah Palu</b> (MuM, Sibelius-Akatemia), suomalaisranskalainen muusikko, säveltäjä, pedagogi ja hyvinvointikurssien ohjaaja. Hänen kiitetty esikoisalbuminsa <i>Ikivirta</i> oli EMMA-ehdokkaana ja sitä on kuunneltu Spotifyssa lähes 1,5 miljoonaa kertaa. Palun elokuvallisista äänimaisemista sekä suomalaisesta kansanmusiikista ammentava musiikki luo polkua tietoisen mielen reunoille.</p><p>Maksuton</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69269/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69283", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385004, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:37.773293Z", "last_modified_time": "2026-06-09T07:13:37.773307Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791498.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385004/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:37.679763Z", "last_modified_time": "2026-07-07T13:14:39.616319Z", "date_published": null, "start_time": "2026-11-26T16:00:00Z", "end_time": "2026-11-26T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D8A888431EBB43F4F45B350DB22E2991/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D8A888431EBB43F4F45B350DB22E2991/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/D8A888431EBB43F4F45B350DB22E2991/Eco-art_Thursday_" }, "name": { "fi": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "location_extra_info": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69283/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69504", "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:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:p1235/?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": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385535, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:39.152722Z", "last_modified_time": "2026-07-07T13:14:39.152737Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795720.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385535/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:39.048335Z", "last_modified_time": "2026-07-07T13:14:39.299936Z", "date_published": null, "start_time": "2026-11-26T16:00:00Z", "end_time": "2026-11-26T17:38:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi", "en": "http://www.malmitalo.fi/en/events/event/0761BC281F0039B7A3E43B18CE07C062/Yleison_suosikit_Sydantalvi" }, "name": { "fi": "Yleisön suosikit: Sydäntalvi", "sv": "Yleisön suosikit: Sydäntalvi", "en": "Yleisön suosikit: Sydäntalvi" }, "location_extra_info": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia." }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Suomen Kolilla kuvattu <i>Sydäntalvi</i> on toimintatrilleri, jonka pääosissa nähdään kaksinkertainen Oscar-voittaja <b>Emma Thompson</b>. Hän esittää leskeksi jäänyttä kalastajaa, joka löytää syrjäiseltä metsämökiltä kidnapatun teinitytön. Lähimpään kaupunkiin on tuntien matka ja puhelinyhteys on poikki – hän ymmärtää olevansa tytön ainoa toivo. Mutta kun lumimyrsky yltyy ja vaarallinen pariskunta lähestyy, alkaa armoton taistelu selviytymisestä.</p><p>Trillerin on ohjannut <b>Brian Kirk</b>, joka tunnetaan muun muassa <i>Game of Thrones</i> -sarjan jaksoista sekä elokuvasta <i>21 Bridges</i>. Muissa rooleissa <b>Marc Menchaca, Judy Greer</b> ja <b>Gaia Wise</b>, joka tunnetaan myös Emma Thompsonin tyttärenä.</p><p>Kesto: 1 t 36 min<br>Kieli: englanti, tekstitetty suomeksi<br>Ikäraja: 16<br>Vapaa pääsy</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69282", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385003, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:36.922255Z", "last_modified_time": "2026-06-09T07:13:36.922270Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791497.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385003/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-09T07:13:36.823545Z", "last_modified_time": "2026-07-07T13:14:36.590567Z", "date_published": null, "start_time": "2026-11-19T16:00:00Z", "end_time": "2026-11-19T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8008467A239AD9F2515EA8325810C845/Ekotaidetorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8008467A239AD9F2515EA8325810C845/Ekokonsttorsdag_", "en": "http://www.malmitalo.fi/en/events/event/8008467A239AD9F2515EA8325810C845/Eco-art_Thursday_" }, "name": { "fi": "Ekotaidetorstai", "sv": "Ekokonsttorsdag", "en": "Eco-art Thursday" }, "location_extra_info": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.", "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.", "en": "In this workshop, we learn how to use eco-friendly materials in visual art." }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>", "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta. <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>", "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in. <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69282/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }