Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=8
{ "meta": { "count": 23126, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=9", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=7" }, "data": [ { "id": "kulke:69437", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:51.924024Z", "last_modified_time": "2026-06-17T08:14:51.924040Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792261.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385217/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:51.797131Z", "last_modified_time": "2026-07-21T06:14:49.975313Z", "date_published": null, "start_time": "2026-10-29T11:00:00Z", "end_time": "2026-10-29T11: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten sätta dig i rörelse!", "en": "Art exercise – let art get you moving!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.", "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.", "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/62F1C35F0C86003A799C697175171AB8/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/62F1C35F0C86003A799C697175171AB8/Konstgympa_lat_konsten_satta_dig_i_rorelse_", "en": "http://www.kanneltalo.fi/en/events/event/62F1C35F0C86003A799C697175171AB8/Art_exercise_let_art_get_you_moving_" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>", "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>", "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69437/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69436", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:50.372446Z", "last_modified_time": "2026-06-17T08:14:50.372461Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792260.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:50.246141Z", "last_modified_time": "2026-07-21T06:14:47.320883Z", "date_published": null, "start_time": "2026-10-22T10:00:00Z", "end_time": "2026-10-22T10: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten sätta dig i rörelse!", "en": "Art exercise – let art get you moving!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.", "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.", "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A4C848139C61C47A7891A6EA43BB1C18/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A4C848139C61C47A7891A6EA43BB1C18/Konstgympa_lat_konsten_satta_dig_i_rorelse_", "en": "http://www.kanneltalo.fi/en/events/event/A4C848139C61C47A7891A6EA43BB1C18/Art_exercise_let_art_get_you_moving_" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>", "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>", "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69436/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69435", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:48.513556Z", "last_modified_time": "2026-06-17T08:14:48.513572Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792259.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:48.406897Z", "last_modified_time": "2026-07-21T06:14:44.113263Z", "date_published": null, "start_time": "2026-10-08T10:00:00Z", "end_time": "2026-10-08T10: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten sätta dig i rörelse!", "en": "Art exercise – let art get you moving!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.", "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.", "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0FFC129C1F426224EB941600D71B6D87/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0FFC129C1F426224EB941600D71B6D87/Konstgympa_lat_konsten_satta_dig_i_rorelse_", "en": "http://www.kanneltalo.fi/en/events/event/0FFC129C1F426224EB941600D71B6D87/Art_exercise_let_art_get_you_moving_" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>", "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>", "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68654", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-01T12:14:07.488415Z", "last_modified_time": "2026-07-01T12:14:07.488440Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791508.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-29T10:13:39.381052Z", "last_modified_time": "2026-07-21T06:14:43.120241Z", "date_published": null, "start_time": "2026-10-05T15:00:00Z", "end_time": "2026-10-05T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yhteisötanssit: Dabkea Yalla Collectiven kanssa – Malmitalon yhteisömaanantait", "sv": "Yhteisötanssit: Dabkea Yalla Collectiven kanssa – Malmitalon yhteisömaanantait", "en": "Yhteisötanssit: Dabkea Yalla Collectiven kanssa – Malmitalon yhteisömaanantait" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kuun ensimmäinen maanantai tanssitaan Malmitalolla!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B78E4859B245D56D9F1E86C9F9C2207A/Yhteisotanssit_Dabkea_Yalla_Collectiven_kanssa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B78E4859B245D56D9F1E86C9F9C2207A/Yhteisotanssit_Dabkea_Yalla_Collectiven_kanssa", "en": "http://www.malmitalo.fi/en/events/event/B78E4859B245D56D9F1E86C9F9C2207A/Yhteisotanssit_Dabkea_Yalla_Collectiven_kanssa" }, "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.</p><p>Tervetuloa tanssimaan! Tapahtuma on osa Malmitalon Yhteisömaanantait-sarjaa.</p><p>Al Huriya Dabken tanssitunnilla osallistujat pääsevät tutustumaan Levantin alueella tuhansia vuosia sitten kehittyneeseen perinteiseen rivitanssiin, joka erityisesti Palestiinassa edustaa juhlan ja yhteisöllisyyden lisäksi vastarintaa ja kulttuurin ylläpitämistä.<br> <br>Yalla Collective on vuonna 2022 perustettu DJ-kokoonpano, joka yhdistää elektronista musiikkia SWANA-alueen ja sen diasporien musiikkiin ja kulttuuriin. SWANA on antikolonialistinen termi, jolla viitataan Luoteis-Aasian ja Pohjois-Afrikan alueeseen (<i>South-West Asia and North Africa</i>).</p><p>Aikataulu:<br>18–19 Al Huriya Dabke: Dabke<br>19–20 Yalla Collective</p><p>Vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68654/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69434", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385214, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:46.977137Z", "last_modified_time": "2026-06-17T08:14:46.977155Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792258.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385214/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:46.860418Z", "last_modified_time": "2026-07-21T06:14:41.452981Z", "date_published": null, "start_time": "2026-10-01T10:00:00Z", "end_time": "2026-10-01T10: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten sätta dig i rörelse!", "en": "Art exercise – let art get you moving!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.", "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.", "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8863B965517FCBBC2E54C1F7A8D4E597/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8863B965517FCBBC2E54C1F7A8D4E597/Konstgympa_lat_konsten_satta_dig_i_rorelse_", "en": "http://www.kanneltalo.fi/en/events/event/8863B965517FCBBC2E54C1F7A8D4E597/Art_exercise_let_art_get_you_moving_" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>", "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>", "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69434/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68623", "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/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/", "sv": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/", "en": "https://www.lippu.fi/event/malmitalo-boppin-pete-the-barnshakers-malmitalo-21603921/" }, "description": null, "price": { "fi": "24,80 € / 17,80 €", "sv": "24,80 € / 17,80 €", "en": "24,80 € / 17,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384965, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T07:14:03.020515Z", "last_modified_time": "2026-06-05T07:14:03.020533Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791290.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384965/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T07:14:02.872299Z", "last_modified_time": "2026-07-21T06:14:41.085603Z", "date_published": null, "start_time": "2026-09-30T16:00:00Z", "end_time": "2026-09-30T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Boppin Pete & The Barnshakers", "sv": "Boppin Pete & The Barnshakers", "en": "Boppin Pete & The Barnshakers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin.", "sv": "Rockveteraner slår sig samman i en sällsynt konsert, där vi får höra Barnshakers mest kända låtar och Petes klassiska inspelningar – och mycket mer därtill.", "en": "Rock veterans are joining forces for a rare concert featuring The Barnshakers’ best-known tracks as well as Pete’s classic recordings – and much more." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers", "sv": "http://www.malmitalo.fi/sv/evenemang/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers", "en": "http://www.malmitalo.fi/en/events/event/272AEE620FC9CACC730E160FD931E49D/Boppin_Pete_The_Barnshakers" }, "description": { "fi": "<p>Rock-konkarit lyöttäytyvät harvinaisessa konsertissa, jossa kuullaan Barnshakersien tunnetuimpia raitoja sekä Peten klassikkolevytyksiä – ja paljon muutakin.</p><p>Boppin' Pete, eli Petri Näsman, on helsinkiläinen pitkän linjan roots-muusikko. Boppin' Pete -nimellä hän nousi yhdeksi suomalaisen 50-luvun rock and roll- ja rockabilly-huuman veturiksi 1980-luvun Näsman teki albumin legendaariselle Rebel-merkille ja esiintyi kulttimaineeseen yltäneessä \"Rokkidiggari\"-elokuvassa.</p><p>The Barnshakers on Suomen kansainvälisesti menestyksekkäin rockabilly-yhtye, jonka yli 30-vuotinen ura on pitänyt sisällään lukuisia kiertueita ympäri maailmaa, yhteistyötä monien artistien kanssa sekä arvostettuja julkaisuja kotimaisella Goofin Recordsilla.</p><p>The Barnshakers:<br>Vesa Haaja - laulu ja kitara<br>Jussi Huhtakangas - kitara<br>Mika Liikari - basso<br>Jani Ahtiainen - rummut<br>Boppin' Pete - laulu ja kitara</p><p>Kesto: 1 h 45 min, sis. 20 min väliajan</p>", "sv": "<p>Rockveteraner slår sig samman i en sällsynt konsert, där vi får höra Barnshakers mest kända låtar och Petes klassiska inspelningar – och mycket mer därtill.</p><p>Boppin’ Pete, alias Petri Näsman, är en rootsmusiker från Helsingfors med lång erfarenhet. Under namnet Boppin’ Pete blev han en av drivkrafterna bakom den finska rock’n’roll- och rockabillyvågen på 1950-talet. På 1980-talet spelade Näsman in ett album för det legendariska skivmärket Rebel och medverkade i kultfilmen Rokkidiggari.</p><p>The Barnshakers är Finlands mest framgångsrika rockabillyband internationellt, vars över 30-åriga karriär har omfattat ett flertal turnéer runt om i världen, samarbeten med många artister och uppskattade utgåvor på det inhemska skivbolaget Goofin Records.</p><p>The Barnshakers: <br>Vesa Haaja – sång och gitarr <br>Jussi Huhtakangas – gitarr <br>Mika Liikari – bas <br>Jani Ahtiainen – trummor <br>Boppin' Pete – sång och gitarr</p>", "en": "<p>Rock veterans are joining forces for a rare concert featuring The Barnshakers’ best-known tracks as well as Pete’s classic recordings – and much more.</p><p>Boppin’ Pete, otherwise known as Petri Näsman, is a veteran roots musician from Helsinki. Under the name Boppin’ Pete, he became one of the driving forces behind the 1950s’ rock and roll and rockabilly craze in Finland. In the 1980s, Näsman recorded an album for the legendary Rebel label and appeared in the cult film Rokkidiggari.</p><p>The Barnshakers are Finland’s most internationally successful rockabilly band, whose career spanning more than 30 years has included numerous tours around the world, collaborations with many artists, and acclaimed releases on the Finnish label Goofin Records.</p><p>The Barnshakers: <br>Vesa Haaja – vocals and guitar <br>Jussi Huhtakangas – guitar <br>Mika Liikari – bass <br>Jani Ahtiainen – drums <br>Boppin’ Pete – vocals and guitar</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68623/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68648", "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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385240, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T06:14:05.747464Z", "last_modified_time": "2026-06-18T06:14:05.747543Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791484.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385240/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T06:14:05.674921Z", "last_modified_time": "2026-07-21T06:14:40.481300Z", "date_published": null, "start_time": "2026-09-28T15:00:00Z", "end_time": "2026-09-28T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Malmitalon teehuone – Malmitalon yhteisömaanantait", "sv": "Tesalong på Malms kulturhus – Gemenskapsmåndagar på Malms kulturhus", "en": "Malmitalo Tea Room – Community Mondays at Malmitalo" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kuun viimeinen maanantai Malmitalon parvi muuttuu teehuoneeksi, jossa pääset tutustumaan eri maiden teekulttuureihin ohjaajan opastuksella.", "sv": "Den sista måndagen i månaden förvandlas Malms kulturhus balkong till en tesalong, där du under ledning av en guide får lära dig mer om olika länders tekulturer.", "en": "On the last Monday of the month, the loft at Malmitalo is transformed into a tea room, where you can learn about the tea cultures of different countries under the guidance of an instructor." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalon_teehuone", "sv": "http://www.malmitalo.fi/sv/evenemang/event/6E96ED90D30286D7F0AB3054B36EFBFA/Tesalong_pa_Malms_kulturhus", "en": "http://www.malmitalo.fi/en/events/event/6E96ED90D30286D7F0AB3054B36EFBFA/Malmitalo_Tea_Room" }, "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.</p><p>Tarjolla teetä ja pieniä herkkuja.</p><p>Tapahtuma on osa Malmitalon yhteisömaanantait-sarjaa.</p><p>Vapaa pääsy! <br>Malmitalon aula</p>", "sv": "<p>Den sista måndagen i månaden förvandlas Malms kulturhus balkong till en tesalong, där du under ledning av en guide får lära dig mer om olika länders tekulturer.</p><p>Tesalongen är en gemenskaplig och för alla öppen plats där man kan ta en paus, koppla av och lära sig om olika kulturer. I oktober får vi lära oss mer om den somaliska tekulturen. Det serveras te och små godsaker. Evenemanget ingår i Malms kulturhus evenemangsserie Gemenskapsmåndagar.</p>", "en": "<p>On the last Monday of the month, the loft at Malmitalo is transformed into a tea room, where you can learn about the tea cultures of different countries under the guidance of an instructor.</p><p>The Tea Room is a communal space open to everyone, where you can take a breather, relax and learn about different cultures. In October, we explore Somali tea culture. Tea and small treats are on the menu. The event is part of Malmitalo’s ‘Community Mondays’ series.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68648/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68939", "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:734/?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:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T07:14:44.157657Z", "last_modified_time": "2026-06-18T07:14:44.157679Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792289.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-18T07:14:44.063981Z", "last_modified_time": "2026-07-21T06:14:39.871388Z", "date_published": null, "start_time": "2026-09-26T07:00:00Z", "end_time": "2026-09-26T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Nezumicon", "sv": "Nezumicon", "en": "Nezumicon" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä.", "sv": "Nezumicon är ett Cosplay-evenemang producerat av unga på Malms kulturhus! Evenemanget innehåller program och aktiviteter med manga- och animetema.", "en": "Nezumicon is a youth-produced cosplay event at Malmitalo. It features a manga and anime-themed programme and activities." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon", "sv": "http://www.malmitalo.fi/sv/evenemang/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon", "en": "http://www.malmitalo.fi/en/events/event/88A4527ADF3A0FB1A4E9AB1871237BB2/Nezumicon" }, "description": { "fi": "<p>Nezumicon on nuorten tuottama Cosplay-tapahtuma Malmitalolla! Tapahtumassa on manga- ja animeaiheista ohjelmaa ja tekemistä.</p><p>Tapahtuma on maksuton ja suunnattu nuorille.</p><p>Tapahtuman tuottamisessa nuoria auttaa Operaatio Pulssi! Pohjoinen, Malmitalo, Malmin kirjasto ja Malmin nuorisotyöyksikkö.</p><p>Vapaa pääsy</p>", "sv": "<p>Nezumicon är ett Cosplay-evenemang producerat av unga på Malms kulturhus! Evenemanget innehåller program och aktiviteter med manga- och animetema.</p><p>Evenemanget är avgiftsfritt och riktar sig till ungdomar. Operaatio Pulssi hjälper ungdomarna med produktionen av evenemanget. Norra, Malms kulturhus, Malms bibliotek och Malms ungdomsarbetsenhet.</p>", "en": "<p>Nezumicon is a youth-produced cosplay event at Malmitalo. It features a manga and anime-themed programme and activities.</p><p>The event is free of charge and aimed at young people. It is realised with production support from the Operaatio Pulssi! (‘Operation Pulse!’) project. North, Malmitalo, Malmi Library and the Malmi Youth Work Unit.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68939/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68618", "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/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/", "sv": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/", "en": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/" }, "description": null, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384964, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T07:14:02.326368Z", "last_modified_time": "2026-06-05T07:14:02.326386Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791278.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384964/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T13:14:43.665474Z", "last_modified_time": "2026-07-21T06:14:39.651265Z", "date_published": null, "start_time": "2026-09-25T16:00:00Z", "end_time": "2026-09-25T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pekko Käppi & K:H:H:L – A la Malmi", "sv": "Pekko Käppi & K:H:H:L – A la Malmi", "en": "Pekko Käppi & K:H:H:L – A la Malmi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko.", "sv": "Pekko Käppi & K:H:H:L är den hetaste och mest högljudda kvartetten inom finsk folkrock just nu.", "en": "Pekko Käppi & K:H:H:L from Tampere is the hottest and loudest four-piece in the Finnish folk rock scene today." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L", "en": "http://www.malmitalo.fi/en/events/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L" }, "description": { "fi": "<p>Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko.</p><p>Yhtye perustettiin jouhikkotaiteilijana ja laulaja-lauluntekijänä tunnetun <b>Pekko Käpin</b> <i>Rammat jumalat</i> levyn ilmestyttyä vuonna 2013. Sittemmin yhtye on tehnyt kuusi kiiteltyä levyä ja kiertänyt planeettaamme ristiin rastiin.</p><p>Pekko Käpin musiikki yhdistää ilmavaa folk -ilmaisua, bluesin juurekkuutta ja psykedeelisvivahteista rockia. Lopputulos on ihastuttavaa kansanmusiikkia, joka on istutettu omaleimaisen nerokkaalla tavalla helposti lähestyttävän populaarimusiikin muottiin.</p><p>Yhtyeen kuudes albumi <i>Oli kerran ryytimaassa...</i> julkaistiin 2025.<br> <br>Yhtye:<br>Pekko Käppi – laulu, jouhikot<br>Tommi Laine – kitara, laulu<br>Nuutti Vapaavuori – basso, laulu<br>Gilbert Kuppusami – rummut, laulu</p><p>Kesto: 1 tunti</p>", "sv": "<p>Pekko Käppi & K:H:H:L är den hetaste och mest högljudda kvartetten inom finsk folkrock just nu.</p><p>Gruppen bildades efter att stråkharpisten samt sångaren och låtskrivaren <b>Pekko Käppis</b> skiva <i>Rammat jumalat</i> kom ut år 2013. Sedan dess har bandet släppt sex hyllade album och turnerat över hela världen. <br> <br>Pekko Käppis musik kombinerar luftiga folkuttryck och rotig blues med psykedelisk rock. Resultatet är förtjusande folkmusik som på ett unikt och genialt sätt har anpassats till den lättillgängliga populärmusikens form.</p><p>Bandets sjätte album <i>Oli kerran ryytimaassa...</i> kom 2025.</p><p>Band: <br>Pekko Käppi – sång, stråkharpa <br>Tommi Laine – gitarr, sång <br>Nuutti Vapaavuori – bas, sång <br>Gilbert Kuppusami – trummor, sång</p>", "en": "<p>Pekko Käppi & K:H:H:L from Tampere is the hottest and loudest four-piece in the Finnish folk rock scene today.</p><p>The band was formed after the release of singer-songwriter <b>Pekko Käppi’s</b> <i>Rammat jumalat</i> album in 2013. Since then, the band has released six critically acclaimed albums and toured the globe far and wide.</p><p>Pekko Käppi’s music combines airy folk, rootsy blues and psychedelically tinged rock. The result is delightful folk music, which has been skilfully woven into the fabric of accessible popular music in a uniquely ingenious way.</p><p>The band's sixth album <i>Oli kerran ryytimaassa...</i> was released in 2025.</p><p>Band: <br>Pekko Käppi – vocals, jouhikko bowed lyre <br>Tommi Laine – guitar, vocals <br>Nuutti Vapaavuori – bass, vocals <br>Gilbert Kuppusami – drums, vocals</p><p>Duration: 1 h</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68618/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69244", "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/kulke:602/?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:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://rockcamp.myclub.fi/flow/courses/10799310", "sv": "https://rockcamp.myclub.fi/flow/courses/10799310", "en": "https://rockcamp.myclub.fi/flow/courses/10799310" }, "description": null, "price": { "fi": "25€", "sv": "25€", "en": "25€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384953, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:54.652582Z", "last_modified_time": "2026-06-04T12:13:54.652597Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793483.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384953/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:54.514947Z", "last_modified_time": "2026-07-21T06:14:39.350283Z", "date_published": null, "start_time": "2026-09-25T14:00:00Z", "end_time": "2026-09-25T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Rock Camp – Musiikkileiri 13–29-v. nuorille", "sv": "Rock Camp – Musikläger för ungdomar i åldern 13–29 år", "en": "Rock Camp – Music camp for young people aged 13–29" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!", "sv": "Är du mellan 13 och 29 år och intresserad av musik? Kom och delta i höstens dagläger Rock Camp på Malms kulturhus i Helsingfors den 25–27 september 2026!", "en": "Are you aged between 13 and 29 and interested in music? Come and join us for the autumn Rock Camp day camp at Malmitalo in Helsinki from 25 to 27 September 2026!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4162B184831D41D1334129262A00F3A3/Rock_Camp", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4162B184831D41D1334129262A00F3A3/Rock_Camp", "en": "http://www.malmitalo.fi/en/events/event/4162B184831D41D1334129262A00F3A3/Rock_Camp" }, "description": { "fi": "<p>Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!</p><p>Leiri järjestetään yhteistyössä Helsingin kaupungin ja Rock Camp Ry:n kanssa. Leirin aikana tapaat uusia kavereita, joita yhdistää sama intohimo musiikkiin, opit uutta ja pääset soittamaan bändissä kokeneiden valmentajien johdolla. Ei väliä, oletko vasta aloittamassa soittamista vai jo kokenut, meidän leirillä kaikki saavat loistaa!</p><p>Osallistumismaksu: 25 €<br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Ilmoittaudu leirille tämän linkin kautta 11.9. mennessä</u></a>. Mukaan mahtuu 20 osallistujaa.</p>", "sv": "<p>Är du mellan 13 och 29 år och intresserad av musik? Kom och delta i höstens dagläger Rock Camp på Malms kulturhus i Helsingfors den 25–27 september 2026!</p><p>Lägret ordnas i samarbete med Helsingfors stad och Rock Camp ry. Under lägret får du träffa nya vänner som delar samma passion för musik, du lär dig nya saker och får spela i ett band under ledning av erfarna instruktörer. Oavsett om du precis har börjat spela eller redan är en erfaren musiker – på vårt läger får alla chansen att glänsa! <br> <br>Deltagaravgift: 25 € <br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Anmäl dig till lägret via den här länken senast den 11 september (sidan är på finska)</u></a>. Det finns plats för 20 deltagare.</p>", "en": "<p>Are you aged between 13 and 29 and interested in music? Come and join us for the autumn Rock Camp day camp at Malmitalo in Helsinki from 25 to 27 September 2026!</p><p>The camp is organised in collaboration with the City of Helsinki and the Rock Camp association. During the camp, you will meet new friends who share your passion for music, learn new things and get to play in a band under the guidance of experienced coaches. Whether you are just starting out or are already an experienced player does not matter – at our camp, everyone gets a chance to shine! <br> <br>Participation fee: €25 <br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Sign up for the camp via this link by 11 September (page in Finnish)</u></a>. The camp has room for 20 participants.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68938", "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/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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385244, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T07:14:43.609072Z", "last_modified_time": "2026-06-18T07:14:43.609155Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792286.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385244/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T07:14:43.513936Z", "last_modified_time": "2026-07-21T06:14:38.586309Z", "date_published": null, "start_time": "2026-09-24T15:00:00Z", "end_time": "2026-09-24T17:04:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Downton Abbey: Viimeinen näytös – Yleisön suosikit", "sv": "Downton Abbey: The Grand Finale – Publikens favoriter", "en": "Downton Abbey: The Grand Finale – Audience Favourites" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.", "sv": "I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.", "en": "Once a month, the Audience Favourites series presents the most popular and frequently requested films of the previous season." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_Viimeinen_naytos", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_The_Grand_Finale", "en": "http://www.malmitalo.fi/en/events/event/4C61566C4942ED034C8142E128F5A25C/Downton_Abbey_The_Grand_Finale" }, "description": { "fi": "<p>Yleisön suosikit -elokuvasarjassa esitetään kerran kuussa edelliskauden suosituimpia ja toivotuimpia elokuvia.</p><p>Rakastetun brittidraaman paluu elokuvateattereihin, seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Kesto: 2h 4 min<br>Ikäraja: sallittu<br>Tekstitys: suomi<br>Vapaa pääsy!</p>", "sv": "<p>I filmserien Publikens favoriter visas en gång i månaden förra säsongens populäraste och mest önskade filmer.</p><p>Den älskade brittiska dramaserien återvänder till biograferna – följ familjen Crawley och deras tjänstefolk under övergången till 1930-talet. När de älskade karaktärerna försöker leda herrgården Downtown Abbey in i framtiden måste de acceptera förändringens vindar och inleda en ny era.</p><p>Längd: 2 h 4 min. <br>Åldersgräns: barntillåten <br>Textning: finska <br>Fritt inträde!</p>", "en": "<p>Once a month, the Audience Favourites series presents the most popular and frequently requested films of the previous season.</p><p>The return of the much-loved British drama to cinemas: follow the Crawley family and their household staff as they navigate the turn of the decade into the 1930s. As the much-loved characters attempt to steer Downton Abbey into the future, they must embrace the winds of change and usher in a new era.</p><p>Duration: 2 h 4 min <br>Age rating: all ages <br>Subtitles: Finnish <br>Free entry!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68938/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69433", "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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:44.995797Z", "last_modified_time": "2026-06-17T08:14:44.995813Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792257.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:44.890317Z", "last_modified_time": "2026-07-21T06:14:38.281329Z", "date_published": null, "start_time": "2026-09-24T10:00:00Z", "end_time": "2026-09-24T10: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten sätta dig i rörelse!", "en": "Art exercise – let art get you moving!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.", "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.", "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Konstgympa_lat_konsten_satta_dig_i_rorelse_", "en": "http://www.kanneltalo.fi/en/events/event/F4B7DE6A2C4AB498E9E4EE030A321DA1/Art_exercise_let_art_get_you_moving_" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>", "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>", "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68617", "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/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/4141439", "sv": "https://www.lippu.fi/eventseries/4141439", "en": "https://www.lippu.fi/eventseries/4141439" }, "description": null, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385250, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:13:43.231221Z", "last_modified_time": "2026-06-18T09:13:43.231234Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791271.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385250/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T09:13:43.076093Z", "last_modified_time": "2026-07-21T06:14:37.991617Z", "date_published": null, "start_time": "2026-09-23T16:00:00Z", "end_time": "2026-09-23T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kat Baloun | Unna & Helge Tallqvist Band", "sv": "Kat Baloun | Unna & Helge Tallqvist Band", "en": "Kat Baloun | Unna & Helge Tallqvist Band" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kaksi valovoimaista bluessolistia astuvat Malmitalon lavalle: yhdysvaltalainen Kat Baloun sekä Unna Kortehisto yhtyeensä Unna & Helge Tallqvist Band kanssa.", "sv": "Två karismatiska bluessolister kliver upp på scenen på Malms kulturhus: amerikanen Kat Baloun samt Unna Kortehisto tillsammans med sitt band, Unna & Helge Tallqvist Band.", "en": "Two charismatic blues soloists take to the stage at Malmitalo: Kat Baloun from the US, and Unna Kortehisto with her band, the Unna & Helge Tallqvist Band." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band", "sv": "http://www.malmitalo.fi/sv/evenemang/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band", "en": "http://www.malmitalo.fi/en/events/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band" }, "description": { "fi": "<p>Kaksi valovoimaista bluessolistia astuvat Malmitalon lavalle: yhdysvaltalainen Kat Baloun sekä Unna Kortehisto yhtyeensä Unna & Helge Tallqvist Band kanssa.</p><p>Teksasin El Pasossa syntynyt ja Ohion Cincinnatissa nuoruutensa viettänyt, mutta nykyään Berliinissä asuva <b>Kat Baloun</b> on blueslaulaja ja -huuliharpisti. Hän aloitti ammattilaisuransa 90-luvun alkupuolella San Franciscossa, missä nuoren Katin lauluääni, lavashow ja tyrmäkkä bluesharppu herättivät bluesyleisöjen huomion hänen esiintyessään paikallislegenda Elmer Lee Thomasin yhtyeessä.</p><p>Kat muutti vuonna 1994 Berliinin, ja on siitä lähtien keikkaillut Euroopassa. Hän on levyttänyt mm. Nina ja Eb Davisin sekä Chris Rannenbergin kanssa. Vuonna 2013 hän teki levyn suomalaisen Tomi Leino Trion kanssa.<br>Kat esiintyy Suomessa <b>The Frostbites</b> -yhtyeen – <b>Jonne Kulluvaara (kitara), <b>Jaska Prepula (basso) ja <b>Micha Maass (rummut) – kanssa. Katin viimeisin levyjulkaisu onkin nimenomaan The Frostbitesin kanssa äänitetty livealbumi vuodelta 2024.</p><p><b>Unna & Helge Tallqvist Band</b> -kokoonpanossa yhdistyvät nuori ennakkoluulottomuus ja energisyys sekä vuosikymmenien aikana hioutunut svengi. Solisti <b>Unna Kortehisto</b> on voimakasääninen ja sielukas bluesin, rhythm & bluesin ja soulin tulkitsija. Hänen lauluaan kuullaan myös mm. Saimaa-yhtyeen riveissä.<br>Helge Tallqvist Bandin muut jäsenet edustavat kotimaan roots-genren kokenutta kaartia. Kansainvälisilläkin blues -areenoilla meritoituneeseen kokoonpanoon kuuluvat <b>Helge Tallqvist</b> (huuliharppu), <b>Jonne Kulluvaara</b> (kitara), <b>Jaska Prepula</b> (basso) sekä <b>Tyko Haapala</b> (rummut).</p><p>Kesto: 2 t, sis. 20 min väliajan<br>Avustaja samalla lipulla pyörätuoliasiakkaan saattajana.</p>", "sv": "<p>Två karismatiska bluessolister kliver upp på scenen på Malms kulturhus: amerikanen Kat Baloun samt Unna Kortehisto tillsammans med sitt band, Unna & Helge Tallqvist Band.</p><p><b>Kat Baloun</b>, som är född i El Paso i Texas och tillbringade sin ungdom i Cincinnati i Ohio men numera bor i Berlin, är bluessångare och munspelare. Hon inledde sin professionella karriär i början av 90-talet i San Francisco, där den unga Kats sångröst, scenframträdande och kraftfulla bluesmunspel väckte bluespublikens uppmärksamhet när hon uppträdde i den lokala legenden Elmer Lee Thomas band. <br> <br>Kat flyttade till Berlin 1994 och har sedan dess uppträtt runt om i Europa. Hon har spelat in skivor med bland andra Nina och Eb Davis samt Chris Rannenberg. År 2013 spelade hon in en skiva tillsammans med den finska ensemblen Tomi Leino Trio.</p><p>Kat uppträder i Finland tillsammans med bandet <b>The Frostbites</b> – <b>Jonne Kulluvaara (gitarr), <b>Jaska Prepula (bas) och <b>Micha Maass (trummor). Kats senaste skivsläpp är just det livealbum från 2024 som spelades in tillsammans med The Frostbites.</p><p>I gruppen <b>Unna & Helge Tallqvist Band</b> förenas ungdomlig fördomsfrihet och energi med ett gung som slipats fram under årtionden. Solisten <b>Unna Kortehisto</b> är en sångare med kraftfull röst och stor själ som tolkar blues, rhythm & blues och soul. Hennes sång hörs bland annat också i bandet Saimaa.</p><p>De övriga medlemmarna i Helge Tallqvist Band tillhör det erfarna gardet inom den inhemska rootsgenren. Ensemblen, som har gjort sig ett namn även på den internationella bluesscenen, består av <b>Helge Tallqvist</b> (munspel), <b>Jonne Kulluvaara</b> (gitarr), <b>Jaska Prepula</b> (bas) och <b>Tyko Haapala</b> (trummor).</p><p>Längd: 2 h, inklusive 20 minuters paus</p><p>En assistent till en rullstolsanvändare kommer in på samma biljett som ledsagare.</p>", "en": "<p>Two charismatic blues soloists take to the stage at Malmitalo: Kat Baloun from the US, and Unna Kortehisto with her band, the Unna & Helge Tallqvist Band.</p><p>Blues singer and harmonica player <b>Kat Baloun</b> was born in El Paso, Texas, spent her youth in Cincinnati, Ohio, and now lives in Berlin. She began her professional career in the early 1990s in San Francisco, where young Kat’s singing voice, stage presence and powerful harmonica playing caught the attention of blues audiences when she was performing with the band of local legend Elmer Lee Thomas. <br> <br>Kat moved to Berlin in 1994 and has been performing across Europe ever since. She has recorded with artists such as Nina and Eb Davis, as well as Chris Rannenberg. In 2013, she recorded an album with the Finnish Tomi Leino Trio.</p><p>Kat is performing in Finland with the band <b>The Frostbites</b> – <b>Jonne Kulluvaara (guitar), <b>Jaska Prepula (bass) and <b>Micha Maass (drums). In fact, Kat’s most recent album release is a live album recorded with The Frostbites in 2024.</p><p><b>Unna & Helge Tallqvist Band</b> combines youthful open-mindedness and energy with a swing that has been honed over decades. Soloist <b>Unna Kortehisto</b> is a soulful performer of blues, rhythm & blues and soul with a powerful voice. Her singing can also be heard in ensembles such as the Saimaa band.</p><p>The other members of the Helge Tallqvist Band are seasoned veterans of the Finnish roots music scene. The line-up, which has made a name for itself on the international blues scene, includes <b>Helge Tallqvist</b> (harmonica), <b>Jonne Kulluvaara</b> (guitar), <b>Jaska Prepula</b> (bass) and <b>Tyko Haapala</b> (drums).</p><p>Duration: 2 h, incl. 20-min intermission</p><p>The assistant of a customer in a wheelchair is admitted with the same ticket.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68617/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68616", "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/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/", "sv": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/", "en": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/" }, "description": null, "price": { "fi": "28,90 / 11,10 €", "sv": "28,90 / 11,10 €", "en": "28,90 / 11,10 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384954, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T13:14:42.691232Z", "last_modified_time": "2026-06-04T13:14:42.691248Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791268.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384954/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T13:14:42.447342Z", "last_modified_time": "2026-07-21T06:14:35.952590Z", "date_published": null, "start_time": "2026-09-18T16:00:00Z", "end_time": "2026-09-18T17:10:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sointi Jazz Orchestra: Agatha", "sv": "Sointi Jazz Orchestra: Agatha", "en": "Sointi Jazz Orchestra: Agatha" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!", "sv": "Sointi Jazz Orchestra framför Kerkko Koskinens verk Agatha i sin ursprungliga omfattning!", "en": "The Sointi Jazz Orchestra performs Kerkko Koskinen’s Agatha in its original length!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha", "sv": "http://www.malmitalo.fi/sv/evenemang/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha", "en": "http://www.malmitalo.fi/en/events/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha" }, "description": { "fi": "<p>Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!</p><p>Ultra Bran musiikillisena moottorina tunnetun <b>Kerkko Koskisen</b> ensimmäinen laaja instrumentaaliteos <i>Agatha</i> sai ensiesityksensä lähes 20 vuotta sitten. Jazzia ja klassista musiikkia ennakkoluulottomasti yhdistelevä elokuvallinen kokonaisuus kuullaan nyt monipuolisista esityksistään tunnetun Sointi Jazz Orchestran tulkitsemana. Jazzorkesteria täydentävät käyrätorvet ja perkussiot, jotka tuovat teokseen lisää syvyyttä ja väriä.</p><p>Koskisen musiikin ytimessä ovat kertomuksellisuus ja vahva melodinen ilmaisu. Hänen sävellyksensä ammentavat usein inspiraationsa runoudesta ja muista musiikin ulkopuolisista lähteistä. Tämä kuuluu myös Agatha-kokonaisuudessa, joka on saanut innoituksensa Koskista pitkään kiinnostaneesta Agatha Christien tuotannosta. Teoksessa yhdistyvät laulavat, toisiinsa punoutuvat melodiat ja hallittu harmoninen kaari. Lopputuloksena on musiikillinen maailma, joka luo voimakkaita, elokuvamaisia mielikuvia ja tunnelmia.</p><p>Sointi Jazz Orchestra on yksi Suomen kiinnostavimmista jazzorkestereista. Orkesteri tunnetaan tarkkaan kuratoiduista konserttikokonaisuuksistaan ja rohkeasta suhtautumisestaan uuteen musiikkiin. Orkesteri on toteuttanut lukuisia kantaesityksiä kotimaisin ja kansainvälisin solistein.</p><p>Kesto: 1 t 10 min</p>", "sv": "<p>Sointi Jazz Orchestra framför Kerkko Koskinens verk Agatha i sin ursprungliga omfattning!</p><p><b>Kerkko Koskinen</b>, känd som den musikaliska drivkraften bakom Ultra Bra, hade urpremiär för sitt första omfattande instrumentala verk <i>Agatha</i> för nästan 20 år sedan. Det filmiska verket kombinerar på ett fördomsfritt sätt jazz och klassisk musik och framförs nu av Sointi Jazz Orchestra, som är känd för sina mångsidiga framträdanden. Jazzorkestern kompletteras av valthorn och slagverk, som ger verket ytterligare djup och färg.</p><p>Kärnan i Koskinens musik är den berättande karaktären och det starka melodiska uttrycket. Hans kompositioner hämtar ofta inspiration från poesi och andra källor utanför musikens värld. Detta gäller också Agatha-helheten, som Agatha Christies författarskap, som Koski länge har varit intresserad av, gett inspiration till. Verket förenar sjungande, sammanflätade melodier och en välkontrollerad harmonisk utveckling. Resultatet är en musikalisk värld som skapar starka, filmiska bilder och stämningar.</p><p>Sointi Jazz Orchestra är en av Finlands intressantaste jazzorkestrar. Orkestern är känd för sina noggrant sammanställda konsertprogram och sin djärva inställning till ny musik. Orkestern har genomfört ett stort antal uruppföranden med både inhemska och internationella solister.</p><p>Längd: 1 h 10 min.</p>", "en": "<p>The Sointi Jazz Orchestra performs Kerkko Koskinen’s Agatha in its original length!</p><p>Known as the musical driving force behind Ultra Bra, <b>Kerkko Koskinen</b> premiered his first major instrumental work, <i>Agatha</i>, almost 20 years ago. This cinematic work, which blends jazz and classical music in an open-minded way, is now performed by Sointi Jazz Orchestra, renowned for its varied repertoire. The jazz orchestra is complemented by French horns and percussion, adding further depth and colour to the piece.</p><p>At the heart of Koskinen’s music lie narrative elements and strong melodic expression. His compositions often draw inspiration from poetry and other sources outside the realm of music. This is also evident in Agatha, which draws its inspiration from the works of Agatha Christie, as they have long fascinated Koskinen. The work combines singing, intertwining melodies and a carefully crafted harmonic progression. The end result is a musical world that evokes powerful, cinematic images and atmospheres.</p><p>Sointi Jazz Orchestra is one of Finland’s most interesting jazz orchestras. The orchestra is known for its carefully curated concert programmes and its bold approach to new music. The orchestra has staged numerous premieres featuring Finnish and international soloists.</p><p>Duration: 1 h 10 min</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68616/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68376", "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:41/?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: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:755/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-21466372", "sv": "https://www.lippu.fi/event/name-21466372", "en": "https://www.lippu.fi/event/name-21466372" }, "description": null, "price": { "fi": "24 / 19 €", "sv": "24 / 19 €", "en": "24 / 19 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T07:14:20.701095Z", "last_modified_time": "2026-06-17T07:14:20.701110Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787852.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T07:14:20.600388Z", "last_modified_time": "2026-07-21T06:14:35.642621Z", "date_published": null, "start_time": "2026-09-18T15:00:00Z", "end_time": "2026-09-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Uskomaton taikashow", "sv": "En otrolig magishow", "en": "The Incredible Magic Show" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa.", "sv": "Den otroliga magishowen, som riktar sig till hela familjen, är en fortsättning på samarbetet mellan trollkarlen Aatu Itkonen och mentalisten Jari Hynynen inom magins värld.", "en": "Uskomaton taikashow (‘The Incredible Magic Show’), aimed at the whole family, is the latest product of the collaboration between magician Aatu Itkonen and mentalist Jari Hynynen." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4D7FA33FBBBD2D8363FC11937F481462/Uskomaton_taikashow", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4D7FA33FBBBD2D8363FC11937F481462/En_otrolig_magishow", "en": "http://www.kanneltalo.fi/en/events/event/4D7FA33FBBBD2D8363FC11937F481462/The_Incredible_Magic_Show" }, "description": { "fi": "<p>Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa.</p><p>Kaksikon reilu tunnin mittainen show on sekoitus taikuutta, mentalismia, illuusioita ja hulvattoman hauskaa komiikkaa.</p><p>Esitykseen on tuotu runsaasti show-elementtejä ja se on hiottu yhteen musiikin, sekä valojen kanssa. Nuoresta iästään huolimatta esiintyjäkaksikko on viihdyttänyt yleisöjä jo monien vuosien ajan aina lukemattomista tapahtumista televisioon asti. Tervetuloa mukaan taikuuden maailmaan.</p><p>Kesto 1 h<br>Kieli: suomi</p>", "sv": "<p>Den otroliga magishowen, som riktar sig till hela familjen, är en fortsättning på samarbetet mellan trollkarlen Aatu Itkonen och mentalisten Jari Hynynen inom magins värld.</p><p>Duons drygt en timme långa show är en blandning av magi, mentalism, illusioner och hejdlöst rolig komik.</p><p>Föreställningen innehåller många showinslag och har finslipats så att den harmonierar med musiken och ljussättningen. Trots sin unga ålder har duon underhållit publiken i många år redan, från otaliga evenemang till tv. Välkommen till magins värld. <br> <br>Längd: 1 h</p><p>Språk: finska</p>", "en": "<p>Uskomaton taikashow (‘The Incredible Magic Show’), aimed at the whole family, is the latest product of the collaboration between magician Aatu Itkonen and mentalist Jari Hynynen.</p><p>Clocking in at just over an hour, the duo’s show is a mix of magic, mentalism, illusions and side-splitting comedy. The performance features a wealth of theatrical elements and has been seamlessly integrated with the music and lighting. Despite their young age, the duo have been entertaining audiences for many years now, from countless events right to television appearances. Join us in the world of magic! <br> <br>Duration: 1 h</p><p>Language: Finnish</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68376/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68652", "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: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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385249, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T08:13:40.924006Z", "last_modified_time": "2026-06-18T08:13:40.924021Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791505.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385249/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T08:13:40.801428Z", "last_modified_time": "2026-07-21T06:14:35.384481Z", "date_published": null, "start_time": "2026-09-18T14:00:00Z", "end_time": "2026-09-18T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Africa Day", "sv": "Africa Day", "en": "Africa Day" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Malmitalolla ensimmäistä kertaa järjestettävä Africa Day esittelee musiikin, ruoan ja tanssin kautta senegalilaista, kenialaista ja kamerunilaista kulttuuria.", "sv": "Africa Day, som arrangeras för första gången på Malms kulturhus, presenterar den senegalesiska, kenyanska och kamerunska kulturen genom musik, mat och dans.", "en": "Held at Malmitalo for the first time, Africa Day showcases Senegalese, Kenyan and Cameroonian culture through music, food and dance." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0D1D102D65B5D3769F3F5BF85C88A15C/Africa_Day", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0D1D102D65B5D3769F3F5BF85C88A15C/Africa_Day", "en": "http://www.malmitalo.fi/en/events/event/0D1D102D65B5D3769F3F5BF85C88A15C/Africa_Day" }, "description": { "fi": "<p>Malmitalolla ensimmäistä kertaa järjestettävä Africa Day esittelee musiikin, ruoan ja tanssin kautta senegalilaista, kenialaista ja kamerunilaista kulttuuria.</p><p>Tule juhlistamaan afrikkalaista kulttuuria! Päivän aikana osallistujat pääsevät nauttimaan Tossy Mboup & Gaal-Guin sekä Es-Ow'n ja The Ridial Bandin afropopista, kokeilemaan tanssia ja rummutusta yhdistävää sabaria sekä tuomaroimaan kokkikilpailua, jossa eri maiden ruokakulttuurit ottavat mittaa toisistaan.</p><p><b>Tossy Mboup & Gaal Gui</b> on kahdeksanhenkinen afroyhtye. Vuodesta 2013 Suomessa asuneen senegalilaisen laulaja-perkussionisti Tossy Mboupin johtama bändi yhdistelee musiikissaan lukuisia tyylejä afro-popista funkin ja salsan kautta mbalaxiin. Tossy Mboup julkaisi debyyttialbuminsa <i>Aduna</i> vuonna 2020.</p><p>Senegalilainen afropop-artisti <b>Es-Ow</b> perusti <b>The Ridial Band</b> -yhtyeen muutettuaan Suomeen vuonna 2012. Es-Ow'n musiikki on energinen sekoitus afrojuurista ammentavia monenkirjavia rytmejä, ääniä ja melodioita. Es-Ow ja The Ridial Band ovat esiintyneet Suomessa lukuisissa eri musiikkitapahtumissa, joista mainittakoon esimerkiksi World Village, Funky Elefant ja Afro Jazz -festivaalit.</p><p>Lähde matkalle Senegaliin <b>Malick Ndiayen</b> johdolla! <b>Sabar</b> ei ole vain tanssia, vaan kokonaisvaltainen perinne, jossa liike ja musiikki ovat erottamattomia. Se on tunnettu hienostuneesta rytmiikastaan, suurista ja sähäköistä liikkeistään sekä ilmeikkäästä tarinankerronnasta. Tunnilla opitaan Sabarin perusaskelia ja tutustutaan sen rikkaaseen rytmimaailmaan Malickin asiantuntevassa opastuksessa. Tule kokemaan, miten perinne muuttuu moderniksi energiaksi!</p><p><b>Aikataulu:</b><br>17–18: Tossy Mboup & Gaal-Gui<br>18–19: Kokkikisa! Ruokien maistelua ja voittajan valinta parvella<br>19–20: Sabarin opetusta aulassa Malick Ndiayen johdolla<br>20–21: Es-Ow ja The Ridial Band</p>", "sv": "<p>Africa Day, som arrangeras för första gången på Malms kulturhus, presenterar den senegalesiska, kenyanska och kamerunska kulturen genom musik, mat och dans.</p><p>Kom för att fira den afrikanska kulturen! Under dagen får deltagarna njuta av afropop av Tossy Mboup & Gaal-Gui samt Es-Ow och The Ridial Band, prova på sabari, en dansform som kombinerar dans och trummor, samt agera domare i en kocktävling, där olika länders matkulturer mäter sig mot varandra.</p><p><b>Tossy Mboup & Gaal Gui</b> är ett åtta man starkt afroband. Bandet leds av den senegalesiska sångaren och perkussionisten Tossy Mboup, som bott i Finland sedan 2013, och kombinerar många stilar i sin musik med allt från afropop och funk till salsa och mbalax. Tossy Mboup släppte sitt debutalbum <i>Aduna</i> 2020.</p><p>Den senegalesiska afropopartisten <b>Es-Ow</b> grundade bandet <b>The Ridial Band</b> efter att ha flyttat till Finland 2012. Es-Ows musik är en energisk blandning av mångfacetterade rytmer, ljud och melodier med rötterna i afrikansk musik. Es-Ow och The Ridial Band har uppträtt vid ett flertal olika musikevenemang i Finland, bland annat på festivalerna World Village, Funky Elefant och Afro Jazz.</p><p>Ge dig ut på en resa till Senegal under ledning av <b>Malick Ndiaye</b>! <b>Sabar</b> är inte bara en dans, utan en övergripande tradition där rörelse och musik är oskiljaktiga. Den är känd för sin raffinerade rytmik, sina stora och livliga rörelser samt sitt uttrycksfulla berättande. Under lektionen lär vi oss grundstegen i sabar och bekantar oss med dess rika rytmvärld under Malicks sakkunniga ledning. Kom för att uppleva hur tradition förvandlas till modern energi!</p><p><b>Tidsplan:</b> <br>17–18: Tossy Mboup & Gaal Gui <br>18–19: Kocktävling! Matprovning och utnämning av en vinnare på balkongen <br>19–20: Lektion i sabar i entréhallen under ledning av Malick Ndiaye <br>20–21: Es-Ow och The Ridial Band</p>", "en": "<p>Held at Malmitalo for the first time, Africa Day showcases Senegalese, Kenyan and Cameroonian culture through music, food and dance.</p><p>Come and celebrate African culture! During the day, participants get to enjoy the Afro-pop of Tossy Mboup & Gaal-Gui, as well as Es-Ow and The Ridial Band, try their hand at sabari – a fusion of dance and drumming – and judge a cooking competition in which the culinary traditions of different countries go head to head.</p><p><b>Tossy Mboup & Gaal Gui</b> is an eight-piece Afro group. The band, led by Senegalese singer-percussionist Tossy Mboup, who has lived in Finland since 2013, combines numerous styles ranging from Afro-pop to funk, salsa and mbalax in its music. Tossy Mboup released his debut album <i>Aduna</i> in 2020.</p><p>Senegalese Afro-pop artist <b>Es-Ow</b> founded <b>The Ridial Band</b> after moving to Finland in 2012. Es-Ow’s music is an energetic blend of diverse rhythms, sounds and melodies drawing on African roots. Es-Ow and The Ridial Band have performed at numerous music events in Finland, such as the World Village, Funky Elefant and Afro Jazz festivals.</p><p>Set off on a journey to Senegal led by <b>Malick Ndiaye</b>! <b>Sabar</b> is not just a dance, but an entire tradition in which movement and music are inseparable. It is known for its sophisticated rhythms, its large and lively movements, and its expressive storytelling. In this lesson, we learn the basic steps of Sabar and delve into its rich world of rhythms under Malick’s expert guidance. Come and see how tradition is transformed into modern energy!</p><p><b>Schedule:</b> <br>17.00–18.00: Tossy Mboup & Gaal-Gui <br>18.00–19.00: Cooking competition! Tasting the dishes and choosing the winner in the gallery <br>19.00–20.00: Sabar lesson in the hall, led by Malick Ndiaye <br>20.00–21.00: Es-Ow and The Ridial Band</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68652/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68615", "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/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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/malmijazz/", "sv": "https://www.lippu.fi/artist/malmijazz/", "en": "https://www.lippu.fi/artist/malmijazz/" }, "description": null, "price": { "fi": "20€/15€", "sv": "20€/15€", "en": "20€/15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:53.618170Z", "last_modified_time": "2026-06-04T12:13:53.618185Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791266.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:53.501079Z", "last_modified_time": "2026-07-21T06:14:34.834458Z", "date_published": null, "start_time": "2026-09-17T16:00:00Z", "end_time": "2026-09-17T17:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Riitta Paakki Quartet – MalmiJazz", "sv": "Riitta Paakki Quartet – MalmiJazz", "en": "Riitta Paakki Quartet – MalmiJazz" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Omaperäisiä ja raikkaita sävellyksiä ja jazzin alkulähteiltä kumpuavaa svengiä.", "sv": "Originella och fräscha kompositioner samt svängar med rötterna i jazzens urkälla.", "en": "Distinctive and fresh compositions, and a swing that draws on the very roots of jazz." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet", "en": "http://www.malmitalo.fi/en/events/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet" }, "description": { "fi": "<p>Omaperäisiä ja raikkaita sävellyksiä ja jazzin alkulähteiltä kumpuavaa svengiä.</p><p>Riitta Paakki Quartet on vuonna 2013 perustettu alansa ansioituneimpiin lukeutuvan pianisti <b>Riitta Paakin</b> säveltämää musiikkia soittava yhtye. Kvartetin ilmaisussa kohtaavat malmilaisen Paakin selkeä soittotyyli, <b>Manuel Dunkelin</b> voimakas ja vivahteikas soundi sekä <b>Antti Lötjösen</b> ja <b>Joonas Riipan</b> muodostama poreileva rytmisektio. Yhteissoitossa hehkuu musiikin ilo, joka välittyy myös kuulijoiden sydämiin. Paakin vauhdikkaammat sävellykset soivat arvonsa tuntevasti vuosikymmenten takaista bebopia, rauhallisemmat maalailevat perisuomalaisia melankolisia maisemia. Musiikki huokuu kypsää näkemystä ja valoisaa asennetta.</p><p>Yhtyeen ensimmäinen levy on liveäänitys, <i>Live at Koko Jazz Club</i> (2018). Vuonna 2020 julkaistu <i>Piste</i> oli Emma-palkintoehdokas vuoden jazz-albumiksi. <i>Väri</i> vuodelta 2023 sai myös hyvän vastaanoton.</p><p>Yhtye valmistelee parhaillaan uutta julkaisua ja keikalla kuullaan myös uutta materiaalia!</p><p>Manuel Dunkel – saksofoni<br>Riitta Paakki – piano<br>Antti Lötjönen – basso<br>Joonas Riippa – rummut</p><p>Kesto: 1 t 15 min</p>", "sv": "<p>Originella och fräscha kompositioner samt svängar med rötterna i jazzens urkälla.</p><p>Riitta Paakki Quartet är en ensemble som bildades 2013 och som framför musik komponerad av pianisten <b>Riitta Paakki</b>, en av de mest framstående inom sitt område. I kvartettens musik möts den från Malm härstammande Paakkis tydliga spelstil, <b>Manuel Dunkels</b> kraftfulla och nyansrika sound samt <b>Antti Lötjönens</b> och <b>Joonas Riippas</b> livliga rytmsektion. Samspelet förmedlar en musikglädje som också når fram till lyssnarens hjärta. Paakkis mer tempofyllda kompositioner återger värdigt bebopen från flera decennier sedan, medan de lugnare styckena målar upp typiskt finska, melankoliska landskap. Musiken utstrålar ett moget synsätt och en positiv inställning.</p><p>Bandets första skiva är en liveinspelning, <i>Live at Koko Jazz Club</i> (2018). <i>Piste</i>, som släpptes 2020, var nominerad till ett Emma-pris i kategorin Årets jazzalbum. <i>Väri</i> från 2023 fick också ett positivt mottagande.</p><p>Bandet arbetar just nu med en ny skiva, och under konserten får vi också höra nytt material!</p><p>Manuel Dunkel – saxofon <br>Riitta Paakki – piano <br>Antti Lötjönen – bas <br>Joonas Riippa – trummor</p><p>Längd: 1 h 15 min.</p>", "en": "<p>Distinctive and fresh compositions, and a swing that draws on the very roots of jazz.</p><p>The Riitta Paakki Quartet, founded in 2013, is an ensemble that performs music composed by <b>Riitta Paakki</b>, a pianist who is among the most distinguished in her field. The quartet’s sound brings together the clear playing style of Paakki from Malmi, <b>Manuel Dunkel’s</b> powerful and nuanced sound, and the effervescent rhythm section formed by <b>Antti Lötjönen</b> and <b>Joonas Riippa</b>. Their playing radiates the joy of music, which is conveyed to the hearts of the audience as well. Paakki’s more up-tempo compositions pay a fitting tribute to the bebop of decades past, while her calmer pieces paint quintessentially Finnish, melancholic landscapes. The music exudes a mature perspective and a positive outlook.</p><p>The band’s first album is a live recording, <i>Live at Koko Jazz Club</i> (2018). <i>Piste</i>, released in 2020, was nominated for an Emma Award for Jazz Album of the Year. <i>Väri</i> from 2023 was also well received.</p><p>The band is currently working on a new release, and the concert features some new material as well!</p><p>Manuel Dunkel – saxophone <br>Riitta Paakki – piano <br>Antti Lötjönen – bass <br>Joonas Riippa – drums</p><p>Duration: 1 h 15 min</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68615/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69243", "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: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: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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/", "sv": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/", "en": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/" }, "description": null, "price": { "fi": "24,80 € / 20 €", "sv": "24,80 € / 20 €", "en": "24,80 € / 20 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384951, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:53.193699Z", "last_modified_time": "2026-06-04T12:13:53.193717Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793566.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384951/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:53.071607Z", "last_modified_time": "2026-07-21T06:14:34.612397Z", "date_published": null, "start_time": "2026-09-17T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tuula ja Pirkko: Meil on aina Toro", "sv": "Tuula och Pirkko: Meil on aina Toro", "en": "Tuula & Pirkko: Meil on aina Toro" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta.", "sv": "Tuula och Pirkko är en viril duo på totalt cirka 170 år från Ala-Vittula.", "en": "Tuula and Pirkko are a pair of red-blooded ladies from Ala-Vittula, with a combined age of around 170 years." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_och_Pirkko_Meil_on_aina_Toro_", "en": "http://www.kanneltalo.fi/en/events/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_Pirkko_Meil_on_aina_Toro_" }, "description": { "fi": "<p>Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta.</p><p>He eivät oikeastaan juuri pidä toisistaan, mutta jostain tuntemattomasta syystä he ovat viettäneet koko elämänsä hyvin tiiviisti yhdessä. Toisin kuin vanhuksista ehkä yleensä luullaan, ikä ei ole jalostanut heitä seesteiseen suuntaan. Päinvastoin. Tuula rakastaa Cindy Crawfordia ja turvavälejä, Pirkko ei anna arvoa lastenlastensa savitöille eikä piirustuksille, eikä hän edelleenkään osaa leipoa. Tuula ja Pirkko on jätetty hankalan luonteensa vuoksi koronakaranteenin rauhaan jo hyvän aikaa sitten, ja siksi heillä on kaikki maailman aika elellä elämäänsä juuri niin kuin he itse lystäävät.</p><p>Erinäisten sattumien jälkeen Tuula ja Pirkko päättävät karistaa pölyt matkalaukuistaan, suunnata maalliset tomumajansa Finavian lippuluukulle, maksaa lentoveronsa kenties viimeisen kerran ja suunnistaa kohti Fuengirolan aurinkoista costaa. Eikä aikaakaan, kun Toron varjossa käydään tähänastisen elämän ehkä tärkeimmät keskustelut. Tällä matkalla saavat kyytiä niin Tuulan ja Pirkon tyttärien luutuneet asenteet äitejään kohtaan, kuin patriarkaattinen machokulttuurikin. Löytyykö Fugen rannalta romanssi, ökyjahti vai Sean Conneryn rintakarva?</p><p>Esitys on kunnianosoitus hömelöydelle, elämänilolle, vapaalle tahdolle, tajunnanvirralle, omaehtoisuudelle, tyhmille jutuille, unelmille, ihmisyydelle, ihmisen lajityypilliselle tarpeelle valloittaa tuntemattomia alueita sekä itsemääräämisoikeuden tärkeydelle.</p><p>Käsikirjoitus, ohjaus ja kaikki roolit: Ria Kataja ja Minna Kivelä<br>Valosuunnittelu: Niina Sivén<br>Äänisuunnitelu: Esko Paavola</p><p>Tuula ja Pirkko nähtiin ensimmäisen kerran Pentti Järvisen käsikirjoittamassa esityksessä Punkkuelämää, johon he saapuivat Rian ja Minnan ideoimina ensi-illan jälkeen. Sen jälkeen Tuula ja Pirkko ovat tehneet myös 9-osaisen komediasarjan ”Kahden markan mummot – todella karmeeta-show”.</p><p>Kesto: noin 2,5 t sis. väliajan.<br>Ikäsuositus 15 v.</p>", "sv": "<p>Tuula och Pirkko är en viril duo på totalt cirka 170 år från Ala-Vittula.</p><p>De tycker inte särskilt mycket om varandra, men har av någon okänd anledning ändå levt sina liv tätt tillsammans. I motsats till vad man kanske vanligtvis tror om äldre, så har dessa två inte blivit fridfullare med åren. Tvärtom. Tuula älskar Cindy Crawford och säkerhetsavstånd, medan Pirkko inte sätter något värde på sina barnbarns lerfigurer eller teckningar, och hon kan fortfarande inte baka. Tuula och Pirkko har på grund av sina besvärliga personligheter lämnats ifred i coronakarantänen redan för länge sedan, och därför har de all tid i världen att leva sina liv precis som de själva vill.</p><p>Efter en rad händelser bestämmer sig Tuula och Pirkko för att damma av sina resväskor, ta sina jordiska kroppshyddor till Finavias biljettdisk, betala sina flygskatter, kanske för sista gången, och sätta kurs mot Fuengirolas soliga costa. Det dröjer inte länge förrän de kanske viktigaste samtalen hittills i livet förs i Toros skugga. Under resan får sig både Tuulas och Pirkkos döttrars inrotade attityder gentemot sina mödrar och den patriarkala machokulturen en ordentlig omgång. Finns romantik, lyxjakter eller Sean Connerys brösthår på Fuengirolas stränder?</p><p>Föreställningen är en hyllning till stollighet, livsglädje, den fria viljan, medvetandeströmmen, självständighet, dumheter, drömmar, mänskligheten, människans arttypiska behov av att erövra okända områden samt vikten av självbestämmanderätt.</p><p>Manus, regi och alla roller: Ria Kataja och Minna Kivelä <br>Ljusdesign: Niina Sivén <br>Ljuddesign: Esko Paavola <br> <br>Tuula och Pirkko sågs för första gången i föreställningen Punkkuelämää, med manus av Pentti Järvinen, dit de kom efter premiären på initiativ av Ria och Minna. Sedan dess har Tuula och Pirkko också gjort en komediserie i nio delar med titeln Kahden markan mummot – todella karmeeta-show. <br> <br>Längd: ca 2,5 h inklusive paus</p><p>Åldersrekommendation: 15 år</p>", "en": "<p>Tuula and Pirkko are a pair of red-blooded ladies from Ala-Vittula, with a combined age of around 170 years.</p><p>They do not really like each other, but for some unknown reason they have spent their entire lives very closely together. Unlike what you might think about most elderly people, age has done nothing to calm them down. Quite the opposite in fact. Tuula loves Cindy Crawford and social distancing, while Pirkko does not think much of her grandchildren’s pottery or drawings, nor is she still any good at baking. Tuula and Pirkko were left to their own devices during the COVID-19 lockdown quite some time ago because of their difficult personalities, and so they have all the time in the world to live their lives exactly as they please.</p><p>After a series of twists and turns, Tuula and Pirkko decide to dust off their suitcases, haul their ageing behinds to the Finavia ticket counter, pay their airport tax – perhaps for the very last time – and set off for the sunny coast of Fuengirola. Before long, they have perhaps the most important conversations of their lives in the shade of the Toro. On this journey, both the entrenched attitudes of Tuula and Pirko’s daughters towards their mothers and the patriarchal macho culture are given a good shaking up. Will the ladies find romance, a luxury yacht or Sean Connery’s chest hair on the shores of Fuengirola?</p><p>The performance is a tribute to whimsy, the joy of life, free will, a stream of consciousness, self-determination, silly things, dreams, humanity, the species-specific human need to explore uncharted territories, and the importance of the right of self-determination.</p><p>Script, direction and all roles: Ria Kataja and Minna Kivelä <br>Lighting design: Niina Sivén <br>Sound design: Esko Paavola <br> <br>Tuula and Pirkko first appeared in the play Punkkuelämää, written by Pentti Järvinen, where they arrived as envisioned by Ria and Minna after the premiere. Since then, Tuula and Pirkko have also made a nine-part comedy series called Kahden markan mummot – todella karmeeta -show. <br> <br>Duration: roughly 2 h 30 min, incl. intermission.</p><p>Recommended age: 15</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69243/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68813", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385248, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T08:13:40.048679Z", "last_modified_time": "2026-06-18T08:13:40.048694Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792027.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385248/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T08:13:39.926547Z", "last_modified_time": "2026-07-21T06:14:34.302263Z", "date_published": null, "start_time": "2026-09-17T15:00:00Z", "end_time": "2026-09-17T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tuomari Nurmio – 13 kylmää laulua (7) – Doc Helios", "sv": "Tuomari Nurmio – 13 kylmää laulua (7) – Doc Helios", "en": "Tuomari Nurmio – 13 kylmää laulua (7) – Doc Helios" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Valitettavan ajankohtaisia yhteiskunnallisia lauluja Tuomari Nurmion katalogista yli 40 vuoden ajalta.", "sv": "Tyvärr högaktuella samhällssånger ur Tuomari Nurmios repertoar från en period på över 40 år.", "en": "Regrettably topical social songs from Tuomari Nurmio’s catalogue, spanning over 40 years." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C26BDCFACEFB9ECE9F1EF9E258E7CEBD/Tuomari_Nurmio_13_kylmaa_laulua_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C26BDCFACEFB9ECE9F1EF9E258E7CEBD/Tuomari_Nurmio_13_kylmaa_laulua_7_", "en": "http://www.malmitalo.fi/en/events/event/C26BDCFACEFB9ECE9F1EF9E258E7CEBD/Tuomari_Nurmio_13_kylmaa_laulua_7_" }, "description": { "fi": "<p>Valitettavan ajankohtaisia yhteiskunnallisia lauluja Tuomari Nurmion katalogista yli 40 vuoden ajalta.</p><p>Teemakonsertti ”Lauluja sodasta ja diktatuurista” esitettiin Helsingin juhlaviikkojen Huvilateltassa, Tampereen Tavara-asemalla ja vielä 30.9 2024 Tavastia -klubilla, missä tämä dokumentti tallennettiin.</p><p>Tuomari Nurmio kommentoi itse näin: ”Olen kirjoittanut nämä laulut yli 40 vuoden aikajänteellä, ja ne ovat pysyneet ajankohtaisina valitettavan hyvin. Vaikka teemat ovat pohjavireeltään synkkiä, niiden musta huumori toivottavasti toimii myös terapiana näinäkin pelon ja epävarmuuden aikoina.”</p><p>Kesto: 1 t 2 min<br>Kieli: suomi<br>Ikäraja: 7<br>Vapaa pääsy</p><p><b>Kino Helioksessa</b>, Malmin omassa elokuvateatterissa, näet elokuvat ilman mainoksia edullisesti ja mukavasti. Omat herkut sallittu! <b>Doc Helios</b> -sarjassa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista. <u><a href=\"https://www.malmitalo.fi/fi/kinohelios\">Lue lisää Kino Helioksesta</u></a>!</p>", "sv": "<p>Tyvärr högaktuella samhällssånger ur Tuomari Nurmios repertoar från en period på över 40 år.</p><p>Temakonserten Lauluja sodasta ja diktatuurista (Sånger om krig och diktatur) framfördes i Huvilatältet under Helsingfors festspel, på Tavara-stationen i Tammerfors och också den 30 september 2024 på klubben Tavastia, där denna dokumentär spelades in.</p><p>Tuomari Nurmio kommenterade själv så här: ”Jag har skrivit dessa sånger under en period på över 40 år, och de har tyvärr förblivit aktuella.” ”Även om temana i grunden är dystra, hoppas jag att deras svarta humor också kan fungera som terapi även i dessa tider präglade av rädsla och osäkerhet.”</p><p>Längd: 1 h 2 min. <br>Språk: finska <br>Åldersgräns: 7 <br>Fritt inträde</p>", "en": "<p>Regrettably topical social songs from Tuomari Nurmio’s catalogue, spanning over 40 years.</p><p>The themed concert Lauluja sodasta ja diktatuurista (‘Songs about War and Dictatorship’) was performed in the Huvila tent during the Helsinki Festival, at the Tavara-asema venue in Tampere, and again on 30 September 2024 at the Tavastia club, where this documentary was filmed.</p><p>Tuomari Nurmio himself comments: “I have written these songs over a period of more than 40 years, and they have remained regrettably topical. Although the themes are fundamentally sombre, their dark humour hopefully also serves as a form of therapy in these times of fear and uncertainty.”</p><p>Duration: 1 h 2 min <br>Language: Finnish <br>Age rating: 7 <br>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68813/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68923", "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: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:596/?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:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T08:14:41.684479Z", "last_modified_time": "2026-06-17T08:14:41.684500Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792256.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T08:14:41.560434Z", "last_modified_time": "2026-07-21T06:14:34.081045Z", "date_published": null, "start_time": "2026-09-17T10:00:00Z", "end_time": "2026-09-17T10: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, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten sätta dig i rörelse!", "en": "Art exercise – let art get you moving!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.", "sv": "Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.", "en": "Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E72C8D9248440DC9BDEE27EB11324FE3/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E72C8D9248440DC9BDEE27EB11324FE3/Konstgympa_lat_konsten_satta_dig_i_rorelse_", "en": "http://www.kanneltalo.fi/en/events/event/E72C8D9248440DC9BDEE27EB11324FE3/Art_exercise_let_art_get_you_moving_" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta Kanneltalon galleriaan ja kirjaston monitoimitila Tempoon.</p><p>Syksyn aikana mm. haemme liikkuvuutta kehoon venytellen, lisäämme liikettä päivään heittäytymällä perinneleikkien maailmaan, nautimme Kanneltalon läheisyydessä olevasta julkisesta taiteesta sauvakävellen ja vahvistamme lihaksia kuminauhajumpan merkeissä.</p><p>Ota oma alusta mukaan ja anna taiteen liikuttaa!</p><p>Taidejumppiin osallistutaan <b>alueliikuntapassilla</b>. Yhden passin hinta on 30 € ja se ladataan omalle, 4 € maksavalle Helsinki liikkuu -kortille. Passin voi lainata myös mm. Kannelmäen kirjastosta. <u><a href=\"https://liikunta.hel.fi/fi/pages/ohjattu-liikunta/alueliikunta\">Lue lisää alueliikunnasta ja alueliikuntapassista</u></a>.</p><p>Taidejumppaa ei järjestetä syyslomaviikolla to 15.10.</p>", "sv": "<p>Kom och delta i ledda motionspass i Gamlasgårdens galleri och bibliotekets allaktivitetsrum Tempo.</p><p>Under hösten ska vi bland annat öka rörligheten i kroppen genom att stretcha, få in mer rörelse i vardagen genom att kasta oss in i en värld av traditionella lekar, njuta av den offentliga konsten i närheten av Gamlasgården medan vi är ute på stavgång och stärka musklerna med träningsband. Under hösten besöker musikerna i den finländska barockorkestern FiBO Konstgympan.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Du deltar i konstgympan med ett <b>förortsmotionspass</b>. Priset för ett pass är 30 euro, och det laddas på det egna Helsinki liikkuu-kortet, som kostar 4 euro. Passet kan även lånas på bland annat Gamlas bibliotek. <u><a href=\"https://liikunta.hel.fi/sv/sidor/handledd-motion/forortsmotion\">Läs mer om förortsmotion och förortsmotionspasset</u></a>.</p><p>Konstgympan hålls inte torsdagen den 15 oktober i höstlovsveckan.</p>", "en": "<p>Join us for some instructed exercise in the Kanneltalo gallery and the library’s Tempo multi-purpose room.</p><p>Our autumn programme includes activities such as improving our flexibility through stretching, adding more activity to our day by immersing ourselves in the world of traditional games, enjoying public art near Kanneltalo while Nordic walking, and strengthening our muscles with resistance band exercises. This autumn, musicians from the Finnish Baroque Orchestra (FiBO) will also visit the art exercise sessions.</p><p>Bring your own exercise mat and let art get you moving!</p><p>You can take part in the art exercise sessions with a <b>regional exercise pass</b>. A single pass costs €30 and is loaded onto your ‘Helsinki liikkuu’ customer card, which costs €4. You can also borrow a pass from service providers such as Kannelmäki Library. <u><a href=\"https://liikunta.hel.fi/en/pages/guided-exercise/regional-exercise-services\">Read more about regional sports and the regional exercise pass</u></a>.</p><p>Art exercise sessions will not be held during the autumn break week on Thursday 15 October.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68923/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }