Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=33
{ "meta": { "count": 21736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=34", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=32" }, "data": [ { "id": "kulke:68049", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-29T09:12:45.664604Z", "last_modified_time": "2026-01-29T09:12:45.664618Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785184.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494679/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-29T09:12:45.548303Z", "last_modified_time": "2026-03-20T01:13:02.635757Z", "date_published": null, "start_time": "2026-02-12T10:00:00Z", "end_time": "2026-02-12T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ystävällisyyden iltapäivä ikäihmisille – Ystävällisten viikko", "sv": "Vänlig eftermiddag för äldre", "en": "Afternoon of friendliness for older people" }, "provider_contact_info": null, "description": { "fi": "<p>Tuolijumppaa, seniorisirkusta, kukkakimppupaja, teatteriesitys, terveyspiste, digineuvontapiste ja paljon muuta – lämpimästi tervetuloa mukaan!</p><p>Ohjelmassa:<br>Klo 12 Tuolijumppa<br>Klo 12.30 Psykologi, psykoterapeutti Pirkko Lahti puhuu aiheesta \"Ystävällinen kohtaaminen – mielen hyvinvointia\"<br>Klo 13 Seniorisirkus-työpaja, opettajana Enrique Salas<br>Klo 13.15–14 Kukkakimppupaja – tule tekemään itsellesi kukkakimppu hävikkikukista<br>Klo 14 Q-yhteisöteatterin esitys</p><p>Lisäksi tapahtumassa on:</p><p>- Terveyspiste, jossa voit mm. mittauttaa verenpaineesi<br>- Digineuvontapiste, josta saat tietoa mm. Whatsappin käytöstä<br>- Toimijoiden esittelypisteitä<br>- Ystävällinen onnenpyörä, josta voit voittaa kivoja palkintoja</p><p>Tapahtuman järjestää Itä-Helsingin ikäverkostoon kuuluvien toimijoiden joukko.</p>", "sv": "<p>Stolgymnastik, seniorcirkus, blombukettsverkstad, teaterföreställning, hälsopunkt, digital rådgivningspunkt och mycket mer – du är varmt välkommen med!</p><p>Program: <br>Kl. 12 Stolgymnastik <br>Kl. 12.30 Psykolog, psykoterapeut Pirkko Lahti talar om ”Ett vänligt möte – sinnets välbefinnande” <br>Kl. 13 Seniorcirkus demo med Enrique Salas<br>Kl. 13.15–14 Blombukettsverkstad – kom och bind en egen blombukett av svinnblommor <br>Kl. 14.00 Q-samteaterns föreställning <br> <br>I evenemanget finns också: <br> <br>- En hälsopunkt där du bland annat kan få ditt blodtryck mätt <br>- En digital rådgivningspunkt, där du får information om hur du bland annat använder Whatsapp <br>- Aktörernas presentationspunkter <br>- Ett vänligt lyckohjul där du kan vinna fina priser<br> <br>Evenemanget ordnas av en grupp aktörer från Östra Helsingfors äldrenätverk.</p>", "en": "<p>Chair gymnastics, senior circus, bouquet workshop, theatre performance, health point, digital helpdesk and much more – you are warmly welcome to join us!</p><p>Programme: <br>12.00 Chair gymnastics <br>12.30 Psychologist, Psychotherapist Pirkko Lahti will speak on the topic of “Friendly encounters – mental wellbeing” <br>13.00 Senior circus workshop with Enrique Salas<br>13.15–14.00 Bouquet workshop – come and make your own bouquet from surplus flowers <br>14.00 Performance by Q-teatteri’s community theatre <br> <br>The event will also feature:<br> <br>- a health point where you can e.g. have your blood pressure measured <br>- a digital helpdesk where you can get information on e.g. how to use WhatsApp <br>- operators' presentation stands <br>- a friendly wheel of fortune where you can win nice prizes. <br> <br>The event is organised by a group of operators from the East Helsinki Age Network.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6CDC8D2AF9F95F92A73DB5A585E9C4A6/Ystavallisyyden_iltapaiva_ikaihmisille", "sv": "http://www.stoa.fi/sv/evenemang/event/6CDC8D2AF9F95F92A73DB5A585E9C4A6/Vanlig_eftermiddag_for_aldre_", "en": "http://www.stoa.fi/en/events/event/6CDC8D2AF9F95F92A73DB5A585E9C4A6/Afternoon_of_friendliness_for_older_people_" }, "short_description": { "fi": "Tuolijumppaa, seniorisirkusta, kukkakimppupaja, teatteriesitys, terveyspiste, digineuvontapiste ja paljon muuta – lämpimästi tervetuloa mukaan!", "sv": "Stolgymnastik, seniorcirkus, blombukettsverkstad, teaterföreställning, hälsopunkt, digital rådgivningspunkt och mycket mer – du är varmt välkommen med!", "en": "Chair gymnastics, senior circus, bouquet workshop, theatre performance, health point, digital helpdesk and much more – you are warmly welcome to join us!" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68049/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67422", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494062, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:50.376928Z", "last_modified_time": "2025-12-04T12:12:50.376946Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781123.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494062/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:50.292397Z", "last_modified_time": "2026-03-20T01:13:02.498796Z", "date_published": null, "start_time": "2026-02-12", "end_time": "2026-03-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Anne Vasko: Mummot!", "sv": "Anne Vasko: Mummot! (Mormödrar!)", "en": "Anne Vasko: Mummot!" }, "provider_contact_info": null, "description": { "fi": "<p>Mummot! juhlistaa mummoutta kaikissa sen muodoissa – iloa, lämpöä, rohkeutta ja yhdessäoloa.</p><p>Anne Vaskon gallerianäyttely perustuu kirjailija Reetta Niemelän ja kuvittaja Anne Vaskon Mummojen kirjaan! (S&S 2023), jossa mummot marssivat esiin iloisina, uteliaina ja täynnä elämänvoimaa.</p><p>Mummot! tuo kirjan maailman seinille: väriä, huumoria ja elämäniloa, mummouden monimuotoisuutta ja tahdonvoimaa. Täällä mummot keinuvat, kukkivat ja kulkevat kohti vapautta – myssyt vinossa, sydän avoinna.</p><p><b>Anne Vasko</b> on kuvittaja ja lastenkirjailija, joka on luonut visuaalisen maailman lukuisiin niin omiin kuin muiden kirjoittamiin lastenkirjoihin. Vaskon taide ammentaa arjen havainnoista, lapsen uteliaisuudesta ja ympäröivän yhteiskunnan ilmiöistä. Hän rakentaa maailmoja, joissa kuvalla on tarinan kaltainen kaari. Vaskon kuvissa yhdistyvät käsinpiirretty ja digitaalinen ilmaisu, joissa tekstuuri, rytmi ja muoto rakentavat tarinaa yhtä vahvasti kuin sanat. Hänen maailmansa on tunnistettavan poeettinen – samalla herkkä ja humoristinen, usein myös ympäristön ja luonnon merkityksiä pohtiva.</p><p>Vasko on kuvittanut ja kirjoittanut lukuisia palkittuja lastenkirjoja, joista monet ovat käännetty useille kielille. Hänen teoksiaan on julkaissut mm. Etana Editions, Tammi, WSOY, Schildts& Söderstöms, Nubeocho, Art House.</p>", "sv": "<p>Mummot! hyllar mormorskapet i alla dess former – glädje, värme, mod och samvaro.</p><p>Anne Vaskos galleriutställning baserar sig på boken Mummojen kirja (S&S 2023) av författaren Reetta Niemelä och illustratören Anne Vasko, där mormödrarna marscherar fram som glada, nyfikna och fulla av livskraft.</p><p>Mummot! visar bokens värld på väggarna: färg, humor och livsglädje, mormorsrollens mångfald och viljestyrka. Här gungar mormödrarna, de blommar och går mot friheten – med mössorna på sned och öppna hjärtan.</p><p>Anne Vasko är en illustratör och barnboksförfattare som har skapat visuella världar till många barnböcker, både egna och andras. Vaskos konst är inspirerad av vardagliga iakttagelser, ett barns nyfikenhet och fenomen i det omgivande samhället.</p><p>Hon bygger upp världar där bilden har en båge, som en berättelse. Vaskos bilder kombinerar handtecknade och digitala uttryck, där texturen, rytmen och formen bygger upp berättelsen lika starkt som orden. Hennes värld är karakteristiskt poetisk – samtidigt känslig och humoristisk, och reflekterar ofta över miljöns och naturens betydelse.</p><p>Vasko har illustrerat och skrivit ett stort antal prisbelönta barnböcker, varav många har översatts till flera språk. Hennes verk har getts ut av bland andra Etana Editions, Tammi, WSOY, Schildts& Söderstöms, Nubeocho och Art House.</p><p>Fritt inträde.</p>", "en": "<p>‘Mummot!’ (Grandmas!) celebrates grandmotherhood in all its forms – joy, warmth, courage and togetherness.</p><p>Anne Vasko's gallery exhibition is based on the book ‘Mummojen kirja!’ (S&S 2023) by author Reetta Niemelä and illustrator Anne Vasko, where grandmothers come out happy, curious and full of vitality.</p><p>‘Mummot!’ decorates the walls of the gallery with the world of books: colour, humour and joie de vivre, the diversity and willpower of grandmotherhood. Here, grandmothers sway, bloom and walk towards freedom – beanies askew, hearts open.</p><p>Anne Vasko is an illustrator and children's author who has created a visual world for numerous children's books, both her own and those written by others. Vasko's art is inspired by everyday observations, a child's curiosity and the phenomena of the society around them.</p><p>She builds worlds where images have story-like arcs. Vasko's images combine hand-drawn and digital expression, where texture, rhythm and form build a story as potently as words. Her world is recognisably poetic – at once sensitive and humorous, often reflecting on the meaning of the environment and nature.</p><p>Vasko has illustrated and written numerous award-winning children's books, many of which have been translated into several languages. Her works have been published by Etana Editions, Tammi, WSOY, Schildts & Söderstöms, Nubeocho and Art House, to name a few.</p><p>Free entry.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9991904BBBB0257941121AB7100AD4EF/Anne_Vasko_Mummot_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9991904BBBB0257941121AB7100AD4EF/Anne_Vasko_Mummot_Mormodrar_", "en": "http://www.kanneltalo.fi/en/events/event/9991904BBBB0257941121AB7100AD4EF/Anne_Vasko_Mummot_" }, "short_description": { "fi": "Mummot! juhlistaa mummoutta kaikissa sen muodoissa – iloa, lämpöä, rohkeutta ja yhdessäoloa.", "sv": "Mummot! hyllar mormorskapet i alla dess former – glädje, värme, mod och samvaro.", "en": "‘Mummot!’ (Grandmas!) celebrates grandmotherhood in all its forms – joy, warmth, courage and togetherness." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67422/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67446", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494388, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-07T10:13:10.051454Z", "last_modified_time": "2026-01-07T10:13:10.051467Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781328.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494388/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-07T10:13:09.947242Z", "last_modified_time": "2026-03-20T01:13:02.349365Z", "date_published": null, "start_time": "2026-02-12", "end_time": "2026-03-22", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luis Bustamante & Sebastián González Ruiz: The Strength of the Sun", "sv": "Luis Bustamante & Sebastián González Ruiz: The Strength of the Sun", "en": "Luis Bustamante & Sebastián González Ruiz: The Strength of the Sun" }, "provider_contact_info": null, "description": { "fi": "<p>Näyttely tarjoaa visuaalisen ja esteettisen tulkinnan Arican karnevaalista laajennettuna merkitysten alueena, jossa historia, geopolitiikka ja ruumiillistunut tieto kohtaavat.</p><p>Maalaustaidetta ja valokuvaa yhdistelevä hanke syntyi tarpeesta ymmärtää karnevaalia ei pelkästään kansanjuhlana vaan symbolisena vastarinnan tekona, joka pukee Chilen pohjoisten raja-alueiden muistin, hengellisyyden ja estetiikan sanoiksi.</p><p>Kuratoitu sisältö perustuu liikkuvien kehojen, vaatteiden sisältämien narratiivien ja maiseman tarkkaan luentaan elävänä kankaana, jolle juhla heijastetaan. Sebastián González Ruiz maalaa kohtauksia, joissa maantiede sulautuu tanssivaan anatomiaan, kun taas Luis Bustamante vangitsee dokumentaarisen objektiivinsa avulla rituaalin visuaalisen ja emotionaalisen intensiteetin ja paljastaa totuuden, joka on näytöstäkin ihmeellisempi.</p><p>Tämä yhteistyö sijoittuu kolmen valtion – Chilen, Perun ja Bolivian – yhtymäkohtaan, ja se pyrkii korostamaan karnevaalin roolia kulttuurien, kielten ja Andien maailmankatsomusten kohtaamispaikkana. Tässä yhteydessä puvut eivät ole pelkästään koristeellisia, vaan liikkuvia perimätiedon arkistoja; ja tanssiva keho on kiistanalainen alue, joka vastustaa valtiollisten rajojen määräysvaltaa.</p><p>Näyttelyssä tutkitaan, miten karnevaalin visuaaliset muodot – sen värit, rytmit ja materiaalit – muuttuvat taiteellisiksi resursseiksi, jotka mahdollistavat uusia kertomuksia identiteetistä, pakolaisuudesta ja joukkoon kuulumisesta. Tämä yhteistyössä luotu teoskokonaisuus ei ammenna kansanperinteestä tai turistien katseesta, vaan esittelee tavan katsoa karnevaalia uusin silmin elävänä kielenä ja poeettis-poliittisena tekona, joka sykkii Arican kaduilla ja Altiplanon sydämessä edelleen.</p>", "sv": "<p>Utställningen ger en visuell och estetisk tolkning av karnevalen i Arica som ett utvidgat betydelseområde där historia, geopolitik och förkroppsligad kunskap möts.</p><p>Projektet – som vävs samman av måleri och fotografi – har sin grund i behovet av att förstå karnevalen inte bara som en folklig fest, utan som en symbolisk motståndshandling som uttrycker minne, andlighet och estetik i Chiles norra gränstrakter.</p><p>Det kuratoriska initiativet bygger på en noggrann observation av kroppar i rörelse, plagg som textila berättelser och landskapet som en levande bakgrund till firandet. Sebastián González Ruiz skapar genom måleri scener där geografin smälter samman med den dansande anatomin, medan Luis Bustamante genom sin dokumentära lins fångar ritualens visuella och känslomässiga intensitet och avslöjar en sanning som går bortom spektaklet.</p><p>Samarbetet sker i skärningspunkten mellan tre nationer – Chile, Peru och Bolivia – och syftar till att lyfta fram karnevalens roll som en mötesplats mellan kulturer, språk och världsbilder från Anderna.</p><p>I det här sammanhanget är dräkterna inte bara utsmyckning utan rörliga arkiv över förfädernas kunskap, och den dansande kroppen är ett omtvistat territorium som står emot nationsgränserna.</p><p>Utställningen utforskar hur karnevalens visuella former – dess färger, rytmer och material – blir konstnärliga resurser som möjliggör nya berättelser om identitet, förflyttning och tillhörighet.</p><p>Långt från folkloristiska eller turistiska blickar erbjuder detta gemensamma verk en gest av omläsning och reterritorialisering av karnevalen som ett levande språk och som en poetisk-politisk handling som fortfarande slår på gatorna i Arica och i hjärtat av Altiplano.</p>", "en": "<p>This exhibition offers a visual and aesthetic reading of the Carnival of Arica as an expanded territory of meaning, where history, geopolitics, and embodied knowledge converge.</p><p>The project —interwoven through painting and photography— emerges from the urgency to understand the carnival not merely as a popular celebration, but as a symbolic act of resistance that articulates memory, spirituality, and aesthetics in the northern borderlands of Chile.</p><p>The curatorial proposal stems from a close observation of moving bodies, garments as textile narratives, and the landscape as a living backdrop to the celebration. Sebastián González Ruiz, through painting, constructs scenes where geography merges with dancing anatomy, while Luis Bustamante, through his documentary lens, captures the visual and emotional intensity of the ritual, revealing a truth that goes beyond spectacle.</p><p>This collaboration is situated at the intersection of three nations —Chile, Peru, and Bolivia— and seeks to highlight the carnival’s role as a space of encounter between cultures, languages, and Andean worldviews. In this context, the costumes are not mere ornamentation, but mobile archives of ancestral knowledge; and the dancing body, a contested territory that resists the impositions of national borders.</p><p>This exhibition explores how the visual forms of the carnival —its colors, rhythms, and materials— become artistic resources that allow for new narratives about identity, displacement, and belonging. Far from folkloric or touristic gazes, this joint body of work offers a gesture of rereading and reterritorializing the carnival as a living language and as a poetic-political act still beating in the streets of Arica and in the heart of the Altiplano.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9664C7436F02506DEFE73037501E31F8/Luis_Bustamante_Sebasti_n_Gonz_lez_Ruiz_The_Strength_of_the_Sun", "sv": "http://www.stoa.fi/sv/evenemang/event/9664C7436F02506DEFE73037501E31F8/Luis_Bustamante_Sebasti_n_Gonz_lez_Ruiz_The_Strength_of_the_Sun", "en": "http://www.stoa.fi/en/events/event/9664C7436F02506DEFE73037501E31F8/Luis_Bustamante_Sebasti_n_Gonz_lez_Ruiz_The_Strength_of_the_Sun" }, "short_description": { "fi": "Näyttely tarjoaa visuaalisen ja esteettisen tulkinnan Arican karnevaalista laajennettuna merkitysten alueena, jossa historia, geopolitiikka ja ruumiillistunut tieto kohtaavat.", "sv": "Utställningen ger en visuell och estetisk tolkning av karnevalen i Arica som ett utvidgat betydelseområde där historia, geopolitik och förkroppsligad kunskap möts.", "en": "This exhibition offers a visual and aesthetic reading of the Carnival of Arica as an expanded territory of meaning, where history, geopolitics, and embodied knowledge converge." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67446/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67476", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4044931", "sv": "https://www.lippu.fi/eventseries/name-4044931", "en": "https://www.lippu.fi/eventseries/name-4044931" }, "description": null, "price": { "fi": "24,80€/19,80€", "sv": "24,80€/19,80€", "en": "24,80€/19,80€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494048, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T10:12:40.692143Z", "last_modified_time": "2025-12-04T10:12:40.692160Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781452.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494048/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T10:12:40.574581Z", "last_modified_time": "2026-03-20T01:13:02.159876Z", "date_published": null, "start_time": "2026-02-11T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Roots-musiikin evoluutio: Knucklebone Oscar", "sv": "Roots-musikens evolution: Knucklebone Oscar", "en": "The evolution of roots music: Knucklebone Oscar" }, "provider_contact_info": null, "description": { "fi": "<p>Knucklebone Oscar on lahja rokkenroll -hulluudelle ja bluestaituruudelle. Kitaramiehen tavaramerkkejä on energiset keikat ja ultraviihdyttävä lavashow.</p><p>Yli 30 vuotisen uransa aikana Oscar on edustanut Suomea bluesin MM -kisoissa Memphisissä, rundannut Kiinassa, kolunnut Europan klubit laidasta laitaan, sekoillut UMK:ssa kuuman burleskishown parissa, esittänyt raakaa gospelia Tuomari Nurmion kanssa ja tähdittänyt ‘Knucklebonehead’ -teatterielokuvaa ja monia tv-ohjelmia. Oscar has done and seen it all!</p><p>Miehen viimeisin julkaisu on \"puuskutan hikoilen\" saunasinkku & video 20 000 hz -yhtyeen kanssa. 2024 julkaistiin juhla -albumi \"Uncle Knuckle\". Tämä erikoislaatuinen albumi täyttää tiukimmatkin Knucklebone -vaatimukset!</p><p>Knucklebone Oscar on omimmillaan oman bändinsä kanssa, laulajana ja armoitettuna kitaranriivaajana. Livenä repertuaarissa on voimakasta rytmibluesia, rokkenrollia ja riemastuttavaa lava-actionia monihenkisen bändin kanssa. Oscar on elämänsä vedossa!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>", "sv": "<p>Knucklebone Oscar är en gåva till rock’n’roll-galenskap och bluesvirtuositet. Energiska spelningar och en ultraunderhållande scenshow hör till gitarrmannens varumärke</p><p>Under sin över 30 år långa karriär har Oscar representerat Finland i VM-tävlingen i blues i Memphis, haft spelningar runt om i Kina, finkammat de europeiska klubbarna, deltagit i UMK (Uuden musiikin kilpailu) med en het burleskshow, framfört rå gospelmusik med Tuomari Nurmio och spelat huvudrollen i teaterfilmen ”Knucklebonehead” och i flera tv-program. Oscar has done and seen it all!</p><p>Mannens senaste ”Puuskutan hikoilen” bastusingel & video med bandet 20 000 hz. Jubileumsalbumet ”Uncle Knuckle” publicerades 2024. Detta speciella album uppfyller även de strängaste Knucklebone-kraven!</p><p>Knucklebone Oscar är som bäst med sitt eget band, som sångare och benådad gitarrist. Live består repertoaren av kraftfull rytmblues, rock’n’roll och jubelväckande scenaction med ett flermannaband. Oscar är i sitt livs bästa skick!</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>", "en": "<p>Knucklebone Oscar is a gift to the rock’n’roll craze and the blues industry. The guitarist's trademarks are his energetic gigs and ultra-entertaining stage shows.</p><p>In a career spanning more than thirty years, Oscar has represented Finland at the World Blues Championships in Memphis, toured China, performed in club after club in Europe, gotten groovy in UMK with a hot burlesque show, performed raw gospel with Tuomari Nurmio and starred in the theatre film ‘Knucklebonehead’ as well as in many TV shows. Oscar has done and seen it all!</p><p>His latest release is the sauna single ‘puuskutan hikoilen’ and its video with the band 20 000 hz. His celebratory album ‘Uncle Knuckle’ was released in 2024. This special album meets even the highest Knucklebone standards!</p><p>Knucklebone Oscar is at his best with his own band, as a singer and a celebrated guitar virtuoso. His live repertoire includes powerful rhythm blues, rock’n’roll and exhilarating stage action with his multi-member band. Oscar has never been better!</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F529202E119D90F48CBDE4F78D6EAB5B/Roots-musiikin_evoluutio_Knucklebone_Oscar", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F529202E119D90F48CBDE4F78D6EAB5B/Roots-musikens_evolution_Knucklebone_Oscar", "en": "http://www.malmitalo.fi/en/events/event/F529202E119D90F48CBDE4F78D6EAB5B/The_evolution_of_roots_music_Knucklebone_Oscar" }, "short_description": { "fi": "Knucklebone Oscar on lahja rokkenroll -hulluudelle ja bluestaituruudelle. Kitaramiehen tavaramerkkejä on energiset keikat ja ultraviihdyttävä lavashow.", "sv": "Knucklebone Oscar är en gåva till rock’n’roll-galenskap och bluesvirtuositet. Energiska spelningar och en ultraunderhållande scenshow hör till gitarrmannens varumärke", "en": "Knucklebone Oscar is a gift to the rock’n’roll craze and the blues industry. The guitarist's trademarks are his energetic gigs and ultra-entertaining stage shows." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67476/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67350", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223708/", "sv": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223708/", "en": "https://www.lippu.fi/event/kino-helios-hamnet-malmitalo-21223708/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T12:12:54.895208Z", "last_modified_time": "2026-01-20T12:12:54.895221Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781016.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T12:12:54.800222Z", "last_modified_time": "2026-03-20T01:13:02.022324Z", "date_published": null, "start_time": "2026-02-11T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Hamnet (12) – Kino Helios", "sv": "Hamnet (12) – Kino Helios", "en": "Hamnet (12) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/73C7EEA8896E8BE56A0E92F9CF4AB123/Hamnet_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/73C7EEA8896E8BE56A0E92F9CF4AB123/Hamnet_12_", "en": "http://www.malmitalo.fi/en/events/event/73C7EEA8896E8BE56A0E92F9CF4AB123/Hamnet_12_" }, "short_description": { "fi": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67350/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67735", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494497, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T13:13:35.229159Z", "last_modified_time": "2026-01-15T13:13:35.229172Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782666.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T13:13:35.086374Z", "last_modified_time": "2026-03-20T01:13:01.862405Z", "date_published": null, "start_time": "2026-02-11T15:00:00Z", "end_time": "2026-02-11T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kerro se langalla! - Ystävänpäivänkortti – Taidetauko-työpajat", "sv": "Säg det med tråd! – Alla hjärtans dag-kort – Konstpaus-verkstäder", "en": "Express yourself with yarn! – Valentine's Day card – Taidetauko art workshops" }, "provider_contact_info": null, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!</p><p>Koristellaan taidepostikortti ystävälle tai rakkaalle kirjomalla se värikkäillä puuvillalangoilla.</p><p>Omaperäinen kortti on tyylikäs ystävänpäivälahja tai kirjanmerkki.</p><p>Tämä on piikikäs menetelmä: alle 8-vuotiaat tervetuloa aikuisen seurassa.</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan ravintolassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Stoan Ravintola<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>", "sv": "<p>Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!</p><p>I Konstpaus-verkstäderna berikas din vardag med stressfria hantverkstekniker som är lätta att lära sig. Kvällste och saft serveras för deltagarna i Stoas restaurang.</p><p>Ons 11.2 Säg det med tråd! – Alla hjärtans dag-kort<br>Skapa ett kort till en vän eller hjärtevän genom att brodera det med färggrant bomullsgarn. Det unika kortet passar bra som alla hjärtans dag-present eller bokmärke. Här används vassa nålar: barn under 8 år är välkomna tillsammans med en vuxen.</p><p>Barn under 10 år arbetar tillsammans med en vuxen. Obs! Högst 40 deltagare, ca 20 i taget, får plats.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Stoas restaurang<br>Längd: 120 min. per session<br>Verkstäderna leds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan krävs. Stoa bjuder deltagarna på kvällste.</p>", "en": "<p>Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!</p><p>Taidetauko workshops enrich your everyday life with easy-to-learn, unhurried crafts. Participants will be served evening tea or juice at Stoa’s restaurant.</p><p>Wed 11 February Express yourself with yarn! – Valentine's Day card<br>Decorate an art postcard for a friend or loved one by embroidering it with colourful cotton yarn. This unique card will make an elegant Valentine's Day gift or bookmark. This is a prickly method: children under the age of eight are welcome with an adult.</p><p>Children under the age of 10 must work together with an adult. Please note! There is room for around 40 participants, 20 participants at a time.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Stoa restaurant<br>Duration: 120 min per session<br>Instructions in Finnish, French and English <br>Free entry. No advance registration required. Stoa will provide evening tea for participants.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B917284F853A0C75C28BDDE12B45BE6F/Kerro_se_langalla_-_Ystavanpaivankortti", "sv": "http://www.stoa.fi/sv/evenemang/event/B917284F853A0C75C28BDDE12B45BE6F/Sag_det_med_trad_Alla_hjartans_dag-kort", "en": "http://www.stoa.fi/en/events/event/B917284F853A0C75C28BDDE12B45BE6F/Express_yourself_with_yarn_Valentine_s_Day_card" }, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!", "sv": "Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!", "en": "Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67735/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67349", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223197/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223197/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223197/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T10:12:52.872003Z", "last_modified_time": "2026-01-20T10:12:52.872021Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781015.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T10:12:52.769673Z", "last_modified_time": "2026-03-20T01:13:01.716493Z", "date_published": null, "start_time": "2026-02-11T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "sv": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "en": "Luottomies-elokuva: Lepoloma (7) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle.</p><p>Johanilla on yksi ehto: hän haluaa autonsa mukaan. Tommi lupautuu ajamaan Johanin auton Espanjaan – yhdessä Juhiksen kanssa. Asiat eivät kuitenkaan mene aivan suunnitellusti, ja kun Johanin auto varastetaan, Tommi ja Juhis päättävät selvittää tilanteen omin avuin ja pian sankarimme syöksyvät taas kiihtyvällä vauhdilla katastrofista toiseen.</p><p>Ikäraja: 7<br>Kesto: 88 min<br>Ensi-ilta: 4.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5CE1A8AA305739AFA847A28812A2ED9D/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5CE1A8AA305739AFA847A28812A2ED9D/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/5CE1A8AA305739AFA847A28812A2ED9D/Luottomies-elokuva_Lepoloma_7_" }, "short_description": { "fi": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67349/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67475", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kyosti-makimattila-ja-ajaton-sointu-malmitalo-20915401/", "sv": "https://www.lippu.fi/event/kyosti-makimattila-ja-ajaton-sointu-malmitalo-20915401/", "en": "https://www.lippu.fi/event/kyosti-makimattila-ja-ajaton-sointu-malmitalo-20915401/" }, "description": null, "price": { "fi": "30 € / 24,80 €", "sv": "30 € / 24,80 €", "en": "30 € / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493883, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T14:13:20.475529Z", "last_modified_time": "2025-11-24T14:13:20.475545Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781448.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493883/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T14:13:20.404009Z", "last_modified_time": "2026-03-20T01:13:01.593722Z", "date_published": null, "start_time": "2026-02-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kyösti Mäkimattila ja Ajaton sointu", "sv": "Kyösti Mäkimattila ja Ajaton sointu", "en": "Kyösti Mäkimattila and Ajaton sointu orchestra" }, "provider_contact_info": null, "description": { "fi": "<p>Tule viettämään Malmitalolle sydäntalven ajaton ja lämminhenkinen tuokio ikivihreiden sävelmien ja yhtyeen oman tuotannon parissa.</p><p>Konsertti tarjoaa sävyjä tanssilavojen kiihkeistä tunnelmista kaupunkien salonkien ja klubien intiimiin hämyyn.</p><p>Kesto 2 t, sis. väliajan 20 min</p>", "sv": "<p>Kom till Malms kulturhus och fira en tidlös och varm stund mitt i kärnvintern med evergreens och bandets egen produktion</p><p>Konserten bjuder på toner från dansbanornas passionerade stämningar till det intima dunklet <br>i städernas salonger och klubbar.</p><p>Längd: 2 h, inklusive en paus på 20 min.</p>", "en": "<p>Come to Cultural Centre Malmitalo for a timeless and warm-hearted session in the heart of winter, featuring both evergreen tunes and the band's own works.</p><p>The concert offers a range of different tunes, from the frenetic fun of dance pavilions to the <br>intimate vibes of urban venues and clubs.</p><p>Duration: 2 h, incl. a 20-min intermission</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F038E4D2FF32DE0199C868E46C5EFA07/Kyosti_Makimattila_ja_Ajaton_sointu", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F038E4D2FF32DE0199C868E46C5EFA07/Kyosti_Makimattila_ja_Ajaton_sointu", "en": "http://www.malmitalo.fi/en/events/event/F038E4D2FF32DE0199C868E46C5EFA07/Kyosti_Makimattila_and_Ajaton_sointu_orchestra" }, "short_description": { "fi": "Tule viettämään Malmitalolle sydäntalven ajaton ja lämminhenkinen tuokio ikivihreiden sävelmien ja yhtyeen oman tuotannon parissa.", "sv": "Kom till Malms kulturhus och fira en tidlös och varm stund mitt i kärnvintern med evergreens och bandets egen produktion", "en": "Come to Cultural Centre Malmitalo for a timeless and warm-hearted session in the heart of winter, featuring both evergreen tunes and the band's own works." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67475/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67218", "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/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-4015639", "sv": "https://www.lippu.fi/eventseries/name-4015639", "en": "https://www.lippu.fi/eventseries/name-4015639" }, "description": null, "price": { "fi": "51,90 / 55,90 €", "sv": "51,90 / 55,90 €", "en": "51,90 / 55,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491219, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-29T11:13:53.542431Z", "last_modified_time": "2025-10-29T11:13:53.542446Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778826.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491219/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-29T11:13:53.369671Z", "last_modified_time": "2026-03-20T01:13:01.377394Z", "date_published": null, "start_time": "2026-02-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "BEATrio: Béla Fleck, Edmar Castañeda & Antonio Sanchez (US)", "sv": "BEATrio: Béla Fleck, Edmar Castañeda & Antonio Sanchez (US)", "en": "BEATrio: Béla Fleck, Edmar Castañeda & Antonio Sanchez (US)" }, "provider_contact_info": null, "description": { "fi": "<p>Banjovirtuoosi ja elävä legenda Béla Fleck Helsinkiin – BEATrio helmikuussa Savoyssa</p><p><b>Yhdysvaltalainen banjovirtuoosi Béla Fleck konsertoi 10.2. helmikuuta Helsingin Savoy-teatterissa. Bluegrass-legenda astelee suomalaisyleisön eteen osana BEATrioa, jossa soittavat myös harpisti Edmar Castañeda ja rumpali Antonio Sanchez. Pääsyliput konserttiin tulevat myyntiin pe 31.10. klo 9 lippupisteessä. Mastercard ennakkomyynti käynnistyy ke 29.10. klo 9.</b></p><p>BEATrio on instrumentaatioltaan poikkeuksellinen kokoonpano, joka perustuu Béla Fleckin, Edmar Castañedan ja Antonio Sánchezin yhteiseen musiikilliseen ilotteluun. Erilaisista taustoista tulevat muusikot tunnetaan instrumenttiensa ylivertaisina taitajina, ja uudessa yhtyeessään virtuoosit yhdistelevät vahvoja melodioita, tiheitä harmonioita ja groovaavia rytmejä. Yhtye julkaisi debyyttialbuminsa toukokuussa ja esiintyi heinäkuussa Pori Jazz -festivaalilla.</p><p>Yhtenä kaikkien aikojen banjonsoittajista tunnettu Bela Fleck on kotonaan yhtä lailla bluegrassin, klassisen musiikin, folkin kuin jazzinkin parissa. Huimat 18 Grammy-palkintoa voittanut yhdysvaltalaisartisti on tehnyt ennakkoluulottomia musiikillisia löytöretkiä jo vuosikymmenten ajan.</p><p>Kolumbialainen Edmar Castañeda on maailmanluokan harpisti, joka on esiintynyt maailman johtavissa konserttitaloissa ja tehnyt laajalti yhteistyötä niin jazz-artistien kuin latinalaisen musiikin tähtienkin kanssa. Meksikolaisrumpali Antonio Sanchez puolestaan tunnetaan muun muassa yhteistyöstään Pat Methenyn kanssa sekä nerokkaasta soundtrackista, jonka hän sävelsi ja soitti menestyselokuvaan Birdman.</p><p>BEATrio yhdistää kolme mannerta, kolme persoonaa ja yhden yhteisen rytmin. Äänellinen kokeilu löytää muotonsa ja johtaa mestarilliseen lopputulokseen.</p><p>Ovet klo 18</p><p>Ikäraja S</p><p><i>Mastercardin kortinhaltijoilla on pääsy tapahtuman ennakkomyyntiin Suomessa ke 29.10. klo 9 - pe 31.10. klo 8 välisenä aikana. Lippuja saatavilla rajoitetusti. Lue lisää osoitteesta: https://www.priceless.com/music</i></p>", "sv": "<p>Banjovirtuosen Béla Fleck kommer till Helsingfors – BEATrio på Savoy i februari</p><p>Den amerikanska banjovirtuosen Béla Fleck ger en konsert den 10 februari på Savoyteatern i Helsingfors. Bluegrasslegenden uppträder för den finländska publiken som en del av BEATrio, som även består av harpisten Edmar Castañeda och trummisen Antonio Sanchez. Biljetterna till konserten släpptes fredagen den 31 oktober kl. 9 på Lippupiste. Förköp med Mastercard inleddes fredagen den 29 oktober kl. 9.</p><p>BEATrio är sett till instrumenten en exceptionell grupp, som baserar sig på Béla Flecks, Edmar Castañedas och Antonio Sánchez gemensamma glädje i musiken. Musikerna, som kommer från olika bakgrunder, är kända som suveräna mästare på sina instrument, och i sitt nya band kombinerar virtuoserna starka melodier, täta harmonier och grooviga rytmer. Bandet släppte sitt debutalbum i maj och uppträdde på Pori Jazz i juli.</p><p>Béla Fleck är en av tidernas främsta banjospelare och känner sig lika hemma i bluegrass som i klassisk musik, folkmusik och jazz. Den amerikanska artisten, som har vunnit hela 18 Grammy Awards, har gjort fördomsfria musikaliska upptäcktsfärder i årtionden.</p><p>Colombianske Edmar Castañeda är en harpist i världsklass som har uppträtt i världens ledande konserthus och haft omfattande samarbeten med både jazzartister och stjärnor inom latinamerikansk musik. Den mexikanske trumslagaren Antonio Sanchez är känd för sina samarbeten med Pat Metheny och det briljanta soundtrack han komponerade och spelade till succéfilmen Birdman.</p><p>BEATrio förenar tre kontinenter, tre personligheter och en gemensam rytm. Ljudexperimentet hittar sin form och leder till ett mästerligt resultat.</p><p>Dörrarna öppnas kl. 18</p><p>Tillåten för alla åldrar</p>", "en": "<p>Banjo virtuoso and living legend Béla Fleck is coming to Helsinki – BEATrio to play the Savoy in February</p><p>American banjo virtuoso Béla Fleck will perform a concert on 10 February at the Savoy Theatre in Helsinki. The bluegrass legend will perform in front of a Finnish audience as part of BEATrio, which also features harpist Edmar Castañeda and drummer Antonio Sanchez. Tickets to the concert went on sale on Friday 31 October at 9.00 in the Lippupiste service. The Mastercard pre-sale started on Wednesday 29 October at 9.00.</p><p>BEATrio is an exceptional ensemble in terms of its instruments, based on the musical revelry of Béla Fleck, Edmar Castañeda and Antonio Sánchez. Coming from different backgrounds, the musicians of the trio are known as supreme masters of their instruments, and in their new band, the virtuosos combine strong melodies, dense harmonies and groovy rhythms. The band released their debut album in May and performed at Pori Jazz Festival in July.</p><p>Known as one of the all-time great banjo players, Béla Fleck is equally at home with bluegrass, classical, folk and jazz. Having won a staggering 18 Grammy Awards, the US-based musician has been making intrepid musical discoveries for decades.</p><p>Hailing from Colombia, Edmar Castañeda is a world-class harpist who has performed in the world’s foremost concert halls and collaborated extensively with jazz artists and Latin music stars alike. Mexican drummer Antonio Sanchez is known for work such as his collaboration with Pat Metheny and the brilliant soundtrack that he composed and played for the hit film Birdman.</p><p>BEATrio brings together three continents, three personalities and one shared rhythm. Sonic experimentation finds its form and leads to a masterful result.</p><p>The doors will open at 18.00</p><p>Age rating: suitable for all ages</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5BD70EAFF55E0C08CEAFB4C32D204625/BEATrio_B_la_Fleck_Edmar_Casta_eda_Antonio_Sanchez_US_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5BD70EAFF55E0C08CEAFB4C32D204625/BEATrio_B_la_Fleck_Edmar_Casta_eda_Antonio_Sanchez_US_", "en": "http://www.savoyteatteri.fi/en/events/event/5BD70EAFF55E0C08CEAFB4C32D204625/BEATrio_B_la_Fleck_Edmar_Casta_eda_Antonio_Sanchez_US_" }, "short_description": { "fi": "Banjovirtuoosi ja elävä legenda Béla Fleck Helsinkiin – BEATrio helmikuussa Savoyssa", "sv": "Banjovirtuosen Béla Fleck kommer till Helsingfors – BEATrio på Savoy i februari", "en": "Banjo virtuoso and living legend Béla Fleck is coming to Helsinki – BEATrio to play the Savoy in February" }, "location_extra_info": null, "provider": { "fi": "Live Nation Finland Oy", "sv": "Live Nation Finland Oy", "en": "Live Nation Finland Oy" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67218/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67177", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109795/", "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109795/", "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109795/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494239, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-18T08:13:38.816226Z", "last_modified_time": "2025-12-18T08:13:38.816241Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778503.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494239/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-18T08:13:38.679433Z", "last_modified_time": "2026-03-20T01:13:01.239805Z", "date_published": null, "start_time": "2026-02-10T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kino Caisa: Do-It-Yourself! Femme & Camp – Saliva-kollektiivi/Saliva collective", "sv": "Kino Caisa: Do-It-Yourself! Femme & Camp – Saliva-kollektiivi/Saliva collective", "en": "Kino Caisa: Do-It-Yourself! Femme & Camp – Saliva-kollektiivi/Saliva collective" }, "provider_contact_info": null, "description": { "fi": "<p>Lyhytelokuvia feminiinisistä fantasia- ja kauhuvisioista, täysin omaehtoisten tuotantojen ja camp-teennäisyyksien linssien läpi.</p><p>Näytöksen kaikki elokuvat ovat Euphoria Borealis ry -lyhytelokuvayhteisön kolmen päivän pituisissa kaikille avoimissa työpajoissa toteutettuja, Helsingissä kymmenen vuoden ajalta. Ydinteemoiltaan näytökseen valikoidut elokuvat käsittelevät feministisen vastakulttuurin luonnehdintaa ja itsensä itselleen luomista ja hahmottamista.</p><p>Kulttuuriseen marginaaliin, arkistojen pimentoon jääviä elokuvia ja hahmoja. Tee se itse –taiteen (tekijöiden kuin yleisönkin) kysymykset räikeiden ylilyöntien arvosta, hyvästä huonosta mausta, tosiasiallisen vilpittömyyden ja ylitsevuotavan teennäisyyden välisestä suhteesta ja lähtökohdista.</p><p>Näytöksen tuottanut Saliva-kollektiivi (Sebastian Salvation ja Vita Matiyas) peräänkuuluttaa matalan kynnyksen ja omaehtoisen taiteen tekemisen tärkeyttä ja voimaa, sen tekemisen mahdollistavan yhteisön ja yhteisen inspiraation löytämistä joskus odottamattomistakin paikoista, ja niin tekijänä kuin katsojanakin oman asennoitumisensa alati uudelleen arvioimista.</p><p>Mitä tarkoittaa “vulgaarina” pidettävä elokuvataide, erityisesti viimeisten kymmenen vuoden aikana suomalaisen vapaan elokuvakentän kontekstissa? Mikä on yliampuvan camp-teennäisyyden rooli ja arvo ”tee se itse” -elokuvissa? Miten valtavirtaelokuvaa niin yleisesti määrittelevä väkivallan kuvaus toimii omaehtoisessa elokuvassa, millä tavoin feminististen elokuvan väkivallan kuvaukset voivat erota valtavirtaväkivallasta?</p><p>Näytöksen jälkeen kolme näytöksen elokuvantekijää, Hannaleena Hauru, Maria Solodiankina ja Sandra Lola Dada keskustelevat elokuvistaan, näytöksen teemoista ja queerfeministisen omaehtoisen elokuvan merkityksestä sekä paikasta Suomen kulttuurikentällä.</p><p>Elokuvat ovat englannin- ja suomenkielisiä. Dialogi- ja kuulovammaistekstitykset (CC) ovat englanniksi. Keskustelutilaisuus tulkataan suomalaiselle viittomakielelle.</p><p>Tapahtuman kieli: englanti ja suomi <br>Kesto noin 1,5h ei väliaikaa<br>Sisältöhuomio: Näytöksen elokuvat sisältävät väkivallan ja veren kuvausta.</p>", "sv": "<p>Kortfilmer om feministiska fantasi- och skräckvisioner genom helt självständiga produktioner och camp-teatraliska linser.</p><p>Alla filmerna är gjorda under kortfilmsföreningen Euphoria Borealis tre dagar långa öppna verkstäder i Helsingfors under tio års tid. Det centrala temat i de utvalda filmerna är skildringen av en feministisk motkultur och att skapa och uppfatta sig själv.</p><p>Filmer och karaktärer som blir kvar i kulturens marginal och i mörka arkiv. Gör det själv-konstens (både konstnärernas och publikens) frågor om värdet av flagranta övertramp, bra dålig smak, relationen mellan och utgångspunkterna för verklig uppriktighet och översvallande teatraliskhet.</p><p>Saliva-kollektivet (Sebastian Salvation och Vita Matiyas), som står bakom visningen, efterlyser en omvärdering av den självständiga lågtröskelkonstens betydelse och kraft, den gemenskap som möjliggör den och gemensam inspiration som ibland kan komma från oväntade källor samt såväl konstnärernas som betraktarnas egna attityder.</p><p>Vad innebär det att filmkonst betraktas som ”vulgär”, särskilt när man ser på det finländska fria filmfältet under de tio senaste åren? Vilken roll och vilket värde har en överdriven camp-teatraliskhet i ”gör det själv”-filmer? Hur fungerar skildringar av våld, som så allmänt definieras av mainstreamfilmer, i självständiga filmer, hur kan skildringar av våld i en feministisk film skilja sig från mainstreamvåld?</p><p>Efter visningen samtalar tre av filmskaparna, Hannaleena Hauru, Maria Solodiankina och Sandra Lola Dada, om sina filmer, visningens teman samt betydelsen av queerfeministiska filmer på egna villkor och deras plats på det finländska kulturfältet.<br>Filmerna är på engelska och finska. Dialogtexterna och textningen för hörselskadade (CC) är på engelska. Diskussionen tolkas till teckenspråk.</p><p>Evenemangets språk: engelska och finska</p><p>Längd: 1 timme 30 minuter, ingen paus</p><p>Innehållsvarning: De filmer som visas innehåller våldsskildringar och blod.</p>", "en": "<p>Short films about feminine fantasy and horror visions, through the lenses of completely independent productions and camp sensibilities.</p><p>All of the films have been made during three-day workshops open to everyone, in Helsinki over a period of ten years, organized by Euphoria Borealis short film community. The core themes of the selected films deal with the characterization of feminist counterculture and the creation and perception of oneself for oneself.</p><p>Films and characters that remain on the cultural margins, hidden in the archives. Questions of do-it-yourself art (both for creators and audiences) about the value of flagrant excesses, good bad taste, the relationship between genuine sincerity and excessive affectation, and their starting points.</p><p>The screening’s producer, Saliva collective (Sebastian Salvation and Vita Matiyas), advocates the importance and power of low-threshold independent art-making, finding a community and shared inspiration that enable it, sometimes in unexpected places, and, as both creators and viewers to constantly reevaluate one’s own positionings.</p><p>What does it mean to deem certain films “vulgar”, especially in the context of Finnish independent cinema over the last ten years? What is the role and value of exaggerated camp sensibilities in DIY films? How does the depiction of violence, which so commonly defines mainstream cinema, function in independent films, and how can depictions of violence in feminist films differ from mainstream violence?</p><p>After the screening, three of the filmmakers, Hannaleena Hauru, Maria Solodiankina, and Sandra Lola Dada, will discuss their films, the themes of the screening, and the significance of queer-feminist independent film and its place in the Finnish cultural landscape.</p><p>The films are in English and Finnish. Dialogue and hearing impairment subtitles (CC) are in English. The discussion will be interpreted into Finnish sign language</p><p>Content warning: The films in the screening contain depictions of violence and blood.</p>" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/62AF4E9FFEB281A77AD5B881ADDBE56A/Kino_Caisa_Do-It-Yourself_Femme_Camp", "sv": "http://www.caisa.fi/sv/evenemang/event/62AF4E9FFEB281A77AD5B881ADDBE56A/Kino_Caisa_Do-It-Yourself_Femme_Camp", "en": "http://www.caisa.fi/en/events/event/62AF4E9FFEB281A77AD5B881ADDBE56A/Kino_Caisa_Do-It-Yourself_Femme_Camp" }, "short_description": { "fi": "Lyhytelokuvia feminiinisistä fantasia- ja kauhuvisioista, täysin omaehtoisten tuotantojen ja camp-teennäisyyksien linssien läpi.", "sv": "Kortfilmer om feministiska fantasi- och skräckvisioner genom helt självständiga produktioner och camp-teatraliska linser.", "en": "Short films about feminine fantasy and horror visions, through the lenses of completely independent productions and camp sensibilities." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67177/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67914", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/sv/event/helsingin-kulttuurikeskus-vuotalo-tisdagsmatine-bow-waves-linnun-lailla-som-faageln-vuotalo-21151088/", "sv": "https://www.lippu.fi/sv/event/helsingin-kulttuurikeskus-vuotalo-tisdagsmatine-bow-waves-linnun-lailla-som-faageln-vuotalo-21151088/", "en": "https://www.lippu.fi/sv/event/helsingin-kulttuurikeskus-vuotalo-tisdagsmatine-bow-waves-linnun-lailla-som-faageln-vuotalo-21151088/" }, "description": null, "price": { "fi": "10 € / 8 €", "sv": "10 € / 8 €", "en": "10 € / 8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494343, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-31T12:12:52.670960Z", "last_modified_time": "2025-12-31T12:12:52.670974Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780414.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494343/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2025-12-31T12:12:52.536498Z", "last_modified_time": "2026-03-20T01:13:01.088037Z", "date_published": null, "start_time": "2026-02-10T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Marianne Maans & Jaakko Ruola – Skärgårdstoner och -landskap", "sv": "Marianne Maans & Jaakko Ruola – Skärgårdstoner och -landskap", "en": "Marianne Maans & Jaakko Ruola – Skärgårdstoner och -landskap" }, "provider_contact_info": null, "description": { "fi": "<p>Maagisessa konsertissa yhdistyvät Marianne Maansin musisointi ja Jaakko Ruolan videoteokset saaristoluonnosta.</p><p>Tule ihailemaan saariston sävyjä ja maisemia visuaalisen konsertin muodossa!</p><p>Konsertin musiikki on saanut inspiraationsa merestä, purjehduksesta ja saariston kansanmusiikista. Ohjelma koostuu sekä uusista sävellyksistä että perinteisistä melodioista, jotka on sovitettu laululle ja viululle. Saaristo on osa arvokasta Itämeren aluetta, ja konsertti muistuttaa meitä valtameriemme suojelun tärkeydestä.</p><p>Luontokuvaaja Jaakko Ruola on kuvannut videomateriaalia dronella viimeisten kymmenen vuoden aikana. Kuvat esittelevät Saariston ainutlaatuista luontoa ja maisemaa eri vuodenaikoina. Videot on luotu erityisesti Marianne Maansin \"Bow Waves music\" -teokselle ja sisältää kuvia merestä, luonnosta, saaristosta, saarista, maisemista, säästä ja tuulesta.</p><p>Marianne Maansin viulu ja laulu sekä Jaakko Ruolan monipuolinen video luovat nautinnollisen kokonaisuuden, joka uudella tavalla korostaa Saaristomeren ja sen maiseman tunnelmia kaikessa monimuotoisuudessaan ja kauneudessaan.<br>Esitys tarjoaa kokonaisvaltaisen kokemuksen, joka kutsuu ymmärtämään musiikillista kulttuuriperintöämme sekä ainutlaatuista Saaristomerta ja Itämerta. Konsertti sopii kaikenikäisille.</p><p>Marianne Maans, MuM, on monipuolinen ammattikansanmuusikko, joka esiintyy soolona ja erilaisissa kokoonpanoissa. Suomenruotsalainen kansanmusiikki on hänen erikoisalaansa, ja hänen osallistumisensa ulottuu nykymusiikkityyleihin ja argentiinalaiseen tangoon. Saaristo ja kansanpurjehdus ovat hänen intohimojaan!</p><p>Taloustieteilijä Jaakko Ruola on dokumentoinut Saaristomerta kuvin ja elokuvin jo kahdenkymmenen vuoden ajan. Meren ainutlaatuinen maisema ja luonto, tunnelmat ja sää kaikkina vuodenaikoina ja vuorokauden aikoina ovat hänelle vahva inspiraation lähde. Myös saaristoon ja sen kulttuuriin liittyvät kysymykset ovat lähellä hänen sydäntään.</p><p>Marianne Maans: Viulu ja laulu<br>Jaakko Ruola: Video<br>Kesto: noin 55 min<br>Kielet: ruotsi ja suomi</p>", "sv": "<p>En förtrollande konserthelhet med musik spelad av musiker Marianne Maans (violin och sång) till videohelhet skapad av naturfotograf Jaakko Ruola.</p><p>Musiken i konserten har hämtat inspiration från havet, segling med allmogebåt och skärgårdens folkmusik. Helheten består av både nya kompositioner och traditionella melodier arrangerade för sång och violin. Skärgårdshavet är en del av det värdefulla Östersjöområdet och konserten påminner oss om det viktiga i att värna om våra hav.</p><p>Videomaterialet har filmats med drone under de senaste tio åren av naturfotografen Jaakko Ruola. Bilderna visar det unika Skärgårdshavets natur och landskap under olika årstider. Videon har skapats särskilt till Marianne Maans’ ”Bow Waves-musik” och innehåller bilder av havet, naturen, skärgården, öar, landskap, väder och vind.</p><p>Med Marianne Maans’ violin och sång samt Jaakko Ruolas mångsidiga videon skapas en njutbar helhet som på ett nytt sätt lyfter fram stämningar från Skärgårdshavet och dess landskap i all sin mångfald och skönhet.</p><p>BOW WAVES – SOM FÅGELN bjuder på en helhetsupplevelse som inbjuder till insikt och förståelse för vårt musikaliska kulturarv samt vårt unika Skärgårdshav och Östersjön. Konserten passar för alla åldrar.</p><p>Marianne Maans, MuM, är en mångsidig professionell folkmusiker som uppträder solo och med olika ensembler. Den finlandssvenska folkmusiken är hennes specialitet och hennes engagemang sträcker sig till samtida musikstilar och argentinsk tango. Skärgården och allmogesegling hör till hennes passioner!</p><p>Jaakko Ruola, ekonom, har dokumenterat Skärgårdshavet i bild och film under redan tjugo års tid. Havets unika landskap och natur, stämningar och väder under årets och dygnets alla tider, är en stark inspirationskälla för honom. Även frågor gällande skärgården och skärgårdskulturen ligger honom varmt om hjärtat. <br>Marianne Maans: Violin och sång<br>Jaakko Ruola: Video</p><p>Längd: 55 min<br>Språk: svenska och finska</p>", "en": "<p>This magical concert will combine Marianne Maans’s music and Jaakko Ruola’s video works about the archipelago nature of Helsinki.</p><p>Come admire the shades and landscapes of the archipelago in the form of a visual concert!</p><p>The music of the concert was inspired by the sea, sailing and island folk music. The programme consists of both new compositions and traditional melodies arranged for vocals and violin. The archipelago is part of the precious Baltic Sea region, and the concert reminds us of the importance of protecting our oceans.</p><p>Nature photographer Jaakko Ruola has been shooting video footage with a drone for the past ten years. The imagery shows the unique nature and landscape of the archipelago at different times of the year. The videos were created especially for Marianne Maans’s work Bow Waves Music and include imagery of the sea, nature, the archipelago, islands, landscapes, weather and the wind.</p><p>Marianne Maans’s violin and vocals and Jaakko Ruola’s versatile video footage form an enjoyable work that highlights the atmosphere of the Archipelago Sea and its landscape in all of its diversity and beauty in a new way.<br>The performance will provide a comprehensive experience, inviting the audience to understand our musical heritage and the unique Archipelago Sea and Baltic Sea. The concert is suitable for all ages.</p><p>Marianne Maans, also known as MuM, is a versatile professional folk musician who performs solo and in various ensembles. She specialises in Finnish-Swedish folk music, and her participation extends to contemporary music styles and Argentinian tango. The archipelago and folk sailing are her passions!</p><p>Economist Jaakko Ruola has been documenting the Archipelago Sea in images and on video for twenty years. The unique landscape and nature of the sea, the atmospheres and the weather at all times of the year and day form a strong source of inspiration for him. Matters related to the archipelago and its culture are also close to his heart.</p><p>Marianne Maans: Violin and vocals<br>Jaakko Ruola: Video<br>Duration: roughly 55 min<br>Languages: Swedish and Finnish</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BC789324C545CE6DB57ADC17183D6C22/Marianne_Maans_Jaakko_Ruola", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BC789324C545CE6DB57ADC17183D6C22/Marianne_Maans_Jaakko_Ruola", "en": "http://www.vuotalo.fi/en/events/event/BC789324C545CE6DB57ADC17183D6C22/Marianne_Maans_Jaakko_Ruola" }, "short_description": { "fi": "Maagisessa konsertissa yhdistyvät Marianne Maansin musisointi ja Jaakko Ruolan videoteokset saaristoluonnosta.", "sv": "En förtrollande konserthelhet med musik spelad av musiker Marianne Maans (violin och sång) till videohelhet skapad av naturfotograf Jaakko Ruola.", "en": "This magical concert will combine Marianne Maans’s music and Jaakko Ruola’s video works about the archipelago nature of Helsinki." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67914/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68040", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494666, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-28T14:13:59.972739Z", "last_modified_time": "2026-01-28T14:13:59.972753Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784487.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494666/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-28T14:13:59.872060Z", "last_modified_time": "2026-03-20T01:13:00.946306Z", "date_published": null, "start_time": "2026-02-10T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ivar Bremer: Robin i hooden", "sv": "Ivar Bremer: Robin i hooden", "en": "Ivar Bremer: Robin i hooden" }, "provider_contact_info": null, "description": { "fi": "<p>Ketä vastaan voimme nousta, kun meillä ei ole enää yhtä ainoaa ahnetta kuningasta?</p><p>Kuinka voimme piiloutua julmalta sheriffiltä, kun hän on jokaisen kulman takana?<br>Kuinka voimme antaa köyhille, kun emme voi enää ottaa rikkailta?<br>Kuinka voimme taistella pahuutta vastaan?</p><p>Älä pelkää! Kuiskitaan, että Robin Hood kuljeskelee yhä kaduillamme. Ja hän, jos kuka, saattaa tietää vastaukset kysymyksiimme! Robin tulee apuun – hoodissa lähellä sinua!</p><p>Kesto: 30 min<br>Kieli: ruotsi</p>", "sv": "<p>Vem kan vi göra motstånd mot då vi inte längre har någon enstaka girig kung?</p><p>Hur kan vi gömma oss från den grymma sheriffen då han finns bakom varje hörn?<br>Hur kan vi ge åt de fattiga då vi inte längre kan ta från de rika?<br>Hur kan vi kämpa mot ondskan?<br>Var inte rädd! Det viskas att Robin Hood ännu strövar omkring på våra gator. Och han om nån kan ha svar på våra frågor! Robin kommer till räddningen i en hood nära dig!</p><p>Längd: 30 min<br>Språk: svenska</p>", "en": "<p>Who can we resist when we no longer have a single greedy king?</p><p>How can we hide from the cruel sheriff when he lurks around every corner?<br>How can we give to the poor when we can no longer take from the rich?<br>How can we fight against evil?<br>Do not be afraid! It is whispered that Robin Hood still roams our streets. And if anyone has the answers to our questions, it is he! Robin comes to the rescue—in a hood near you!</p><p>Duration: 30 min<br>Language: Swedish</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/B068695F36CBCCF6821B75F9BC3949E7/Ivar_Bremer_Robin_i_hooden", "sv": "http://www.vuotalo.fi/sv/evenemang/event/B068695F36CBCCF6821B75F9BC3949E7/Ivar_Bremer_Robin_i_hooden", "en": "http://www.vuotalo.fi/en/events/event/B068695F36CBCCF6821B75F9BC3949E7/Ivar_Bremer_Robin_i_hooden" }, "short_description": { "fi": "Ketä vastaan voimme nousta, kun meillä ei ole enää yhtä ainoaa ahnetta kuningasta?", "sv": "Vem kan vi göra motstånd mot då vi inte längre har någon enstaka girig kung?", "en": "Who can we resist when we no longer have a single greedy king?" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68040/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67454", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3873721", "sv": "https://www.lippu.fi/eventseries/name-3873721", "en": "https://www.lippu.fi/eventseries/name-3873721" }, "description": null, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493832, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-18T11:13:15.694356Z", "last_modified_time": "2025-11-18T11:13:15.694371Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781421.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493832/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T11:13:15.617227Z", "last_modified_time": "2026-03-20T01:13:00.753093Z", "date_published": null, "start_time": "2026-02-09T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!", "sv": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Slutsåld!", "en": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Sold out!" }, "provider_contact_info": null, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”<br> <br>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/00419EE5AC77D862644A4EE7A7FA39C1/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/00419EE5AC77D862644A4EE7A7FA39C1/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "en": "http://www.savoyteatteri.fi/en/events/event/00419EE5AC77D862644A4EE7A7FA39C1/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki" }, "short_description": { "fi": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "location_extra_info": null, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67454/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67600", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3873721", "sv": "https://www.lippu.fi/eventseries/name-3873721", "en": "https://www.lippu.fi/eventseries/name-3873721" }, "description": null, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-24T15:12:35.635751Z", "last_modified_time": "2025-11-24T15:12:35.635767Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782007.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-24T15:12:35.542192Z", "last_modified_time": "2026-03-20T01:13:00.545521Z", "date_published": null, "start_time": "2026-02-08T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!", "sv": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Slutsåld!", "en": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Sold out!" }, "provider_contact_info": null, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”<br> <br>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/BA8E90BB1932AF32A9BF50534CA355E1/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/BA8E90BB1932AF32A9BF50534CA355E1/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "en": "http://www.savoyteatteri.fi/en/events/event/BA8E90BB1932AF32A9BF50534CA355E1/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki" }, "short_description": { "fi": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "location_extra_info": null, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67600/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67730", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sidequestaddict-the-chronicles-of-asidequestaddict-the-madness-of-infinite-potential-4040941/" }, "description": null, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494061, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:49.885686Z", "last_modified_time": "2025-12-04T12:12:49.885702Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780615.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494061/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:49.806448Z", "last_modified_time": "2026-03-20T01:13:00.406661Z", "date_published": null, "start_time": "2026-02-08T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential", "sv": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential", "en": "The Chronicles of a Sidequest Addict & The Madness of Infinite Potential" }, "provider_contact_info": null, "description": { "fi": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>1 h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p><p>Kheba Tourayn englanninkielinen esitys. Sidequest Addict on raju ja tunteikas matka, joka yhdistää teatterin, spoken wordin ja kovaksi hiotun rohkeuden amerikkalaisen unelman etsinnässä.</p><p>Käsikirjoitus ja esiintyjä: Kheba Touray<br>Ohjaus: Daniel Virtanen<br>Kesto: noin 1 tunti, ei väliaikaa<br>Kieli: englanti</p>", "sv": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>~1h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p>", "en": "<p>Take a nice seat, and let me tell you a story...</p><p>it was a Friday night, and I was feelin hella horny</p><p>see I was chilling with the boys, yea you know how we movin,</p><p>coolin and foolin, but I swear this... is a movie</p><p>it was right around dusk, we were chilling at the crib</p><p>playing drinking games, yea you know what it is...</p><p>Then all of a sudden --</p><p>Charlie's phone starts to ring...<br> <br>A fierce and soulful ride mixing theater, spoken word and bare-knuckle badassery on the road to find the American Dream.</p><p>~1h Solo Play by Kheba Touray</p><p>Kheba Touray is an Afro-Nordic actor (FIA) and writer based in Helsinki. After training in Miami Acting Studio and Los Angeles, he's worked in a range of international projects, from working with Hollywood directors to voice acting for Disney Channel and Warner Bros. Alongside acting, he leads a film production company dedicated to fresh, urban and character-driven stories. In his work, Kheba leans towards unpredictability, rhythm, and honesty.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C3A94141E733BF4AD3D709CFAB95ECD/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential", "sv": "http://www.stoa.fi/sv/evenemang/event/5C3A94141E733BF4AD3D709CFAB95ECD/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential", "en": "http://www.stoa.fi/en/events/event/5C3A94141E733BF4AD3D709CFAB95ECD/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential" }, "short_description": { "fi": "Take a nice seat, and let me tell you a story...", "sv": "Take a nice seat, and let me tell you a story...", "en": "Take a nice seat, and let me tell you a story..." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67730/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67713", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/wonderground-company-shadows-of-the-mind-4039607/" }, "description": null, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494033, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T14:13:07.290527Z", "last_modified_time": "2025-12-03T14:13:07.290538Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780609.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494033/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T14:13:07.179548Z", "last_modified_time": "2026-03-20T01:13:00.250951Z", "date_published": null, "start_time": "2026-02-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Wonderground Company: Shadows of the Mind", "sv": "Wonderground Company: Shadows of the Mind", "en": "Wonderground Company: Shadows of the Mind" }, "provider_contact_info": null, "description": { "fi": "<p>Shadows of the Mind kertoo tarinan ihmisestä ja hänen varjostaan... tai ehkä tarinan varjosta ja hänen ihmisestään.</p><p>Kuun mystisessä maastossa todistamme intiimin kohtaamisen. Poissaoleva olento muuttuu ruumiiksi, varjo ahmii omistajansa. Aivan kuten majakan tai kuun pimeä puoli, varjot ovat näkymätön läsnäolo. Se osa, jota emme voi tai halua nähdä, piilotettu olemus. <br> <br>Jos voisit kohdata oman varjosi, mitä löytäisit?</p><p>Kesto: noin 50 minuuttia<br>Kieli: sanaton<br>Ikäsuositus: 8+<br> <br><b>Teostiedot:</b><br>Konsepti ja koreografia: Roser Tutusaus ja Tom Weksler <br>Tila- ja pukusuunnittelu: Roser Tutusaus ja Tom Weksler <br>Tanssi ja kanssakoreografia: Janne Aspvik ja Misa Lommi <br>Äänisuunnittelu: Miki Brunou <br>Valosuunnittelu: Anttoni Halonen <br>Tuotanto: Janne Aspvik yhteistyössä Wonderground Companyn kanssa <br> <br>Tukijat: Svenska Kulturfonden, Stiftelsen Tre Smeder, Taiteen <br>edistämiskeskus ja Jenny ja Antti Wihurin rahasto <br>Valokuvat: Mika Haaranen</p>", "sv": "<p>Shadows of the Mind berättar historien om en människa och dess skugga... eller kanske historien om en skugga och dess människa.</p><p>I ett mystiskt månterritorium bevittnar vi ett intimt möte. En frånvarande varelse förvandlas till en kropp, en skugga slukar sin ägare. Precis som baksidan av fyren eller månens mörka sida är skuggor den osynliga närvaron. Den del vi inte kan eller vill se, den dolda essensen.</p><p>Om du kunde möta din egen skugga, vad skulle du upptäcka?</p><p>Längd: 50 min<br>Åldersrekommendation: 8+<br> <br>Koncept och koreografi: Roser Tutusaus och Tom Weksler <br>Dekor och kostym: Roser Tutusaus och Tom Weksler <br>Dans och samkoreografi: Janne Aspvik och Misa Lommi <br>Ljuddesign: Miki Brunou <br>Ljusdesign: Anttoni Halonen <br>Produktion: Janne Aspvik i samarbete med Wonderground Company</p><p>Stöds av: Svenska Kulturfonden, Stiftelsen Tre Smeder, Centret för <br>konstfrämjande och Jenny ja Antti Wihurin rahasto <br>Foton: Mika Haaranen</p><p>Det spanska Wonderground Company har skapat en föreställning i samarbete med en finsk arbetsgrupp, som kommer att ha premiär i Teatersalen på Stoa i Helsingfors i februari 2026. Gruppens konstnärliga ledare, Roser Tutusaus och Tom Weksler, utforskar kopplingen mellan det naturliga, det artificiella och det kulturella i sitt konstnärliga arbete.</p><p>Shadows of the Mind är ett poetiskt mångtydigt verk för två dansare, som bygger på rörelsepraktiken Movement Archery, skapad av Tutusaus och Weksler. Praktiken kombinerar bland annat kampsport, fysisk teater, butoh, improvisation, partnering, meditation och akrobatik.</p>", "en": "<p>Shadows of the Mind tells the story of a human and their shadow... or maybe the story of a shadow and their human.</p><p>In a lunar mystical territory, we witness an intimate encounter. An absent being transforms into a body, a shadow devours its owner. Just like the back of the lighthouse or the dark side of the moon, shadows are the invisible presence. The part we can't or don't want to see, the hidden essence. <br> <br>If you could confront your own shadow, what would you discover? <br> <br>Duration: 50 min<br>Age recommendation: 8+<br>Language: none</p><p>Concept and choreography: Roser Tutusaus and Tom Weksler <br>Stage and costume design: Roser Tutusaus and Tom Weksler <br>Dance and co-choreography: Janne Aspvik and Misa Lommi <br>Sound design: Miki Brunou <br>Light design: Anttoni Halonen <br>Production: Janne Aspvik in collaboration with Wonderground Company</p><p>Supported by: Swedish Cultural Foundaton in Finland, Stiftelsen Tre <br>Smeder, Arts Promoton Centre Finland and Jenny and Antti Wihuri <br>Foundation <br>Photos: Mika Haaranen</p><p>The Spanish Wonderground Company has created a performance in collaboration with a Finnish working group, which will premiere at the Stoa Theatre Hall in Helsinki in February 2026. The group's artistic directors, Roser Tutusaus and Tom Weksler, explore the connection between the natural, the artificial, and the cultural in their artistic work.</p><p>Shadows of the Mind is a poetic, multi-layered work for two dancers, drawing on the movement language of Movement Archery, created jointly by Tutusaus and Weksler. The practice combines martial arts, physical theater, butoh, improvisation, partnering, meditation, and acrobatics, among other things.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/ACFB49476E8FCD4CAFB662EFD5C2FF35/Wonderground_Company_Shadows_of_the_Mind", "sv": "http://www.stoa.fi/sv/evenemang/event/ACFB49476E8FCD4CAFB662EFD5C2FF35/Wonderground_Company_Shadows_of_the_Mind", "en": "http://www.stoa.fi/en/events/event/ACFB49476E8FCD4CAFB662EFD5C2FF35/Wonderground_Company_Shadows_of_the_Mind" }, "short_description": { "fi": "Shadows of the Mind kertoo tarinan ihmisestä ja hänen varjostaan... tai ehkä tarinan varjosta ja hänen ihmisestään.", "sv": "Shadows of the Mind berättar historien om en människa och dess skugga... eller kanske historien om en skugga och dess människa.", "en": "Shadows of the Mind tells the story of a human and their shadow... or maybe the story of a shadow and their human." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67713/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67453", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3873721", "sv": "https://www.lippu.fi/eventseries/name-3873721", "en": "https://www.lippu.fi/eventseries/name-3873721" }, "description": null, "price": { "fi": "22,80-38,90 €", "sv": "22,80-38,90 €", "en": "22,80-38,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493831, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-18T11:13:15.391894Z", "last_modified_time": "2025-11-18T11:13:15.391911Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781420.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493831/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T11:13:15.284746Z", "last_modified_time": "2026-03-20T01:13:00.064035Z", "date_published": null, "start_time": "2026-02-08T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Loppuunmyyty! / Sold out!", "sv": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Slutsåld!", "en": "Jumppatytöt: Havukainen - Hyvönen - Lahdenmäki – Sold out!" }, "provider_contact_info": null, "description": { "fi": "<p>Jumppatytöt on esitys joukkuevoimistelusta.</p><p>Se on entisten voimistelijoiden matka menneisiin ja nykyisiin kehoihin – harjoittelun, kilpailun, vertailun, arvioinnin, ilon, kauneuden, yhteisöllisyyden ja vertaisuuden äärelle.<br>Esitys on oodi suomalaiselle naisvoimistelulle ja kaikille, jotka ovat joskus harjoitelleet niin, että suussa maistuu metalli.<br>Erityiskiitos päiväkirjoille vuosina 1998-2009 ja tytöille, jotka niitä jaksoivat raapustaa ja häpeästä huolimatta säilyttää.</p><p>“NAUTTIKAA!”<br> <br>Jumppatytöt kiertueen tekijätiedot:</p><p>Teksti, ohjaus, dramaturgia, esiintyminen: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografia: Antton Laine ja työryhmä<br>Äänisuunnittelu: Roy Boswell, Oscar Fagerudd ja työryhmä<br>Video: Työryhmän kotivideoista ja arkistomateriaaleista koostanut Liisa Mudist<br>Kiertueen valosuunnittelu: Heikki Paasonen<br>Kiertueen skenografia: Heikki Paasonen ja työryhmä<br>Kiertueen teknikot: Oscar Fagerudd, Aleksi Karjalainen ja Pinja Kokkonen<br>Kiertueen tour manager: Jukka Siurua<br>Kiertueen tuotanto: Ella Lahdenmäki ja työryhmä<br>Esityskuvat: Jukka Hämeenniemi / @agg_dad Juliste: Jaakko Pietiläinen</p><p>Suositusikäraja: K-12<br>Esityksen kesto: 1 h 45 min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Esitystä ovat tukeneet: Kansan sivistysrahasto (presidentti Tarja Halosen rahasto), Ida Aalberg -säätiö (Petra Uexküllin rahasto), Samuel Huberin taidesäätiö, Helsingin kaupunki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>", "sv": "<p>Jumppatytöt är en föreställning om estetisk truppgymnastik.</p><p>Den beskriver tidigare gymnasters resa till sina tidigare och nuvarande kroppar – träning, tävling, jämförelser, bedömning, glädje, skönhet, gemenskap och kamratskap.<br>Föreställningen är en hyllning till den finländska damgymnastiken och till alla som någon gång tränat så att de fått blodsmak i munnen.<br>Ett särskilt tack till dagböckerna från 1998–2009 och till de flickor som orkade skriva i dem och behöll dem trots skammen.</p><p>”NJUT!”</p><p>Om skaparna av Jumppatytöt-turnén:</p><p>Text, regi, dramaturgi, framförande: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Koreografi: Antton Laine och en arbetsgrupp<br>Ljuddesign: Roy Boswell, Oscar Fagerudd och en arbetsgrupp<br>Video: Liisa Mudist har sammanställt arbetsgruppens hemmavideor och arkivmaterial<br>Ljusdesign för turnén: Heikki Paasonen<br>Turnéns scenografi: Heikki Paasonen och en arbetsgrupp<br>Tekniker under turnén: Oscar Fagerudd, Aleksi Karjalainen och Pinja Kokkonen<br>Tour manager för turnén: Jukka Siurua<br>Turnéproduktion: Ella Lahdenmäki och en arbetsgrupp<br>Bilder från föreställningen: Jukka Hämeenniemi/@agg_dad Juliste: Jaakko Pietiläinen</p><p>Åldersrekommendation: K-12<br>Föreställningens längd: 1 h 45 min, ingen paus</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Föreställningen har fått stöd av: Folkets Kulturfond (president Tarja Halonens fond), Ida Aalberg-stiftelsen (Petra Uexkülls fond), Samuel Hubers konststiftelse, Helsingfors stad, Finska Kulturfonden Birkaland, Finska Kulturfonden Nyland, Finska Kulturfonden Egentliga Finland</p>", "en": "<p>Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics.</p><p>It is a journey of former gymnasts into past and present bodies – into training, competition, comparison, evaluation, joy, beauty, communality and peerage.<br>The performance is an ode to Finnish women’s gymnastics and to everyone who has ever practised until they can taste metal in their mouth.<br>Special thanks to diary entries from 1998–2009 and the girls who kept writing them and held onto them despite the embarrassment.</p><p>“ENJOY!”</p><p>Jumppatytöt tour creative team:</p><p>Script, direction, dramaturgy, performance: Katariina Havukainen, Inkeri Hyvönen, Ella Lahdenmäki<br>Choreography: Antton Laine and the team<br>Sound design: Roy Boswell, Oscar Fagerudd and the team<br>Video: Compiled by Liisa Mudist from the team’s home videos and archival material<br>Lighting design for the tour: Heikki Paasonen<br>Scenography for the tour: Heikki Paasonen and the team<br>Tour technicians: Oscar Fagerudd, Aleksi Karjalainen and Pinja Kokkonen<br>Tour manager: Jukka Siurua<br>Tour production: Ella Lahdenmäki and the team<br>Performance images: Jukka Hämeenniemi / @agg_dad Poster: Jaakko Pietiläinen</p><p>Minimum age recommendation: 12<br>Performance duration: 1 h 45 min, no intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p><p>The show is supported by: People’s Education Fund (President Tarja Halonen Fund), Ida Aalberg Foundation (Petra Uexküll Fund), Samuel Huber Art Foundation, City of Helsinki, SKR Pirkanmaa, SKR Uusimaa, SKR Varsinais-Suomi</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0B727548A0DF253F14E3F533F2B3F2AD/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0B727548A0DF253F14E3F533F2B3F2AD/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki", "en": "http://www.savoyteatteri.fi/en/events/event/0B727548A0DF253F14E3F533F2B3F2AD/Jumppatytot_Havukainen_-_Hyvonen_-_Lahdenmaki" }, "short_description": { "fi": "Jumppatytöt on esitys joukkuevoimistelusta.", "sv": "Jumppatytöt är en föreställning om estetisk truppgymnastik.", "en": "Jumppatytöt (‘Gymnastics Girls’) is a performance about team gymnastics." }, "location_extra_info": null, "provider": { "fi": "Jumppatytöt ry", "sv": "Jumppatytöt ry", "en": "Jumppatytöt ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67453/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66933", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3964957", "sv": "https://www.lippu.fi/eventseries/name-3964957", "en": "https://www.lippu.fi/eventseries/name-3964957" }, "description": null, "price": { "fi": "42,90-52,60 €", "sv": "42,90-52,60 €", "en": "42,90-52,60 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490583, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-02T06:14:07.689557Z", "last_modified_time": "2025-09-02T06:14:07.689575Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776920.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-02T06:14:07.442374Z", "last_modified_time": "2026-03-20T01:12:59.855181Z", "date_published": null, "start_time": "2026-02-07T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Desplante - Eduardo Guerrero – Helsingin XXV flamencofestivaali - XXV Festival Flamenco de Helsinki", "sv": "Desplante - Eduardo Guerrero – XXV Festival Flamenco de Helsinki", "en": "Desplante - Eduardo Guerrero – XXV Festival Flamenco de Helsinki" }, "provider_contact_info": null, "description": { "fi": "<p>Helsingin flamencofestivaalin pääesiintyjänä nähdään yksi flamencotanssin tämän hetken suurista nimistä, uskalias uudistaja Eduardo Guerrero. Hänen Desplante-teoksensa on kunnianosoitus Etelä-Espanjan kaivosalueiden flamencoperinteelle.</p><p><b>Eduardo Guerrero</b>, 42, syntyi Cádizissa ja alkoi tanssia jo lapsena. Nuorena häntä opettivat eturivin maestrot kuten Mario Maya ja Antonio Canales. Hän liittyi jo 19-vuotiaana maineikkaisiin flamencoryhmiin ja esiintyi muiden muassa Eva Yerbabuenan, Rocio Molinan ja Ballet Nacional de Españan kanssa.<br>Guerrero lähti soolo- ja koreografiuralle 2011 ja on luonut toistakymmentä kiitettyä ja kohauttanutta teosta. Hänen mukaansa tanssilla on oltava myös yhteiskunnallinen ja yhteisöllinen ulottuvuus eikä sen pidä kertoa pinnallisista tyhjänpäiväisyyksistä.<br>Kaivosalueen Cante de Las Minas -festivaaleilla 2013 taranto- ja alegrías-soolot toivat hänelle tanssin Desplante-palkinnon. (Desplante-sanan voi suomentaa vaikkapa rohkeudeksi tai uhmakkaaksi uudeksi askeleeksi.)</p><p>Helsinkiin nyt tuotava Guerreron oma Desplante-niminen teos pohjautuu noihin vuoden 2013 palkittuihin esityksiin, ja sen ensi-ilta oli Meksikossa 2015. <i>\"Mutkaton, intiimi, vahva ja dramaattinen\"</i>, sitä kuvailee taiteilijan oma sivusto.<br>Flamencon perinteiset laulutyylit, palot, ovat teoksen tukipilareita. Guerreroa säestävät upeat laulaja <b>Alicia Morales</b> ja kitaristi <b>Pino Losada</b>.</p><p>Guerreroa on luonnehdittu riskinottajaksi ja perinteitä kunnioittavaksi rajojen rikkojaksi. Hän osaa tanssia rajusti ja raastavasti mutta myös sulokkaasti.<br>Pitkäraajaisen miehen kehonkäyttöä on hämmästelty ylivertaiseksi. Guerreron teosten puvustus on aina tarkkaan mietittyä ja yllättävää.</p><p><i>\"Ei tarvitse kuin katsoa häntä kun jo aistii duenden\"</i>, kirjoittaa ExpoFlamenco-julkaisu. <i>\"Hän tanssii jokaisella huokosellaan, flamencotanssin kaikkein suurimpien vertaisella taidolla.\"</i><br>Guerreron tunnukseksi sopii eräässä hänen esityksessään laulettu säe: <i>\"Flamenco on hehkuva ahjo, joka ei koskaan sammu.\"</i></p><p>Kesto n. 80 min, ei väliaikaa</p><p>Ikärajasuositus: yli 7-vuotiaille</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>", "sv": "<p>Huvudnumret på flamencofestivalen i Helsingfors är ett av de för närvarande största namnen inom flamencodansen, den vågade innovatören Eduardo Guerrero. Hans verk Desplante är en hyllning till flamencotraditionen i gruvdistrikten i södra Spanien.</p><p>Eduardo Guerrero, 42, är född i Cádiz och började dansa redan som barn. Som ung undervisades han av ledande maestros som Mario Maya och Antonio Canales. Redan som 19-åring gick han med i kända flamencogrupper och uppträdde med bland andra Eva Yerbabuena, Rocio Molina och Ballet Nacional de España.<br>Guerrero inledde en solo- och koreografkarriär 2011 och har skapat mer än tio uppmärksammade och hyllade verk. Han anser att dans också måste ha en samhällelig och social dimension, och att den inte ska handla om ytliga trivialiteter.<br>Vid festivalen Cante de Las Minas 2013 i gruvdistriktet vann han med sina solon i taranto och alegrías priset Desplante för sin dans. (Desplante kan översättas med till exempel mod eller ett nytt djärvt steg.)</p><p>Guerreros eget verk med namnet Desplante som nu kommer till Helsingfors är baserat på de prisbelönta föreställningarna från 2013 och hade premiär i Mexiko 2015. ”Okomplicerat, intimt, starkt och dramatiskt” – så beskrivs verket på konstnärens egen webbplats.<br>Flamencons traditionella sångstilar, palos, är grundpelarna i verket. Guerrero ackompanjeras av den fantastiska sångerskan Alicia Morales och gitarristen Pino Losada.</p><p>Guerrero har beskrivits som en risktagare och en gränsöverskridare som respekterar traditioner. Han kan dansa på ett våldsamt och hjärtslitande sätt, men också graciöst.<br>Den långbente mannens användning av sin kropp har beskrivits som häpnadsväckande och enastående. Kostymerna i Guerreros verk är alltid noga genomtänkta och överraskande.</p><p>”Man behöver bara titta på honom för att känna duende”, skriver ExpoFlamenco. ”Han dansar med varje por, med samma skicklighet som de allra största inom flamencodansen.”<br>Som kännetecken för Guerrero passar en vers som sjungs i ett av hans framträdanden: ”Flamenco är en glödande härd som aldrig slocknar.”</p><p>Längd ca 80 min., ingen paus.</p><p>Åldersgränsrekommendation: över 7 år.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>", "en": "<p>The headliner of the Helsinki Flamenco Bienal will be one of the biggest names in flamenco dance today, the daring innovator Eduardo Guerrero. His work Desplante is a tribute to the flamenco traditions of the mining areas of southern Spain.</p><p>Eduardo Guerrero, 42, was born in Cádiz and started dancing as a child. In his adolescence, he was taught by leading maestros such as Mario Maya and Antonio Canales. At the age of only 19, he joined renowned flamenco groups and performed with names such as Eva Yerbabuena, Rocio Molina and Ballet Nacional de España.<br>Guerrero embarked on a solo and choreographic career in 2011 and has created dozens of works garnering acclaim and interest. He believes that dance must also have a social and community dimension and it should not be about superficial trivialities.<br>At the mining region’s Cante de Las Minas festival in 2013, his taranto and alegrías solos won him the Desplante award for dance. (Desplante translates to e.g. ‘courage’ or a ‘defiant new step’.)</p><p>Guerrero's own Desplante work, now coming to Helsinki, is based on those award-winning performances of 2013, and premiered in Mexico in 2015. “Uncomplicated, intimate, strong and dramatic\", is how the artist's own website describes it.<br>Flamenco's traditional song styles, the palos, are the mainstays of the work. Guerrero will be accompanied by the great singer Alicia Morales and guitarist Pino Losada.</p><p>Guerrero has been described as a risk-taker and a boundary-breaker who still respects tradition. He can dance with fierceness and ferocity, but also with grace.<br>The long-limbed man’s ability to use his body has been hailed as supreme. The costumes in Guerrero's works are always carefully considered and surprising.</p><p>“You only have to look at him to sense the duende,” writes the ExpoFlamenco publication. “He dances with every pore of his skin, with skill that equals the greatest of the greats of flamenco dancing.”<br>Guerrero’s motto could be a verse sung in one of his performances: “Flamenco is a glowing furnace that never goes out.”</p><p>Duration approx. 80 min, no intermission</p><p>Age rating: 7+</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p>" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero", "en": "http://www.savoyteatteri.fi/en/events/event/0ED97DDDA24CCC7E7EC45C798D82F10B/Desplante_-_Eduardo_Guerrero" }, "short_description": { "fi": "Helsingin flamencofestivaalin pääesiintyjänä nähdään yksi flamencotanssin tämän hetken suurista nimistä, uskalias uudistaja Eduardo Guerrero. Hänen Desplante-teoksensa on kunnianosoitus Etelä-Espanjan kaivosalueiden flamencoperinteelle.", "sv": "Huvudnumret på flamencofestivalen i Helsingfors är ett av de för närvarande största namnen inom flamencodansen, den vågade innovatören Eduardo Guerrero. Hans verk Desplante är en hyllning till flamencotraditionen i gruvdistrikten i södra Spanien.", "en": "The headliner of the Helsinki Flamenco Bienal will be one of the biggest names in flamenco dance today, the daring innovator Eduardo Guerrero. His work Desplante is a tribute to the flamenco traditions of the mining areas of southern Spain." }, "location_extra_info": null, "provider": { "fi": "Helsingin flamencoyhdistys ry", "sv": "Helsingin flamencoyhdistys ry", "en": "Helsingin flamencoyhdistys ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66933/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67348", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223196/", "sv": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223196/", "en": "https://www.lippu.fi/event/kino-helios-luottomies-elokuva-lepoloma-malmitalo-21223196/" }, "description": null, "price": { "fi": "9 €", "sv": "9 €", "en": "9 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T09:13:49.690952Z", "last_modified_time": "2026-01-20T09:13:49.690967Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781012.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T09:13:49.602172Z", "last_modified_time": "2026-03-20T01:12:59.725631Z", "date_published": null, "start_time": "2026-02-07T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "sv": "Luottomies-elokuva: Lepoloma (7) – Kino Helios", "en": "Luottomies-elokuva: Lepoloma (7) – Kino Helios" }, "provider_contact_info": null, "description": { "fi": "<p>Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle.</p><p>Johanilla on yksi ehto: hän haluaa autonsa mukaan. Tommi lupautuu ajamaan Johanin auton Espanjaan – yhdessä Juhiksen kanssa. Asiat eivät kuitenkaan mene aivan suunnitellusti, ja kun Johanin auto varastetaan, Tommi ja Juhis päättävät selvittää tilanteen omin avuin ja pian sankarimme syöksyvät taas kiihtyvällä vauhdilla katastrofista toiseen.</p><p>Ikäraja: 7<br>Kesto: 88 min<br>Ensi-ilta: 4.2.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BCEC35137F2A281219BE86B6014263E0/Luottomies-elokuva_Lepoloma_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BCEC35137F2A281219BE86B6014263E0/Luottomies-elokuva_Lepoloma_7_", "en": "http://www.malmitalo.fi/en/events/event/BCEC35137F2A281219BE86B6014263E0/Luottomies-elokuva_Lepoloma_7_" }, "short_description": { "fi": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67348/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67741", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-vuotalo-21013046/#tab=", "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-vuotalo-21013046/#tab=", "en": "https://www.lippu.fi/event/jokeri-pokeri-box-ihan-simona-vuotalo-21013046/#tab=" }, "description": null, "price": { "fi": "19 €", "sv": "19 €", "en": "19 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494117, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-08T08:13:02.987844Z", "last_modified_time": "2025-12-08T08:13:02.987858Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780413.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494117/?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-12-08T08:13:02.904300Z", "last_modified_time": "2026-03-20T01:12:59.602018Z", "date_published": null, "start_time": "2026-02-07T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jokeri Pokeri Box: Ihan Simona! Show", "sv": "JOKERI POKERI BOX – Ihan Simona!", "en": "JOKERI POKERI BOX – Ihan Simona! (Joker Poker Box Magic Show)" }, "provider_contact_info": null, "description": { "fi": "<p>Legendaarinen taikuri Simo Aalto ja avustaja Kirsti Aalto palaavat lavalle uudessa, riemukkaassa koko perheen taikashow’ssa Ihan Simona.</p><p>Uudistunut esitys tuo katsojien eteen taikatemppuja, joita ei ole aiemmin Suomessa nähty. Lavalla nähdään hyväntuulinen ja visuaalisesti näyttävä taikaesitys, jossa yleisö pääsee ihastelemaan muun muassa upeaa perhosnumeroa, värikkäitä ja ihmeellisiä taikakuplia sekä monia yllättäviä hetkiä, jotka viihdyttävät kaikenikäisiä katsojia.</p><p>Show’ssa ovat mukana myös Simon ja Kirstin rakastetut eläinkaverit Erkki-kani, Paloma-kyyhky sekä uusi tuttavuus Sasu Sormikas. Ja tietysti lapset auttavat taikuria kiperissä tilanteissa taikasanoilla ja taikapuhalluksilla. Simo vie kaikenikäiset katsojat taikamaailmaan, jossa mikään ei ole mahdotonta!</p><p>Kesto: 1 t</p>", "sv": "<p>Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.</p><p>I den nya glada showen får vi se världens bästa trollkonster smaksatta med en gladlynt scenshow. Under ledning av Simo får åskådare av alla åldrar åka på en timmes resa till trollkonsternas värld, där inget är omöjligt.</p><p>Med i äventyret är Simos och Kirstis djurkompisar kaninen Erkki och duvan Paloma samt den egensinniga papegojan Eino. Och visst får barnen vara med och hjälpa trollkarlen ända upp på scenen!</p><p>Simos medryckande framträdande garanterar att trollpillret verkar länge, humöret piggas upp och vardagens rutiner glöms bort. Med andra ord utlovas högklassig estradunderhållning!</p><p>Själv säger Simo: “Under min långa karriär har redan en generation, nittiotalsbarnen, hunnit växa upp, och de kommer nu för att se sin barndomsidol med sina egna barn. Därför vill jag bjuda på glädje och förundran för alla åldrar.”</p><p>Längd 1 h <br>Åldersrekommendation: 2–100 år</p>", "en": "<p>A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant.</p><p>The happy new show will feature some of the world’s best magic tricks accompanied by a light-hearted stage show. Simo leads audiences of all ages on a one-hour journey into a magical world where everything is possible.</p><p>Along for the adventure are Simo and Kirsti’s animal friends, Erkki the rabbit, Paloma the pigeon, and Eino, the stubborn parrot. And, of course, the kids get to assist the magician up on stage!</p><p>Simo’s engaging performance ensures that the magic pill lasts for a long time, refreshing your mind and making you forget the daily hustle and bustle. In a word, this will be high-quality entertainment on the stage!</p><p>In Simo’s own words, “During my long career, one generation – the ‘90s kids – have already grown up, and are now bringing their own children to see their childhood idol. That’s why I want to offer joy and wonder to people of all ages.”</p><p>Duration: 1 h <br>Age recommendation: 2–100 years</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0F6220E11ED90F563F85933DCC19046A/Jokeri_Pokeri_Box_Ihan_Simona_Show", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0F6220E11ED90F563F85933DCC19046A/JOKERI_POKERI_BOX_Ihan_Simona_", "en": "http://www.vuotalo.fi/en/events/event/0F6220E11ED90F563F85933DCC19046A/JOKERI_POKERI_BOX_Ihan_Simona_Joker_Poker_Box_Magic_Show_" }, "short_description": { "fi": "Legendaarinen taikuri Simo Aalto ja avustaja Kirsti Aalto palaavat lavalle uudessa, riemukkaassa koko perheen taikashow’ssa Ihan Simona.", "sv": "Barnens och de vuxnas favorit, TV-personligheten och världsmästartrollkonstnären Simo Aalto bjuder på glädje för hela familjen tillsammans med sin assistent och hustru Kirsti.", "en": "A perennial favourite of children and adults alike, World Champion Magician Simo Aalto , well-known from TV programmes, brings fun for the whole family together with his wife Kirsti as his assistant." }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67741/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }