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&page=87&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 11939, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=88&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=86&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:67120", "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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/" }, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491010, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T07:13:37.593560Z", "last_modified_time": "2025-10-06T07:13:37.593571Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777363.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491010/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T07:13:37.508426Z", "last_modified_time": "2025-10-06T08:14:32.155270Z", "date_published": null, "start_time": "2025-10-25T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/26D609C5FCF3FE3094FD2D39878DAE8D/Kino_Helios_Cancel_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/26D609C5FCF3FE3094FD2D39878DAE8D/Kino_Helios_Cancel_7_", "en": "http://www.malmitalo.fi/en/events/event/26D609C5FCF3FE3094FD2D39878DAE8D/Kino_Helios_Cancel_7_" }, "provider": null, "description": { "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Cancel (7) – Kino Helios", "sv": "Kino Helios: Cancel (7) – Kino Helios", "en": "Kino Helios: Cancel (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67120/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67126", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/" }, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491016, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T08:14:30.829322Z", "last_modified_time": "2025-10-06T08:14:30.829336Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777291.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491016/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T08:14:30.743992Z", "last_modified_time": "2025-10-06T08:14:30.939982Z", "date_published": null, "start_time": "2025-10-24T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_", "en": "http://www.malmitalo.fi/en/events/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_" }, "provider": null, "description": { "fi": "<p>Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa.</p><p>Menestyselokuvan jatko-osassa isä ja äiti pakenevat jouluvalmisteluja Lappiin, mutta rauha on tipotiessään, kun lapset seuraavat perässä. Kun Jussin uusi tyttöystävä Viktoria paljastuu miljonäärin ainoaksi lapseksi, isä tekee kaikkensa, että perhe tekisi mahdollisimman hyvän vaikutuksen uuteen miniäehdokkaaseen. Kun yllätykset seuraavat toisiaan, isän on laitettava kaikki ”osaamisensa” peliin.</p><p>Ikäraja: S<br>Kesto: 85 min<br>Ensi-ilta: 15.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Kyllä isä osaa Lapissa (S)", "sv": "Kino Helios: Kyllä isä osaa Lapissa (S)", "en": "Kino Helios: Kyllä isä osaa Lapissa (S)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67126/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67125", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491015, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T08:14:30.527351Z", "last_modified_time": "2025-10-06T08:14:30.527364Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777290.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491015/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T08:14:30.440270Z", "last_modified_time": "2025-10-06T08:14:30.647401Z", "date_published": null, "start_time": "2025-10-24T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt", "en": "http://www.malmitalo.fi/en/events/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt" }, "provider": null, "description": { "fi": "<p>Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama.</p><p>Elokuva kertoo yliopistoprofessorista (Julia Roberts), joka joutuu vaikeaan tilanteeseen, kun eräs hänen tähtiluokan opiskelijoistaan (Ayo Edebiri) esittää syytöksen yhtä hänen kollegaansa (Andrew Garfield) kohtaan. Samalla hänen menneisyytensä synkkä salaisuus uhkaa paljastua. After The Hunt on Nora Garrettin käsikirjoittama.</p><p>Ikäraja: ei tiedossa<br>Kesto: 139 min<br>Ensi-ilta: 17.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama." }, "location_extra_info": null, "name": { "fi": "Kino Helios: After the Hunt", "sv": "Kino Helios: After the Hunt", "en": "Kino Helios: After the Hunt" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67125/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67123", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491008, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T07:13:36.046990Z", "last_modified_time": "2025-10-06T07:13:36.047005Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777327.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491008/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T07:13:35.965360Z", "last_modified_time": "2025-10-06T08:14:29.701605Z", "date_published": null, "start_time": "2025-10-22T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt", "sv": "http://www.malmitalo.fi/sv/evenemang/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt", "en": "http://www.malmitalo.fi/en/events/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt" }, "provider": null, "description": { "fi": "<p>Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama.</p><p>Elokuva kertoo yliopistoprofessorista (Julia Roberts), joka joutuu vaikeaan tilanteeseen, kun eräs hänen tähtiluokan opiskelijoistaan (Ayo Edebiri) esittää syytöksen yhtä hänen kollegaansa (Andrew Garfield) kohtaan. Samalla hänen menneisyytensä synkkä salaisuus uhkaa paljastua. After The Hunt on Nora Garrettin käsikirjoittama.</p><p>Ikäraja: ei tiedossa<br>Kesto: 139 min<br>Ensi-ilta: 17.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "short_description": { "fi": "Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama." }, "location_extra_info": null, "name": { "fi": "Kino Helios: After the Hunt", "sv": "Kino Helios: After the Hunt", "en": "Kino Helios: After the Hunt" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67123/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67122", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491014, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T08:14:29.313242Z", "last_modified_time": "2025-10-06T08:14:29.313254Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777326.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491014/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T07:13:35.593552Z", "last_modified_time": "2025-10-06T08:14:29.450779Z", "date_published": null, "start_time": "2025-10-22T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_", "en": "http://www.malmitalo.fi/en/events/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_" }, "provider": null, "description": { "fi": "<p>Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan.</p><p>Gustav tarjoaa Noralle, teatterinäyttelijälle, roolin elokuvasta, jonka hän toivoo palauttavan hänen uransa kukoistukseen. Kun Nora kieltäytyy, hän saa tietää, että rooli on annettu nuorelle ja innokkaalle Hollywood-tähdelle. Pian sisarusten täytyy selvittää vaikeaa suhdettaan isäänsä ja tulla toimeen amerikkalaisen tähden kanssa, joka sotkeutuu heidän monimutkaisiin perhekuvioihinsa.</p><p>Cannes Grand Prix voittaja Sentimental value -elokuvan on ohjannut Joachim Trier. Pääsosissa Renate Reinsve, Inga Ibsdotter Lilleaas, Stellan Skarsgård ja Elle Fanning.</p><p>Ikäraja: 12<br>Kesto: 135 min<br>Ensi-ilta: 17.10.2025<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Sentimental value (12)", "sv": "Kino Helios: Sentimental value (12)", "en": "Kino Helios: Sentimental value (12)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66772", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347688/", "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347688/", "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347688/" }, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1270783, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-16T09:12:50.049717Z", "last_modified_time": "2025-07-16T09:12:50.049731Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774924.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-16T09:12:49.992233Z", "last_modified_time": "2025-10-06T08:14:28.852824Z", "date_published": null, "start_time": "2025-10-18T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/45490EEF0DCD18849F191ECA5B9D21BE/Klubi-ilta_Tomi_Salesvuo_East_Funk_Attack_feat_Sami_Pitkamo", "sv": "http://www.vuotalo.fi/sv/evenemang/event/45490EEF0DCD18849F191ECA5B9D21BE/Klubbkvall_Tomi_Salesvuo_East_Funk_Attack_feat_Sami_Pitkamo", "en": "http://www.vuotalo.fi/en/events/event/45490EEF0DCD18849F191ECA5B9D21BE/Club_night_Tomi_Salesvuo_East_Funk_Attack_feat_Sami_Pitkamo" }, "provider": null, "description": { "fi": "<p>Rock-Funk juhlaa Vuotalossa!</p><p>Vuotalon klubi-illassa kuullaan tällä kertaa ainutlaatuinen kattaus räjähtävän rytmikästä live-musiikkia!</p><p>Rumpali Tomi Salesvuon East Funk Attack on neljä omaa albumia julkaissut funk-paahtimo Helsingistä. Periksiantamattoman juureva rock-henkinen iskuryhmä on soittanut niin kotimaan kuin ulkomaidenkin klubeilla ja tehnyt keikkoja niin konserttisaleissa kuin kotimaamme festareillakin. Bändin tuorein albumi Rhythm Manifesto IV julkaistiin keväällä 2025.</p><p>Vuotalossa East Funk Attackin kanssa lavalle nousee musiikin monitoimimies, laulaja Sami Pitkämö! Ystävysten ilta irti -teeman keikat saivat mainion suosion pari vuotta sitten niin klubeilla kuin festivaaleillakin eri puolilla Suomea ja teema saa nyt jatkoa!</p><p>Laulaja-kitaristi Sami Pitkämön suuri yleisö tuntee mm. Tanssii Tähtien kanssa TV-ohjelmasta. Sami ja Tomi ovat valinneet erityiseen keikkaohjelmistoon jälleen omia sekä lainakappaleita teemalla ”pelkkää parasta musaa!”. Keikalla kuullaankin Salesvuon East Funk Attack -yhtyeen uuden tuotannon ja Pitkämön sävellysten lisäksi tuttuja hittejä tuhdilla funk-poljennolla yhteisvoimin!</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17:30.</p><p>Kesto: n. 2 t sis. väliajan</p>", "sv": "<p>Rock-Funk-fest på Nordhuset!</p><p>Nordhusets klubbkväll kommer den här gången att bjuda på ett unikt urval av explosiv livemusik!</p><p>Trummisen Tomi Salesvuos East Funk Attack är en funkgrupp från Helsingfors som har släppt fyra egna album. Det obevekligt rotade rockbandet har spelat på klubbar i Finland och utomlands, och även uppträtt i konsertsalar och på inhemska festivaler. Bandets senaste album, Rhythm Manifesto IV, släpptes våren 2025.</p><p>På Nordhuset kommer East Funk Attack att få sällskap på scenen av musikens mångsysslare, sångaren Sami Pitkämö! Konserterna på temat ”vänskapens kvällar” var mycket populära för ett par år sedan på klubbar och festivaler runt om i Finland, och nu fortsätter temat!</p><p>Sångaren och gitarristen Sami Pitkämö är känd för den breda allmänheten från TV-programmet Tanssii tähtien kanssa. Sami och Tomi har återigen valt ut egna och inlånade låtar till en speciell konsertrepertoar med temat \"bara den bästa musiken!\". Förutom den nya produktionen av Salesvuos East Funk Attack-band och Pitkämös kompositioner kommer showen också att innehålla välkända hits med en funky kick!</p><p>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 2 timmar inklusive paus</p>", "en": "<p>Rock-Funk festivities at Vuotalo!</p><p>This time, the club night at Vuotalo will feature a unique selection of explosively rhythmic live music!</p><p>Drummer Tomi Salesvuo’s East Funk Attack is a funk outfit from Helsinki that has released four albums. The relentlessly rootsy and rocking band has played clubs in Finland and abroad and performed in concert halls and at festivals in Finland. The band’s latest album, Rhythm Manifesto IV, was released in the spring of 2025.</p><p>At Vuotalo, East Funk Attack will be joined on stage by musical all-rounder, singer Sami Pitkämö! The band’s Ystävysten ilta irti (‘Friends’ Night Out’) concert theme was very popular a couple of years ago at clubs and festivals all over Finland, and now that theme will continue!</p><p>Singer and guitarist Sami Pitkämö is known to the general public from the Finnish version of the TV show Dancing with the Stars, among other things. Sami and Tomi have again picked songs of their own as well as covers for this special concert programme, the theme being ‘only the best music!’ In addition to new tunes by Salesvuo’s East Funk Attack band and compositions by Pitkämö, the show will also feature well-known hits performed together with a hefty amount of funk!</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p><p>Duration: roughly 2 h, incl. intermission</p>" }, "short_description": { "fi": "Rock-Funk juhlaa Vuotalossa!", "sv": "Rock-Funk-fest på Nordhuset!", "en": "Rock-Funk festivities at Vuotalo!" }, "location_extra_info": null, "name": { "fi": "Klubi-ilta: Tomi Salesvuo East Funk Attack feat. Sami Pitkämö", "sv": "Klubbkväll:Tomi Salesvuo East Funk Attack feat. Sami Pitkämö", "en": "Club night:Tomi Salesvuo East Funk Attack feat. Sami Pitkämö" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66772/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67131", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/" }, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T08:14:28.258064Z", "last_modified_time": "2025-10-06T08:14:28.258077Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777288.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491013/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T08:14:28.165273Z", "last_modified_time": "2025-10-06T08:14:28.381583Z", "date_published": null, "start_time": "2025-10-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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_", "en": "http://www.malmitalo.fi/en/events/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_" }, "provider": null, "description": { "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Cancel (7) – Kino Helios", "sv": "Kino Helios: Cancel (7) – Kino Helios", "en": "Kino Helios: Cancel (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67131/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67121", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/" }, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491012, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T08:14:27.228796Z", "last_modified_time": "2025-10-06T08:14:27.228814Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777324.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491012/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T07:13:34.087225Z", "last_modified_time": "2025-10-06T08:14:27.346896Z", "date_published": null, "start_time": "2025-10-15T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_", "en": "http://www.malmitalo.fi/en/events/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_" }, "provider": null, "description": { "fi": "<p>Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa.</p><p>Menestyselokuvan jatko-osassa isä ja äiti pakenevat jouluvalmisteluja Lappiin, mutta rauha on tipotiessään, kun lapset seuraavat perässä. Kun Jussin uusi tyttöystävä Viktoria paljastuu miljonäärin ainoaksi lapseksi, isä tekee kaikkensa, että perhe tekisi mahdollisimman hyvän vaikutuksen uuteen miniäehdokkaaseen. Kun yllätykset seuraavat toisiaan, isän on laitettava kaikki ”osaamisensa” peliin.</p><p>Ikäraja: S<br>Kesto: 85 min<br>Ensi-ilta: 15.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Kyllä isä osaa Lapissa (S)", "sv": "Kino Helios: Kyllä isä osaa Lapissa (S)", "en": "Kino Helios: Kyllä isä osaa Lapissa (S)" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67121/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67124", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/" }, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491011, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T08:14:26.747055Z", "last_modified_time": "2025-10-06T08:14:26.747068Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777323.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491011/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T08:14:26.633105Z", "last_modified_time": "2025-10-06T08:14:26.889939Z", "date_published": null, "start_time": "2025-10-15T12:00:00Z", "end_time": "2025-10-15T13:25: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_", "en": "http://www.malmitalo.fi/en/events/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_" }, "provider": null, "description": { "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "short_description": { "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Cancel (7) – Kino Helios", "sv": "Kino Helios: Cancel (7) – Kino Helios", "en": "Kino Helios: Cancel (7) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67124/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66067", "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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/", "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/", "en": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/" }, "price": { "fi": "20€ / 15 €", "sv": "20€ / 15 €", "en": "20€ / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1154483, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T08:13:45.364808Z", "last_modified_time": "2025-07-01T08:13:45.364824Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771401.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154483/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T08:13:45.258066Z", "last_modified_time": "2025-10-06T08:14:24.677770Z", "date_published": null, "start_time": "2025-10-09T16: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalan_80-vuotisjuhlakonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalas_80-arsjubileumskonsert", "en": "http://www.malmitalo.fi/en/events/event/14603469D9CA96FF262801B02452CC19/Edward_Vesala_s_80th_Anniversary_Concert" }, "provider": null, "description": { "fi": "<p>Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.</p><p>Juhlapäivän kunniaksi Sound & Fury toteuttaa juhlakonserttikiertueen, jossa soi Vesalan musiikki. Tämä konsertti tarjoaa ainutlaatuisen tilaisuuden kokea Vesalan sävellykset ja musiikillinen jatkumo livenä alkuperäisten Sound & Fury -yhtyeen jäsenten (ml. Tapani Rinteen) sekä nuorempien muusikoiden esittämänä, jotka jatkavat hänen perintöään.</p><p>Vesalan musiikki, joka yhdistää ainutlaatuisella tavalla jazzia, rockia, klassista, kansanmusiikkia ja improvisaatiota. Se on edelleen yksi Suomen musiikkihistorian ja eurooppalaisen jazzin kulmakivistä, mutta valitettavasti hänen teoksiaan kuulee elävänä nykyisin harvoin – varsinkaan hänen tärkeimmän yhtyeensä Sound & Furyn esittämänä.</p><p><b>Konsertin rakenne ja esiintyjät:</b></p><p><b>1. Osa:</b><br>Tapani Rinne soolona<br>Sound & Fury -yhtyeen jäseniä pienkokoonpanoissa (Vesalan musiikkia)</p><p><b>Väliaika 20 min</b></p><p><b>2. osa:</b><br>Sound & Fury -yhtye kokonaisuudessaan (Vesalan musiikkia Iro Haarlan sovituksina).</p><p><b>Konsertissa esiintyvät muusikot: </b><br>Jorma Tapio (puupuhaltimet)<br>Pepa Päivinen (puupuhaltimet)<br>Tane Kannisto (puupuhaltimet)<br>Eero Savela (trumpetti)<br>Jukka Orma (kitara)<br>Eero Tikkanen (kontrabasso)<br>Ilmari Heikinheimo (rummut, lyömäsoittimet)<br>Tapani Rinne (soolo) feat. Aleksi Myllykoski (livesampling)</p><p>Kesto: 2 t, sis. 20 min väliajan</p>", "sv": "<p>I år har det gått 80 år sedan den legendariske trummisen, kompositören och orkesterledaren Edward Vesala föddes.</p><p>Till jubileets ära genomför Sound & Fury en festkonsertturné med musik av Vesala. Denna konsert ger en unik möjlighet att uppleva Vesalas kompositioner och musikaliska kontinuitet live med de ursprungliga bandmedlemmarna i Sound & Fury (inkl. Tapani Rinteen) och yngre musiker som för hans arv vidare.</p><p>Vesalas musik kombinerar jazz, rock, klassisk musik, folkmusik och improvisation på ett unikt sätt. Den är fortfarande en av hörnstenarna i Finlands musikhistoria och europeisk jazz, men tyvärr hörs hans verk sällan live nuförtiden – speciellt framförd av hans viktigaste band Sound & Fury.</p><p><b>Konsertens struktur och artister:</b></p><p><b>Del 1:</b><br>Tapani Rinne solo<br>Sound & Furys medlemmar i små sammansättningar (Vesalas musik)</p><p><b>Paus 20 minuter<b/></p><p><b>Del 2:</b><br>Sound & Fury i sin helhet (musik av Vesala arrangerad av Iro Haarla).</p><p><b>Musiker som uppträder i konserten:</b><br>Jorma Tapio (träblåsinstrument)<br>Pepa Päivinen (träblåsinstrument)<br>Tane Kannisto (träblåsinstrument)<br>Eero Savela (trumpet)<br>Jukka Orma (gitarr)<br>Eero Tikkanen (kontrabas)<br>Ilmari Heikinheimo (trummor, slagverk)<br>Tapani Rinne (solo) feat. Aleksi Myllykoski (livesampling)</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>", "en": "<p>This year marks the 80th anniversary of the legendary drummer, composer and conductor Edward Vesala's birth.</p><p>To honour the occasion, Sound & Fury is organising a celebratory concert tour featuring Vesala's music. This concert offers a unique opportunity to experience Vesala's compositions and musical continuum live, performed by original members of the Sound & Fury band (incl. Tapani Rinne) and younger musicians who carry on his legacy.</p><p>Vesala's music is a unique blend of jazz, rock, classical, folk and improvisation. It remains one of the cornerstones of Finnish music history and European jazz, although unfortunately his works are rarely heard live these days – especially performed by his main band, Sound & Fury.</p><p><b>Concert programme and performers:</b></p><p><b>Part 1:</b><br>Tapani Rinne performing solo<br>Members of Sound & Fury in smaller groups (music by Vesala)</p><p><b>Intermission 20 min<b/></p><p><b>Part 2:</b><br>The full Sound & Fury band (performing Vesala's music arranged by Iro Haarla).</p><p><b>Musicians performing at the concert:</b><br>Jorma Tapio: woodwinds<br>Pepa Päivinen: woodwinds<br>Tane Kannisto: woodwinds<br>Eero Savela: trumpet<br>Jukka Orma: guitar<br>Eero Tikkanen: double bass<br>Ilmari Heikinheimo: drums, percussion<br>Tapani Rinne: solo, feat. Aleksi Myllykoski (live sampling)</p><p>Duration: 2 hours, incl. a 20-min intermission</p>" }, "short_description": { "fi": "Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.", "sv": "I år har det gått 80 år sedan den legendariske trummisen, kompositören och orkesterledaren Edward Vesala föddes.", "en": "This year marks the 80th anniversary of the legendary drummer, composer and conductor Edward Vesala's birth." }, "location_extra_info": null, "name": { "fi": "Edward Vesalan 80-vuotisjuhlakonsertti – MalmiJazz", "sv": "Edward Vesalas 80-årsjubileumskonsert – MalmiJazz", "en": "Edward Vesala's 80th Anniversary Concert – MalmiJazz" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66067/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66298", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3920175", "sv": "https://www.lippu.fi/eventseries/name-3920175", "en": "https://www.lippu.fi/eventseries/name-3920175" }, "price": { "fi": "6 € / 0 €", "sv": "6 € / 0 €", "en": "6 € / 0 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1201890, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T08:17:46.573280Z", "last_modified_time": "2025-07-07T08:17:46.573296Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773278.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201890/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-07T08:17:46.435542Z", "last_modified_time": "2025-10-06T07:13:43.842636Z", "date_published": null, "start_time": "2025-11-29T13: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00DA54C72207A658A6DA25B725171CF4/LOPPUUNMYYTY_Kate_Pasi_Kulinaarikaaos_-_koko_perheen_sirkusesitys_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00DA54C72207A658A6DA25B725171CF4/SLUTSALD_Kate_Pasi_Kulinaarikaaos_-_en_cirkusforestallning_for_hela_familjen", "en": "http://www.kanneltalo.fi/en/events/event/00DA54C72207A658A6DA25B725171CF4/SOLD_OUT_Kate_Pasi_Culinary_Chaos_A_Circus_Show_for_the_Whole_Family" }, "provider": null, "description": { "fi": "<p>Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan palavan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi</p><p>Kokkien keittiössä taidokas akrobatia, jongleeraus ja hersyvä komiikka yhdistyvät esitykseksi, jossa mikään ei suju suunnitelmien mukaan – mutta kaikki on herkullista alusta loppuun. Humoristinen ja elämäniloa pulppuava esitys tempaa yleisön mukaansa maailmaan, jossa jauhot pöllyävät ja tavarat lentävät.</p><p>Katerina Repposen ja Pasi Nousiaisen muodostama Kate & Pasi on esiintynyt 15 vuoden aikana yli 25 maassa ympäri maailmaa, aina Kanadasta Japaniin, ja heidän teoksiaan on nähty lähes sadan eri festivaalin ohjelmistossa. Suomessa he ovat tuoneet sirkusta kaikkien ulottuville esiintymällä päiväkodeissa, kouluissa ja leikkipuistoissa, Tanssiteatteri Hurjaruuthin Talvisirkuksessa ja Sirkus Finlandian ohjelmistossa. Kate ja Pasi yhdistävät esityksissään poikkeuksellisella tavalla akrobaattisen taituruuden, vahvuuden, kauneuden ja huumorin.</p><p>Heidän esityksensä ovat saaneet kansainvälistä tunnustusta ja voittaneet palkintoja arvostetuilla sirkusfestivaaleilla muun muassa Saksassa, Latviassa ja Ranskassa.</p><p>Kesto: 45 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Työryhmä<br>Ohjaus: Katerina Repponen ja Pasi Nousiainen<br>Esiintyjät: Katerina Repponen ja Pasi Nousiainen<br>Ohjauksellinen apu: Marc Gassot<br>Ohjauksellinen ja dramaturginen apu: Jarkko Lehmus<br>Valosuunnittelu: Jaakko Sirainen<br>Pukusuunnittelu: Riikka Manni<br>Tukijat: Cirko, Tanssiteatteri Hurjaruuth, Kallo Collective, Taiteen edistämiskeskus</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/company-kate-pasi-helsingin-kaupunki-nuorisolippu-kanneltalo-20362423/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p><p>0–6-vuotiaille vapaa pääsy Valtuusto 150 -esityksiin. Huomioithan esityskohtaiset ikärajasuositukset.</p>", "sv": "<p>Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>Kate & Pasi, som består av Katerina Repponen och Pasi Nousiainen, har under 15 års tid uppträtt i över 25 länder runt om i världen, allt från Kanada till Japan, och deras verk har setts på nästan hundra olika festivalers program. I Finland har de gjort cirkusen tillgänglig för alla genom att uppträda på daghem, i skolor och lekparker, på Dansteater Hurjaruuths vintercirkus och i Sirkus Finlandias program. Kate och Pasi förenar i sina föreställningar på ett exceptionellt sätt den akrobatiska skickligheten, styrkan, skönheten och humorn. Deras föreställningar har fått internationellt erkännande och vunnit pris på ansedda cirkusfestivaler bland annat i Tyskland, Lettland och Frankrike.</p><p>Längd: 45 min.<br>Åldersrekommendation: 4+<br>Språk: ordlöst</p><p><b>Arbetsgrupp</b><br>Regi: Katerina Repponen och Pasi Nousiainen<br>På scenen: Katerina Repponen och Pasi Nousiainen<br>Hjälp med regin: Marc Gassot<br>Hjälp med regin och dramaturgin: Jarkko Lehmus<br>Ljusdesign: Jaakko Sirainen<br>Kostym: Riikka Manni<br>Stödjare: Cirko, DansteaternHurjaruuth, Kallo Collective, Centret för konstfrämjande</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/company-kate-pasi-helsingin-kaupunki-nuorisolippu-kanneltalo-20362423/?affiliate=FSF#tab=\">HÄR</a></u></p><p>0–6-åringar kan också avgiftsfritt delta i evenemangen Fullmäktige 150. Vänligen observera de föreställningsspecifika åldersgränserna.</p>", "en": "<p>A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way.</p><p>In their kitchen, skilful acrobatics, juggling and gleeful comedy blend into a performance where nothing goes according to plan, yet everything is delicious from start to finish. This humorous and joy-filled show whisks the audience off into a world where flour and objects fly around.</p><p>Katerina Repponen and Pasi Nousiainen, the duo behind Kate & Pasi, have performed for 15 years in over 25 countries across the globe, from Canada to Japan, and their works have been seen at nearly a hundred festivals. In Finland, they have brought the circus to everyone's doorstep, performing at daycares, schools and playgrounds, as well as in Dance Theatre Hurjaruuth's Winter Circus and as part of the Sirkus Finlandia programme. Kate and Pasi combine acrobatic mastery, strength, beauty and humour in a truly unique way. Their performances have earned international acclaim and have won awards at prestigious circus festivals in countries such as Germany, Latvia and France.</p><p>Duration: 45 min<br>Recommended age: 4+<br>Language: non-verbal</p><p>Creative team<br>Directed by: Katerina Repponen and Pasi Nousiainen<br>Performers: Katerina Repponen and Pasi Nousiainen<br>Directorial assistance: Marc Gassot<br>Directorial and dramaturgical assistance: Jarkko Lehmus<br>Light design: Jaakko Sirainen<br>Costume design: Riikka Manni<br>Supported by: Cirko, Dance Theatre Hurjaruuth, Kallo Collective and Arts Promotion Centre Finland</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/company-kate-pasi-helsingin-kaupunki-nuorisolippu-kanneltalo-20362423/?affiliate=FSF#tab=\">HERE</a></u></p><p>Children aged 0–6 also get free entry to the Valtuusto 150 events. Please note the age recommendations for each performance.</p>" }, "short_description": { "fi": "Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan palavan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi", "sv": "Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.", "en": "A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way." }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Kate & Pasi: Kulinaarikaaos - koko perheen sirkusesitys", "sv": "SLUTSÅLD Kate & Pasi: Kulinaarikaaos - en cirkusföreställning för hela familjen", "en": "SOLD OUT Kate & Pasi: Culinary Chaos – A Circus Show for the Whole Family" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66298/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67119", "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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/", "sv": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/", "en": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/" }, "price": { "fi": "6€", "sv": "6€", "en": "6€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491009, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-06T07:13:37.208317Z", "last_modified_time": "2025-10-06T07:13:37.208329Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777362.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491009/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T07:13:37.116334Z", "last_modified_time": "2025-10-06T07:13:37.311852Z", "date_published": null, "start_time": "2025-10-25T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_", "en": "http://www.malmitalo.fi/en/events/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_" }, "provider": null, "description": { "fi": "<p>DreamWorks Animationin rakastettuun sarjaan pohjautuva elokuvaseikkailu.</p><p>Vuodesta 2021 Netflixillä esitetty Gabbyn nukketalo päästää katsojan kurkistamaan sisälle Gabbyn nukketaloon ja sen suloisten kissahahmojen elämään.<br>Elokuvassa Gabby (sarjasta tuttu Laila Lockhart Kraner) lähtee mumminsa Gigin (nelinkertainen Grammy-voittaja Gloria Estefan) kanssa matkalle ihmeelliseen suurkaupunkiin. Mutta erikoinen kissanainen Vera (Oscar-ehdokas Kristen Wiig) saa käsiinsä Gabbyn kalleimman aarteen eli nukketalon! Gabbyn on saatava kattinsa takaisin ja pelastettava nukketalo, ennen kuin on liian myöhäistä.</p><p>Gabbyn nukketalo -elokuvan ohjaaja on Ryan Crego (sarjojen Vihdoin kotona – Tipin ja Ohon seikkailut ja I Heart Arlo vastaava tuottaja), joka sai lastenohjelmien Emmy-ehdokkuuden elokuvallaan Arlo, Alligaattoripoika. Elokuvan on tuottanut Steven Schweickart, joka on ollut tuottamassa DreamWorks Animationin isoimpia hittejä, kuten elokuvia Näin koulutat lohikäärmeesi, Croodit ja viimeisimpänä Kung Fu Panda 4.</p><p>Elokuvan vastaavia tuottajia ovat Jennifer Twormey ja Traci Paige Johnson, joiden luomaan sarjaan elokuva perustuu. Gabbyn nukketalo -sarja on ollut Netflixillä 63 maassa TV:n kymmenen katsotuimman joukossa, ja siitä on tullut esikouluikäisten ykkösbrändi ympäri maailman.</p><p>Ikäraja: S<br>Kesto: 98 min<br>Ensi-ilta: 10.10.2025<br>Puhuttu suomeksi</p>" }, "short_description": { "fi": "DreamWorks Animationin rakastettuun sarjaan pohjautuva elokuvaseikkailu." }, "location_extra_info": null, "name": { "fi": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios", "sv": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios", "en": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67119/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66384", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" }, { "@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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3906489", "sv": "https://www.lippu.fi/eventseries/name-3906489", "en": "https://www.lippu.fi/eventseries/name-3906489" }, "price": { "fi": "29 €", "sv": "29 €", "en": "29 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1154816, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-01T09:12:25.993440Z", "last_modified_time": "2025-07-01T09:12:25.993452Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773837.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154816/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-01T09:12:25.916122Z", "last_modified_time": "2025-10-06T07:13:34.850179Z", "date_published": null, "start_time": "2025-10-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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4E1D1BA8A81BDCE038250A36640F8D98/LOPPUUNMYYTY_Heli_Laaksonen_Sukkela_runoehtoo_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4E1D1BA8A81BDCE038250A36640F8D98/SLUTSALD_Heli_Laaksonen_Sukkela_runoehtoo_", "en": "http://www.kanneltalo.fi/en/events/event/4E1D1BA8A81BDCE038250A36640F8D98/SOLD_OUT_Heli_Laaksonen_Lively_Poetry_Evening" }, "provider": null, "description": { "fi": "<p>Helin runoehtoossa vuorottelevat hauskat sanailut, mietteliäät runot ja riipaisevat muistot – lyhyellä lounaismurteella.</p><p><i>”Iha hyvi siit saa selvä, ko vähän keskitty!”</i></p><p>Sanamaija Heli Laaksonen on pakannut taas kirjansa ja reissuvermeensä runoautoon ja lähtee maata kiertämään syksyllä 2025. Hän pystyttää runomajansa Suomen pienille ja suurille lavoille ja pulisee siellä maailmanmenosta, ihmissuhteista, luonnonihmeistä, elämän väreistä. Kädet viuhuvat, kukkaseppel kahisee, iloa hilataan! Illassa vuorottelevat vitsikkäät sattumukset, mietteliäät runot, hauskat sanailut ja riipaisevat muistot. Puoleentoista tuntiin mahtuu kolmen tunnin jutut, kun käyttökielenä on lounaismurre, lyhyt, nopea, konstailematon. Iha hyvi siit saa selvä, ko väh keskitty! <br> <br>Sukkelan runoehtoon otsikossa piilee kaksi puolta: yleiskielellä sukkela merkitsee nopeaa tai kerkeäjalkaista, lounaismurteissa se tarkoittaa vähän hassua tai kummallista. Kumpiki sopi! <br> <br>Uusia runoja ja juttujen aiheita on poimittu myös värien maailmasta. Lokakuussa ilmestyvä Ilone – Runoilijan värinkäsityksiä on Heli Laaksosen ja kuvittaja Elina Warstan värirunokirja (Orava-kirjat 2025). Ilosen runot leikkivät kielellä ja kertovat värien olemuksesta, merkityksestä ja vaikutuksista tunteisiin. Edellisestä yhteistyöstään, aakkosrunokirja Aapisesta, työpari sai Finlandia Junior -ehdokkuuden (Otava 2013). <br> <br>Vaikka runokeikassa on häiveitä stand upista – raumalaisittain pystöhuumorista – yleisöä ei vaivata interaktiivisuudella. Sen verran tietysti päästään vuoropuheluun, että toiverunoja voi mielellään pyytää esittämään. Onhan tekstejä kertynytkin: Heli Laaksosen esikoisrunokirja Pulu uis ilmestyi 25 vuotta sitten, ja kirjoja on kertynyt suomalaisten hyllyihin likemmäs 300 000. Teoksia on ilmestynyt kolmessa eri maassa ja Laaksosen itsensä lukemista äänikirjoista on myönnetty kaksi kultalevyä. Ilonhilaaja-kiertue on Laaksosen kymmenes. <br> <br>Turun Sanomien kriitikko Annina Karhu summaa esitysten luonteen näin: ”Laaksosen taiteilijahahmo koostuu anarkistisesta runotytöstä, maanläheisestä koti-ihmisestä sekä sympaattisesta kylähullusta.” Hesarin Pirkko Kotirinta tuumaa: ”Laaksosen padassa kypsyy lähiviljelty luomukieli, ravitseva ja makoisa.” Ja Laaksosen Heli meinaa, että: ”Elämä o välil harma ko renki-Jeren arkihousut, eikä joka aamu pal nauruta, pakko myäntä. Mut kysyn kumminki: onk ilosest miälest joskus haitta ollu? No sitä määki! Lähtekä mun föli iloittema elost.” <br> <br>Runokiertueella kulkee mukana myös runsas, hyväntuulinen kirjamyyntipiste. Oi kirjat, niiden rauha ja riemu! Lukemisesta ei voi hellittää, sen tuoma ilo on puhtaimpia iloja!</p><p>Kesto: 1 t 30 min <br>Ikäsuositus: 12 +</p>", "sv": "<p>På Helis diktkväll alternerar roliga ordlekar, tankeväckande dikter och nostalgiska minnen – på kortfattad sydvästlig dialekt. ”Iha hyvi siit saa selvä, ko vähän keskitty!” - alltså ”Helt bra förstår man, bara man fokuserar lite”</p><p>Ordkonstnären Heli Laaksonen har packat ner sin bok och sina resekläder i diktbilen och åker runt i landet hösten 2025. Hon reser sin dikthydda på små och stora scener i Finland och pratar om världens gång, relationer, naturfenomen, livets färger. Händerna viftar, blomsterkransen prasslar, glädjen bubblar! Under kvällen växlar skojiga händelser, fundersamma dikter, roliga ordvitsar och gripande minnen om varandra. En och en halv timme rymmer prat för tre timmar, då det sker på sydvästlig dialekt som är kort, snabb och okrusad. Helt bra förstår man, bara man fokuserar lite!</p><p>Rubriken Sukkela runoehtoo har två sidor: på allmän finska betyder ”sukkela” snabb eller kvick, men i de sydvästliga dialekterna betyder det lite lustig eller märklig. Båda passar!</p><p>Nya dikter och teman har plockats även ur färgernas värld. Ilone – Runoilijan värinkäsityksiä som kommer ut i oktober är Heli Laaksonens och illustratören Elina Warstas färgdiktbok (Orava-kirjat 2025). De glada dikterna leker med språket och berättar om färgernas väsen, betydelser och inverkan på känslorna. Från sitt tidigare samarbete, ABC-diktboken Aapinen, nominerades arbetsparet til Finlandia Junior-priset (Otava 2013).</p><p>Även om poesiföreställningen har stänk av stand-up, störs inte publiken genom interaktion. Men så mycket dialog är förstås tillåten så att publiken gärna kan be att få höra sin favoritdikt. Det har ju blivit en del texter: Heli Laaksonens första diktbok Pulu uis kom ut för 25 år sedan och har samlats i fler än 300 000 exemplar på finländarnas hyllor. Verken har getts ut i tre olika länder och de ljudböcker som Laaksonen själv läst in har fått två guldskivor. Turnén Ilonhilaaja är Laaksonens tionde.</p><p>Kritiker Annina Karhu skriver i sin recension i Turun Sanomat att Laaksonens konstnärsfigur består av ”en anarkistisk diktflicka, en jordnära hemmamänniska samt en sympatisk byafåne”. Pirkko Kotirinta från Helsingin Sanomat i sin tur dryftar att Laaksonen ”kokar upp ett närodlat ekologiskt språk i sin gryta, som är närande och smakrikt”. Och Heli Laaksonen själv säger att ”livet ibland är grått som drängens vardagsbyxor och att det inte är skratt varje morgon”. Laaksonen ställer även frågan om ett glatt sinne någon gång varit till skada? Det har det väl inte? Hon vill även bjuda in publiken att njuta av livet tillsammans med henne.</p><p>På diktturnén ser vi även ett bokförsäljningsställe med rikligt utbud och glatt humör. Å, böcker – deras fred och glädje! Det går inte att sluta läsa, dess glädje är en av de renaste!</p><p>Längd: 1 h 30 min <br>Åldersrekommendation 12 +</p>", "en": "<p>In Heli's poetry evening, humorous wordplay, thoughtful poems and heart-wrenching memories alternate – all delivered in a short southwestern dialect. \"You can understand it just fine if you only focus a bit!\"</p><p>Wordsmith Heli Laaksonen has once again packed her books and travel gear into her poetry car and will tour the country in autumn 2025. She will set up her poetry hut on Finland's small and large stages alike, chatting about world affairs, human relationships, nature's wonders and the colours of life. Hands fly, flower crowns rustle, joy is hoisted high! The evening features a mix of witty anecdotes, thoughtful poems, humorous wordplay and touching memories. In an hour and a half, you will get three hours' worth of stories, as they will be delivered in the short, quick and unpretentious southwestern dialect. You can understand it just fine if you only focus a bit!</p><p>The Finnish title Sukkela runoehtoo (\"Lively Poetry Evening\") carries a double meaning: in standard Finnish, sukkela means quick or nimble-footed, while in the southwestern dialect, it means slightly funny or quirky. Both meanings fit perfectly!</p><p>New poems and themes have also been drawn from the world of colours. Ilone – Runoilijan värinkäsityksiä is a colour-themed poetry book by Heli Laaksonen and illustrator Elina Warsta, to be published in October (Orava-kirjat, 2025). The poems in Ilone play with language and explore the essence of colours, their meaning and their emotional impact. The duo's previous collaboration, an alphabet poetry book, was nominated for the Finlandia Junior Prize (Otava, 2013).<br> <br>Although Heli's poetry performances contain elements of stand-up comedy, the audience is not burdened with interaction. Still, some dialogue is welcome: audience members are encouraged to request their favourite poems. After all, she certainly has produced plenty of them: Heli Laaksonen's debut poetry collection Pulu uis was published 25 years ago, and nearly 300,000 copies of her books have found their way onto Finnish bookshelves. Her works have been published in three different countries, and two of her audiobooks, narrated by Laaksonen herself, have received gold records. Ilonhilaaja is Laaksonen's tenth tour.<br> <br>Annina Karhu, a critic from Turun Sanomat, sums up her performances: \"Laaksonen's artistic persona is a mix of an anarchistic poetry girl, a down-to-earth homebody and a sympathetic village eccentric.\" Helsingin Sanomat's Pirkko Kotirinta says: \"Laaksonen cooks with locally grown organic language – nourishing and delicious.\" And Heli Laaksonen herself states: \"Life is sometimes as grey as a farmhand's trousers, and not every morning starts with laughter, I must admit. But I'll ask anyway: has being happy ever done anyone any harm? Exactly! Join me in enjoying life.\"<br> <br>The poetry tour also includes a generous and cheerful book sales booth. Oh, books, their peace and delight! Reading is something you should never give up, as the joy it brings is one of the purest!</p><p>Duration: 1 h 30 min <br>Age recommendation: 12+</p>" }, "short_description": { "fi": "Helin runoehtoossa vuorottelevat hauskat sanailut, mietteliäät runot ja riipaisevat muistot – lyhyellä lounaismurteella.", "sv": "På Helis diktkväll alternerar roliga ordlekar, tankeväckande dikter och nostalgiska minnen – på kortfattad sydvästlig dialekt. ”Iha hyvi siit saa selvä, ko vähän keskitty!” - alltså ”Helt bra förstår man, bara man fokuserar lite”", "en": "In Heli's poetry evening, humorous wordplay, thoughtful poems and heart-wrenching memories alternate – all delivered in a short southwestern dialect. \"You can understand it just fine if you only focus a bit!\"" }, "location_extra_info": null, "name": { "fi": "LOPPUUNMYYTY Heli Laaksonen: Sukkela runoehtoo", "sv": "SLUTSÅLD Heli Laaksonen: Sukkela runoehtoo", "en": "SOLD OUT Heli Laaksonen: Lively Poetry Evening" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66384/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agm3qxfnmu", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": { "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/167/?format=api" }, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [ { "id": 45, "price_group": { "id": 1, "description": { "fi": "Aikuinen", "sv": "Vuxen", "en": "Adult" } }, "price": "3.00", "vat_percentage": "25.50", "price_without_vat": "2.39", "vat": "0.61" } ], "description": { "fi": "" }, "info_url": { "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/167/signup-group/create", "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/167/signup-group/create", "en": "https://linkedregistrations.test.hel.ninja/en/registration/167/signup-group/create" }, "price": { "fi": "3€" } } ], "data_source": "helsinki", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490991, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-02T09:13:34.945640Z", "last_modified_time": "2025-10-02T09:13:34.945650Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773991.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490991/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-06T07:11:45.550864Z", "last_modified_time": "2025-10-06T07:11:45.550877Z", "date_published": null, "start_time": "2025-10-31T16:00:00Z", "end_time": "2025-10-31T21:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 18, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 300, "minimum_attendee_capacity": 15, "enrolment_start_time": "2025-10-06T12:00:00+03:00", "enrolment_end_time": "2025-10-10T17:00:00+03:00", "local": false, "replaced_by": null, "info_url": { "fi": "" }, "provider": { "fi": "" }, "description": { "fi": "<p>Tervetuloa viettämään taianomaista ja hieman pelottavaa Halloween-iltaa Annantalolle! Kulttuuritalo muuttuu yhdeksi illaksi mystiseksi maailmaksi, jossa kummitukset, noidat ja oudot olennot ottavat vallan. Tapahtuma on suunnattu kaikenikäisille, ja luvassa on monipuolista ohjelmaa, joka kutkuttaa mielikuvitusta ja nostattaa Halloween-tunnelmaa. Tämä on testitapahtuma. </p>" }, "short_description": { "fi": "Halloween-karkelot Annantalolla. Tämä on testitapahtuma. " }, "location_extra_info": { "fi": "" }, "name": { "fi": "Karmiva Kulttuuri-ilta Annantalolla" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agm3qxfnmu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67101", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3995714" }, "price": { "fi": "17-57 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491000, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-03T10:13:33.303665Z", "last_modified_time": "2025-10-03T10:13:33.303684Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777640.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491000/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-03T10:13:33.193877Z", "last_modified_time": "2025-10-03T14:13:28.598499Z", "date_published": null, "start_time": "2025-12-31T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/821DCC21FE40A374EFC07BAA669D3112/Savoyn_uusivuosi_Anssi_Kela_Tuplakela" }, "provider": { "fi": "Savoy-teatteri" }, "description": { "fi": "<p>KAKSI KELAA, YKSI ILTA!</p><p>Kotimaan suosituimpiin artisteihin lukeutuva <b>Anssi Kela</b> tarjoilee Savoyssa unohtumattoman uudenvuodenaaton juhlaillan. Kyseessä on kesällä Allas Livessä hurmannut erikoiskeikka, jossa koko kansan rakastama artisti esiintyy saman illan aikana kahdessa eri muodossa.</p><p>Ilta käynnistyy akustisesti, kun Kela nousee lavalle yksin – soolona, aitona, ilman rajoja. Yleisö saa tehdä biisitoiveita, joita artisti tulkitsee siinä hetkessä. Kitara, sanat ja tarinat pääsevät pääosaan tässä intiimissä, ainutlaatuisessa osuudessa, joka on saanut inspiraationsa Kelan ylistetyistä <i>Mun täytyy kävellä näin</i> -elämäkertakonserteista.</p><p>Väliajan jälkeen lavalle liittyy huippuunsa viritetty livekokoonpano: <b>Mikko Kosonen, Antti Karisalmi, Saara Metsberg</b> ja <b>Ville Kela</b>. Yhdessä he nostavat tunnelman kattoon bändivedolla, joka kuljettaa yleisön läpi vuosien aina uusimpiin hitteihin asti.</p><p>Anssi Kela singahti koko kansan sydämiin vuosituhannen taitteessa, kun hänen Nummela-klassikkoalbumistaan muodostui yksi maamme kaikkien aikojen menestyksekkäimmistä pitkäsoitoista. Rakastettu esiintyjä ei jäänyt kuitenkaan kieriskelemään hetkelliseen suosioon, vaan on pysynyt relevanttina läpi vuosikymmenten. Settilistalle on tunkua, vaikka useammankin keikan edestä Mikan faijan BMW:stä Ilveksen kautta aina tuoreimpiin singleihin.</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>" }, "short_description": { "fi": "KAKSI KELAA, YKSI ILTA!" }, "location_extra_info": null, "name": { "fi": "Savoyn uusivuosi: Anssi Kela – Tuplakela" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67101/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helsinki:agm2tsdgte", "has_user_editable_resources": true, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [ { "id": 44, "price_group": { "id": 1, "description": { "fi": "Aikuinen", "sv": "Vuxen", "en": "Adult" } }, "price": "1.00", "vat_percentage": "25.50", "price_without_vat": "0.80", "vat": "0.20" } ], "description": { "fi": "" }, "info_url": { "fi": "" }, "price": { "fi": "1 €" } } ], "data_source": "helsinki", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1491002, "has_user_editable_resources": true, "license": "event_only", "license_url": "", "created_time": "2025-10-03T11:13:59.047738Z", "last_modified_time": "2025-10-03T11:15:06.606866Z", "url": "https://linkedevents.api.test.hel.ninja/media/images/Testikuva_1240_x_480.jpg", "name": "Vihreä testikuva", "cropping": "100,0,500,400", "photographer_name": "milka salonen", "alt_text": "Vihreä", "data_source": "helsinki", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491002/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-03T11:15:07.089021Z", "last_modified_time": "2025-10-03T11:15:07.089034Z", "date_published": null, "start_time": "2025-10-04T07:00:00Z", "end_time": "2025-10-04T08: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": 10, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-10-03T15:00:00+03:00", "enrolment_end_time": "2025-10-04T10:00:00+03:00", "local": false, "replaced_by": null, "info_url": { "fi": "" }, "provider": { "fi": "Järjestäjä" }, "description": { "fi": "<p>Kuvaus</p>" }, "short_description": { "fi": "Kuvaus" }, "location_extra_info": { "fi": "Etupiha" }, "name": { "fi": "Otsikko" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agm2tsdgte/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66705", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@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": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/rno/", "sv": "https://www.lippu.fi/artist/rno/", "en": "https://www.lippu.fi/artist/rno/" }, "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1217520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T08:14:40.304755Z", "last_modified_time": "2025-07-09T08:14:40.304774Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774923.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1217520/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T08:14:40.166646Z", "last_modified_time": "2025-10-02T14:13:27.389439Z", "date_published": null, "start_time": "2025-10-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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C3CF2953C6380582CC35741B5D1C6481/Riku_Niemi_Orchestra_solisteinaan_Terhi_Suorlahti_Chike_Ohanwe", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C3CF2953C6380582CC35741B5D1C6481/Riku_Niemi_Orchestra_med_solisterna_Terhi_Suorlahti_Chike_Ohanwe", "en": "http://www.vuotalo.fi/en/events/event/C3CF2953C6380582CC35741B5D1C6481/Riku_Niemi_Orchestra_with_soloists_Terhi_Suorlahti_Chike_Ohanwe" }, "provider": null, "description": { "fi": "<p>Vuotalossa tutustutaan suomalaisen tangon humoristiseen puoleen, kun RNO:n kanssa lavalla esiintyvät Terhi Suorlahti ja Chike Ohanwe!</p><p>Illan aikana kuullaan kaikki suuret ja myyttiset parodiatangot Pelargoniasta Esteriin ja paljon muuta.</p><p>TV:stä ja monista eri musiikkiteattereista tutut näyttelijät <b>Terhi Suorlahti</b> (mm. Putous, Syke, Rehtori) ja <b>Chike Ohanwe</b> (mm. Aurora, Hevi Reissu, Tähdet, tähdet) suorittavat ruumiinavauksen niin suomalaiselle kuin osittain myös kansainväliselle humoristiselle tangomusiikille. Mutta onko se hauskaa...? Tule ja päätä itse!</p><p>RNO eli Riku Niemi Orchestra on vuonna 2005 perustettu rytmimusiikin ammattiorkesteri. Sen 25-henkisen orkesterikokoonpanon muodostavat big band ja jousisoitinryhmä. RNO esiintyy myös solistiorkesteri- ja kamarikokoonpanoina.</p><p>RNO on koko Suomen orkesteri. RNO:n kotipaikka on Helsinki, mutta orkesteri kiertää esiintymässä eri puolilla maata. Tähän mennessä RNO on konsertoinut kaikkiaan 135 paikkakunnalla Suomessa.</p><p>Kesto: n. 2 t sis, väliajan</p>", "sv": "<p>Nordhuset utforskar den humoristiska sidan av finsk tango när Terhi Suorlahti och Chike Ohanwe uppträder på scenen med RNO!</p><p>Kvällen kommer att innehålla alla de stora och mytomspunna paroditangolåtarna från Pelargonium till Esteri och mycket mer.</p><p>Terhi Suorlahti (bl.a. Putous, Syke, Rehtori) och Chike Ohanwe (bl.a. Aurora, Hevi Reissu, Tähdet, tähdet), som är bekanta från TV och olika musikteatrar, obducerar finsk och delvis också internationell humoristisk tangomusik. Men är det roligt...? Kom och bestäm själv!</p><p>RNO, eller Riku Niemi Orchestra, är en professionell rytmorkester som grundades 2005. 25-mannaorkestern består av ett storband och en stråksektion. RNO framträder också med soloorkestrar och kammarensembler.</p><p>RNO är orkestern för hela Finland. RNO har sin bas i Helsingfors, men orkestern turnerar över hela landet. Hittills har RNO uppträtt på 135 orter runt om i Finland.</p><p>Längd: ca 2 timmar inkl. paus</p>", "en": "<p>Vuotalo will delve into the humorous side of Finnish tango as Terhi Suorlahti and Chike Ohanwe take the stage with RNO!</p><p>The evening will feature all the great and mythical parody tango tunes from Pelargonia to Esteri and much more.</p><p>Actors Terhi Suorlahti (e.g. Putous, Syke, Rehtori) and Chike Ohanwe (e.g. Aurora, Heavy Trip, Tähdet, tähdet), known from TV and various musical theatres, will perform an autopsy on Finnish and partly also international humorous tango music. But is it funny...? Come and decide for yourself!</p><p>RNO, or Riku Niemi Orchestra, is a professional rhythm music orchestra founded in 2005. The 25-piece orchestra is made up of a big band and a string section. RNO also performs as soloist orchestra and chamber music ensembles.</p><p>RNO is an orchestra for all of Finland. They are based in Helsinki but tour all over the country. To date, RNO has performed in 135 cities and towns in Finland.</p><p>Duration: roughly 2 h, incl. intermission</p>" }, "short_description": { "fi": "Vuotalossa tutustutaan suomalaisen tangon humoristiseen puoleen, kun RNO:n kanssa lavalla esiintyvät Terhi Suorlahti ja Chike Ohanwe!", "sv": "Nordhuset utforskar den humoristiska sidan av finsk tango när Terhi Suorlahti och Chike Ohanwe uppträder på scenen med RNO!", "en": "Vuotalo will delve into the humorous side of Finnish tango as Terhi Suorlahti and Chike Ohanwe take the stage with RNO!" }, "location_extra_info": null, "name": { "fi": "Riku Niemi Orchestra solisteinaan Terhi Suorlahti & Chike Ohanwe – Suuri suomalainen tangolaulukirja vol.7: Tangon huumorintaju", "sv": "Riku Niemi Orchestra med solisterna Terhi Suorlahti & Chike Ohanwe – Den stora finska tangosångboken vol.7: Tangos sinne för humor", "en": "Riku Niemi Orchestra with soloists Terhi Suorlahti & Chike Ohanwe – The Great Finnish Tango Songbook Vol. 7: Tango’s sense of humour" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66705/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66769", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1270152, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-16T07:12:45.107214Z", "last_modified_time": "2025-07-16T07:12:45.107226Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774919.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270152/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-16T07:12:45.059933Z", "last_modified_time": "2025-10-02T13:13:10.914111Z", "date_published": null, "start_time": "2025-10-08T06:00:00Z", "end_time": "2025-10-08T11: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/433290E826D26FE59F51F1EA24C418AF/Seniorien_palvelutori_Vuotalolla_loyda_oma_tapasi_liikkua_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/433290E826D26FE59F51F1EA24C418AF/Seniorernas_servicetorg_pa_Nordhuset_hitta_ditt_eget_satt_att_motionera_", "en": "http://www.vuotalo.fi/en/events/event/433290E826D26FE59F51F1EA24C418AF/Palvelutori_senior_service_event_at_Vuotalo_find_your_own_way_to_be_active_" }, "provider": null, "description": { "fi": "<p>Tule tutustumaan alueen moninaisiin senioriystävällisiin liikuntamahdollisuuksiin, kohtaamaan ja tekemään!</p><p>Seniorien palvelutori järjestetään ensimmäistä kertaa Vuotalossa keskiviikkona 8.10. klo 9–14. Maksuton palvelutori tarjoaa kohtaamisia, mielekästä tekemistä ja tietoa vapaa-ajan mahdollisuuksista Vuosaaren alueella. Alueen yhdistykset ja toimijat esittelevät palveluitaan, pääset kysymään ja kokeilemaan.<br> <br>Ohjelmaa mm.:<br>• Seela Sellan puheenvuoro 9.45-10.30 (kuulemaan mahtuu 200 henkilöä, liput jaetaan klo 8.30 alkaen Vuotalon edustalta.)<br>• DJ Börjen SenioriDisco klo 12–14<br>• Liikuntahetkiä ja lajikokeiluja<br>• Vinkkejä liikkumiseen ja tekemistä Vuosaaren alueella<br>• Kahvitarjoilu 300 henkilölle klo 11 alkaen<br>• Esittelypisteitä – tule kysymään ja kokeilemaan!<br> <br>Aikataulu<br>Aikataulu täydentyy vielä lähempänä tapahtumaa. Muutokset mahdollisia.<br> <br>Vuosali<br>9.15–9.35 Avauspuhe apulaispormestari Maarit Vierunen (kuulemaan mahtuu max. 200 hlö, liput jaetaan klo 8.30 alkaen Vuotalon edustalta.)<br>9.45–10.30 Seela Sellan puheenvuoro (kuulemaan mahtuu max. 200 hlö, liput jaetaan klo 8.30 alkaen Vuotalon edustalta.)<br>10.45–12.00 Tauko (Sali tyhjennetään klo 10.30 alkaen, ovet aukeavat uudelleen asiakkaille klo 12.00)<br>12.00–14.00 DJ Börjen SenioriDisco<br> <br>Kirjasto<br>9.20-9.30 Urheiluhallit, seniorituntien esittely<br>9.40-9.50 Omakotisäätiön senioritoiminnan esittely<br>9.50-10.00 Vuosaaren Sydänyhdistys, toiminnan esittely<br>10.00–10.30 Anja Hinkkanen, Tarinaa Vuosaaresta maalaiskylästä metroaikaan<br>10.40–10.50 Hyvinvoiva Helsinki – miten löytää itselleen mieleistä hyvinvointia edistävää toimintaa<br>11.00-11.30 Ville Jalovaara, Vuosaaren nykyisyys ja tulevaisuus kaupunginhallituksen jäsenen näkökulmasta<br>11.35-11.55 Muistiluotsitoiminnan esittely<br>12.00–12.30 Anja Hinkkanen, Tarinaa Vuosaaresta maalaiskylästä metroaikaan<br>12.45–13.15 Gerontologinen ravitsemus ry, ravitsemusluento.<br>13.20-13.30 Folkhälsan, toiminnan esittely (ruotsiksi)</p><p>Pikkusali<br>9.00–10.30 Tasapainorata ja puristusvoimamittaus (Liikuntapalvelut)<br>11.00–11.15 Kuntotanssi (Alueliikunta)<br>11.30–11.45 Kuntoa ja voimaa arjen tueksi (Urheiluhallit )<br>12.00–12.15 Lavatanssin taikaa (Urheiluhallit)<br>12.30–12.45 Voimaa ja kehonhuoltoa pilateksesta (Urheiluhallit)<br>13.00–13.15 Tuolijumppa (Alueliikunta)<br> <br>Monitaidetila<br>10.00-11.00 Taidetyöpaja, Jadeyhteisö<br>10.00–13.00 Tuunausvinkkejä, neulonta- ja virkkausopastusta ja joulukorttien askartelua, Vuosaaren Martat<br> <br>Ulkona<br>Vuotalokävely, lähtö Vuotalon edestä klo 10.00<br>Pienellä opastuksella tutustutaan Vuotalon lähiympäristöön ja sen historiaan. Vierailemme Vuotalossa, jossa kuulet talon toiminnoista. Tutustumme erityisesti vasta remontoidun kirjaston tiloihin. Kävelyn alussa ollaan ulkona ja kävelyn kesto on noin 30 min.<br> <br>Omakotisäätiön Luontokävely, lähtö Vuotalon edestä klo 12.30<br> <br> <br>Yhteistyössä Kontulan palvelukeskus, Liikuntapalvelut, Vuosaaren sydänyhdistys, Mummon ja Vaarin-tupa toiminta/Sos lapsikylä ry, Urheiluhallit, Omakotisäätiö, Vuosaaren kirjasto, Seniori-info, Vuosaari-Seura, Vuotalo, Vuosaaren Eläkkeensaajat ry, Folkhälsan, Helander-kodit, Jade yhteisö ry, Muistiluotsitoiminta, Helsinki-Missio, Työväenopisto, Gerontologinen ravitsemus ry, Vuosaaren Martat,Stadin yhteisötalot.<br>Tapahtuma on osittain rahoitettu Euroopan unionin kertaluonteisesta elpymisvälineestä (NextGenerationEU).<br> <br>Vapaa pääsy!</p>", "sv": "<p>Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om motions- och fritidsmöjligheter i Nordsjöområdet.</p><p>eniorernas servicetorg arrangeras för första gången på Vuotalo (Onsdag 8.10. kl. 9-14). Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om fritidsmöjligheter i Nordsjöområdet.<br>Föreningar och aktörer i området presenterar sina tjänster och du kan ställa frågor och pröva på.</p><p>Program<br>Tal av Seela Sella kl. 9.45-10.30 (plats för 200 personer. Du behöver hämta gratisbiljett kl. 8.30 framför Nordhuset.)<br>DJ Börjes SeniorDisco kl. 12–14<br>Tips för motion och aktiviteter i Nordsjöområdet<br>Motionsstunder och grenförsök<br>Kaffeservering för de första 300 kl. 11.00. Antalet platser är begränsat (cirka 50), så vi ber er vänligen att vänta på er tur.<br>Presentationspunkter – du kan ställa frågor och pröva på!</p><p>Tidtabell</p><p>Nordhuset sal<br>09.15–09.35 Opening tal av Maarit Vierunen (max. 200 personer, på finska. Du behöver hämta gratisbiljett kl. 8.30 framför Nordhuset.)<br>09.45–10.30 Tal av Seela Sella (MAX. 200 personer, på finska. Du behöver hämta gratisbiljett kl. 8.30 framför Nordhuset.)<br>10.30–12.00 Uppehåll, vi måste möblera om sal en gång till.<br>12.00–14.00 DJ Börje’s SeniorDisco</p><p>Nordsjö bibliotek (Tal och föreläsningar hålls på finska)<br>09.20–09.30 Urheiluhallit Oy, presentation av seniorernas motionsklasser<br>09.40–09.50 Omakotisäätiö, presentation av senioraktiviteter<br>09.50–10.00 Presentation av Vuosaaren Sydänyhdistys ry<br>10.00–10.30 Tal av Anja Hinkkanen, Berättelser om Nordsjö.<br>10.40–10.50 Hyvinvoiva Helsinki, Föreläsning: Hur du hittar aktiviteter som främjar ditt välbefinnande.<br>11.00–11.30 Tal av Ville Jalovaara, Nordsjöns nutid och framtid ur en stadsfullmäktigeledamots perspektiv.<br>11.35–11.55 Helsingin Muistiyhdistys ry & Helsingin ja Itä-Uudenmaan Muistiluotsi, presentation av Muistiluotsitoiminta<br>12.00–12.30 Tal av Anja Hinkkanen, Berättelser om Nordsjö.<br>12.45–13.15 Gerontologinen ravitsemus ry, Föreläsning: Nutrition<br>13.20–13.30 Presentation: Folkhälsan (på Svenska)</p><p>Pikkusali<br>09.00–10.30 Idrottstjänster, Balansbana och Tryckkrafttest<br>11.00–11.15 Alueliikunta, Konditionsdans<br>11.30–11.45 Urheiluhallit Oy, Konditionsträning och styrketräning för dagliga grunder<br>12.00–12.15 Urheiluhallit Oy, Logdans magi<br>12.30–12.45 Urheiluhallit Oy, Pilates: Styrka och kroppsvård<br>13.00–13.15 Alueliikunta, Stolgymnastik</p><p>Monitaidetila<br>10.00–11.00 Jadeyhteisö ry, konstverkstad<br>10.00–13.00 Vuosaaren Martat ry, hantverktips</p><p>Utanför<br>Nordhuset walk, start framför Nordhuset kl. 10.00, cirka 30 minuter.</p><p>Vi lär känna Nordhuset (speciellt bibliotek), närmiljö och historia.<br>Omakotisäätiö, naturvandring (Start framför Nordhuset kl. 12.30)<br>I samarbete Gårdsbacka’s servicescentral, Helsingfors stad idrottstjänster, Vuosaaren sydänyhdistys, Mummon ja Vaarin-tupa toiminta/Sos lapsikylä ry, Urheiluhallit Oy, Omakotisäätiö, Nordsjö bibliotek, Seniorinfo, Vuosaari-Seura, Vuotalo, Vuosaaren Eläkkeensaajat ry, Folkhälsan, Helander-kodit, Jade yhteisö ry, Helsingin Muistiyhdistys ry & Helsingin ja Itä-Uudenmaan Muistiluotsi, Helsingfors Mission, Helsingfors finska arbetarinstitutet, Gerontologinen ravitsemus ry, Vuosaaren Martat, Stadin yhteisötalot, Kestävän kasvun hanke.<br>Evenemanget finansieras delvis av Europeiska unionens engångsinstrument för återhämtning (NextGenerationEU).</p><p>Fritt inträde!</p>", "en": "<p>The free service event will provide encounters, enjoyable activities and information about physical activity and leisure opportunities in the Vuosaari area.</p><p>Seniors service event will be produced first time at Vuotalo (Wednesday 8.10. at 9-14). The free service event will provide encounters, enjoyable activities and information about physical activity and leisure opportunities in the Vuosaari area.</p><p>Local associations and operators will be presenting their services, and you can ask questions and try things out.</p><p>Programme:<br>Speech by Seela Sella at 9.45-10.30 (in Finnish, capacity 200 people. You need to get free ticket at 8.30 am in front of the Vuosaari House.)<br>DJ Börje’s SeniorDisco at 12-14<br>Exercise sessions and introductions to different sports<br>Tips for physical activities and other things to do in the Vuosaari area<br>Coffee for the first 300 participants at 11.00. There are limited spaces (about 50), so please wait your turn<br>Info stands – ask questions and try things out!</p><p>Schedule<br>The schedule will be updated closer to the event. Changes are possible.</p><p>Vuosaari Hall<br>09.15-09.35 Opening speech by Maarit Vierunen (in Finnish, capacity 200 people. You need to get free ticket at 8.30 am in front of the Vuosaari House)<br>09.45-10.30 Speech by Seela Sella (in Finnish, capacity 200 people. You need to get free ticket at 8.30 am in front of the Vuosaari House)<br>10.30-12.00 Break, we need to rearrange the hall.<br>12.00-14.00 DJ Börje’s SeniorDisco</p><p>Library<br>09.20–09.30 Urheiluhallit Oy, Senior classes<br>09.40–09.50 Omakotisäätiö, Senior activities<br>09.50–10.00 Presentation about Vuosaaren Sydänyhdistys ry<br>10.00–10.30 Anja Hinkkanen, Stories about Vuosaari<br>10.40–10.50 Hyvinvoiva Helsinki, how to find yourself activities that promote your well-being.<br>11.00–11.30 Ville Jalovaara, The present and future of Vuosaari from the perspective of city council member.<br>11.35–11.55 Helsingin Muistiyhdistys ry & Helsingin ja Itä-Uudenmaan Muistiluotsi, presentation about muistiluotsitoiminta<br>12.00–12.30 Anja Hinkkanen, Stories about Vuosaari<br>12.45–13.15 Gerontologinen ravitsemus ry, Nutrition lecture<br>13.20–13.30 Folkhälsan, presentation about Folkhälsan (in Swedish)</p><p>Pikkusali (K-floor)<br>09.00–10.30 City of Helsinki sport services, Balance track and grip strength test.<br>11.00–11.15 Alueliikunta, Workout Dance <br>11.30–11.45 Urheiluhallit, Cardio and strength for daily basics <br>12.00–12.15 Urheiluhallit, Dance Hall dancing magic<br>12.30–12.45 Urheiluhallit, Pilates: Strength and body care<br>13.00–13.15 Alueliikunta, Chair workout</p><p>Monitaidetila (K-floor)<br>10.00–11.00 Jadeyhteisö ry, art workshop<br>10.00–13.00 Vuosaaren Martat ry, handcraft workshop</p><p>Outside<br>Vuosaari House walk (start in front of the Vuosaari House at 10.00, about 30 minutes)<br>Get to know Vuosaari House, the surroundings of Vuosaari House and the history. We will especially explore the newly renovated library facilities.<br>Omakotisäätiö: Nature Walk (Start in front of the Vuosaari House at 12.30)</p><p>In cooperation with Kontula Service centre, City of Helsinki Sport Services, Vuosaaren sydänyhdistys, Mummon ja Vaarin-tupa toiminta/Sos lapsikylä ry, Urheiluhallit Oy, Omakotisäätiö, Vuosaari library, Senior Info, Vuosaari-Seura, Vuotalo, Vuosaaren Eläkkeensaajat ry, Folkhälsan, Helander-kodit, Jade community ry, Helsingin Muistiyhdistys ry & Helsingin ja Itä-Uudenmaan Muistiluotsi, Helsinki-Missio, Helsinki Finnish Adult Education Centre, Gerontologinen ravitsemus ry, Vuosaaren Martat, Stadin yhteisötalot, Kestävän kasvun hanke.</p><p>The Event is partly funded by the European Union's one-off recovery instrument (NextGenerationEU).</p><p>Free entry!</p>" }, "short_description": { "fi": "Tule tutustumaan alueen moninaisiin senioriystävällisiin liikuntamahdollisuuksiin, kohtaamaan ja tekemään!", "sv": "Det kostnadsfria servicetorget erbjuder möten, meningsfulla aktiviteter och information om motions- och fritidsmöjligheter i Nordsjöområdet.", "en": "The free service event will provide encounters, enjoyable activities and information about physical activity and leisure opportunities in the Vuosaari area." }, "location_extra_info": null, "name": { "fi": "Seniorien palvelutori Vuotalolla – löydä oma tapasi liikkua!", "sv": "Seniorernas servicetorg på Nordhuset – hitta ditt eget sätt att motionera!", "en": "Palvelutori senior service event at Vuotalo – find your own way to be active!" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66769/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66697", "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:105/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1211367, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T13:14:19.095151Z", "last_modified_time": "2025-07-08T13:14:19.095167Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774075.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211367/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-08T13:14:19.011302Z", "last_modified_time": "2025-10-02T07:13:22.085723Z", "date_published": null, "start_time": "2025-10-16T07:00:00Z", "end_time": "2025-10-16T10: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/AD9AC122F019E40DC4172B3E29CC0CE6/Syysloman_tyopaja_Persoonallisuussaaripaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/AD9AC122F019E40DC4172B3E29CC0CE6/Verkstad_for_personlighetsoar_Hostlovsaktiviteter", "en": "http://www.malmitalo.fi/en/events/event/AD9AC122F019E40DC4172B3E29CC0CE6/Personality_Island_Workshop_Autumn_Break_Activities" }, "provider": null, "description": { "fi": "<p>Pajassa pääset rakentamaan oman saaren, joka kertoo jotain persoonallisuudestasi.</p><p>Esitteleekö ehkäpä hassuttelusaari sinun luonnettasi, kuvastaako kitarasaari harrastustasi vaiko koirasaari mielenkiinnonkohdettasi?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!</p><p>Paikka: Malmitalon parvi</p>", "sv": "<p>I verkstaden kan du bygga en egen ö som berättar något om din personlighet.</p><p>Speglar kanske en rolig ö din personlighet, en gitarrö din hobby eller en hundö ditt intresse?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm. <br>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>", "en": "<p>In the workshop, you will get to build your own island that says something about your personality.</p><p>Perhaps a goofy island reflects your personality, a guitar island your hobby or a dog island your passion?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day. <br>Free entry!<br>Location: Malmitalo gallery</p>" }, "short_description": { "fi": "Pajassa pääset rakentamaan oman saaren, joka kertoo jotain persoonallisuudestasi.", "sv": "I verkstaden kan du bygga en egen ö som berättar något om din personlighet.", "en": "In the workshop, you will get to build your own island that says something about your personality." }, "location_extra_info": null, "name": { "fi": "Syysloman työpaja: Persoonallisuussaaripaja", "sv": "Verkstad för personlighetsöar Höstlovsaktiviteter", "en": "Personality Island Workshop Autumn Break Activities" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66697/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66698", "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:105/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1211366, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T13:14:18.726665Z", "last_modified_time": "2025-07-08T13:14:18.726681Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774074.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1211366/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-08T13:14:18.636525Z", "last_modified_time": "2025-10-02T07:13:21.657777Z", "date_published": null, "start_time": "2025-10-15T12:00:00Z", "end_time": "2025-10-15T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/914630066A19896A817ED612691B1C32/Robottipaja", "sv": "http://www.malmitalo.fi/sv/evenemang/event/914630066A19896A817ED612691B1C32/Robotsmedja", "en": "http://www.malmitalo.fi/en/events/event/914630066A19896A817ED612691B1C32/Robot_Workshop" }, "provider": null, "description": { "fi": "<p>Syyslomatekemistä Tule rakentamaan kierrätysmateriaaleista oma villiin luontoon joutunut robottisi! Miten sinun robottisi sopeutuu luonnon olosuhteisiin?</p><p>Syyslomalla Malmitalolla järjestetään maksuttomia työpajoja. Luvassa on askarreltavaa ja muuta kivaa puuhaa lapsille ja perheille. Jokaiselle työpajalle on oma teemansa, joka on inspiroitunut kyseisen päivän syyslomaleffasta.</p><p>Vapaa pääsy!</p><p>Paikka: Malmitalon parvi</p>", "sv": "<p>Kom och bygg din egen robot av återvunnet material. Roboten har hamnat i den vilda naturen! Hur anpassar sig din robot till förhållandena i naturen?</p><p>Under höstlovet ordnas avgiftsfria verkstäder i Malms kulturhus. Pyssel och andra roliga aktiviteter utlovas för barn och familjer. Varje verkstad har sitt eget tema, inspirerat av den aktuella dagens höstlovsfilm.</p><p>Fritt inträde!<br>Plats: Loftet i Malms kulturhus</p>", "en": "<p>Come build your own robot, stranded in the wild, using recycled materials! How will your robot adapt to the natural environment?</p><p>During the autumn break, free workshops will be held at Malmitalo. There will be crafts and other fun activities for children and families. Each workshop has its own theme, inspired by the autumn break film of the day.</p><p>Free entry!<br>Location: Malmitalo gallery</p>" }, "short_description": { "fi": "Syyslomatekemistä Tule rakentamaan kierrätysmateriaaleista oma villiin luontoon joutunut robottisi! Miten sinun robottisi sopeutuu luonnon olosuhteisiin?", "sv": "Kom och bygg din egen robot av återvunnet material. Roboten har hamnat i den vilda naturen! Hur anpassar sig din robot till förhållandena i naturen?", "en": "Come build your own robot, stranded in the wild, using recycled materials! How will your robot adapt to the natural environment?" }, "location_extra_info": null, "name": { "fi": "Robottipaja – Syysloman työpaja", "sv": "Robotsmedja – Höstlovsaktiviteter", "en": "Robot Workshop – Autumn Break Activities" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66698/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }