Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=60
{ "meta": { "count": 32759, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=61", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=59" }, "data": [ { "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, "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." }, "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" }, "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>" }, "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, "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, "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." }, "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" }, "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>" }, "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, "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, "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?" }, "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" }, "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>" }, "name": { "fi": "Ivar Bremer: Robin i hooden", "sv": "Ivar Bremer: Robin i hooden", "en": "Ivar Bremer: Robin i hooden" }, "provider_contact_info": null, "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, "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." }, "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" }, "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>" }, "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, "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, "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." }, "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" }, "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>" }, "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, "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, "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..." }, "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" }, "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>" }, "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, "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, "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." }, "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" }, "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>" }, "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, "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, "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." }, "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" }, "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>" }, "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, "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, "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." }, "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" }, "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>" }, "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, "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, "short_description": { "fi": "Kun Tommin appiukko Johan määrätään sairaskohtauksen jälkeen pakkolepoon, perhe päättää lähteä lepolomalle Espanjan auringon alle." }, "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_" }, "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>" }, "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, "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, "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." }, "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_" }, "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>" }, "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, "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" }, { "id": "kulke:67729", "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": 1494060, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:49.462865Z", "last_modified_time": "2025-12-04T12:12:49.462881Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780614.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494060/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:49.388343Z", "last_modified_time": "2026-03-20T01:12:59.488421Z", "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, "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..." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9011D23CCB120FF8526727984604E1F6/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential", "sv": "http://www.stoa.fi/sv/evenemang/event/9011D23CCB120FF8526727984604E1F6/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential", "en": "http://www.stoa.fi/en/events/event/9011D23CCB120FF8526727984604E1F6/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential" }, "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>" }, "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, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67729/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67347", "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-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/", "sv": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/", "en": "https://www.lippu.fi/event/kino-helios-kanakani-ja-murmelin-salaisuus-malmitalo-21222530/" }, "description": null, "price": { "fi": "7 €", "sv": "7 €", "en": "7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494557, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-20T08:12:47.861393Z", "last_modified_time": "2026-01-20T08:12:47.861407Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781010.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494557/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-20T08:12:47.766565Z", "last_modified_time": "2026-03-20T01:12:59.373095Z", "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, "short_description": { "fi": "Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_", "en": "http://www.malmitalo.fi/en/events/event/53566ED462EDA08F0893EFF3ED8F922F/Kanakani_ja_murmelin_salaisuus_7_" }, "description": { "fi": "<p>Animaatioseikkailu Kanakani ja murmelin salaisuus (Chickenhare and the Secret of the Groundhog) tempaa mukaansa eeppiselle matkalle etsimään salaperäistä murmelia, jolla on maaginen voima kääntää aika.</p><p>Kanakani ja hänen ystävänsä, Meri ja Hugo, ovat keränneet mainetta kuuluisina seikkailijoina. Uusi seikkailu odottaa heitä, kun Rollo palaa kuvioihin mukanaan mystinen esine. Kanakanin ottoisä, kuningas Kaarle, huomaa esineeseen kaiverretun symbolin, joka liittyy tarunomaiseen murmeliin. Kuningas kertoo tarinan murmelista, jolla on taaksepäin katsovat kasvot ja kannustaa ryhmää etsintäretkelle – murmeli on löydettävä ennen kuin joku ehtii käyttää sen maagista voimaa. Seikkailu saa yllättävän käänteen, kun Kanakani ystävineen huomaa, etteivät he ole ainoita, jotka etsivät tätä muinaista voimaesinettä.</p><p>Matkansa varrella he kohtaavat toinen toistaan erikoisempia esteitä ja uusia, värikkäitä hahmoja. Kuka löytää murmelin ensimmäisenä ja saa käyttöönsä sen valtavan voiman – ja mitä siitä seuraa?</p><p>Ikäraja: 7<br>Kesto: 89 min<br>Ensi-ilta: 23.01.2026<br>Elokuva on puhuttu suomeksi</p>" }, "name": { "fi": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "sv": "Kanakani ja murmelin salaisuus (7) – Kino Helios", "en": "Kanakani ja murmelin salaisuus (7) – Kino Helios" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67272", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3994678", "sv": "https://www.lippu.fi/eventseries/name-3994678", "en": "https://www.lippu.fi/eventseries/name-3994678" }, "description": null, "price": { "fi": "24,80€/20€", "sv": "24,80€/20€", "en": "24,80€/20€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493830, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-18T11:13:14.933968Z", "last_modified_time": "2025-11-18T11:13:14.933986Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780803.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493830/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-18T11:13:14.766432Z", "last_modified_time": "2026-03-20T01:12:59.137797Z", "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, "short_description": { "fi": "Klovnikaksikko Secret (Amira Khalifa) ja TikTak (Nora Raikamo) haluavat räjäyttää kaikkien tajunnan musikaalikentällä.", "sv": "Clownduon Secret (Amira Khalifa) och TikTak (Nora Raikamo) vill spränga allas medvetande på musikalfältet.", "en": "The clown duo Secret (Amira Khalifa) and TikTak (Nora Raikamo) want to blow everyone's minds in the musical scene." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/657A2C4705792A18E6ECA76D1E75BEAC/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/657A2C4705792A18E6ECA76D1E75BEAC/Red_Nose_Company_Taydellinen_musikaali_matka_manalaan_Den_perfekta_musikalen_en_resa_till_underjorden_", "en": "http://www.kanneltalo.fi/en/events/event/657A2C4705792A18E6ECA76D1E75BEAC/Red_Nose_Company_Taydellinen_musikaali_-_Matka_manalaan" }, "description": { "fi": "<p>Klovnikaksikko Secret (Amira Khalifa) ja TikTak (Nora Raikamo) haluavat räjäyttää kaikkien tajunnan musikaalikentällä.</p><p>Nuoruuden toteutumatta jääneet haaveet ja kaikki uran aikana tekemättä jääneet musikaalien pääroolit mielessään he päättävät luoda yhdessä klovnimuusikko Delta Airwavesin (Jussu Pöyhönen) kanssa täydellisen musikaalin, jonka säveltäminen on Deltan suuri unelma. <br> <br>Hamutessaan kohti teatterikentän taivaita klovnit lipsahtelevat vääjäämättä kohti maallisten tomumajojensa rajallisuutta. Miten tavoitellaan täydellistä, kun jalka ei enää taivu spagaatiin eikä nouse korvien korkeudelle? Klovnit joutuvat kohtaamaan sen armottoman tosiasian, että ruumis rapistuu eikä elämä jatku ikuisesti. Onko heillä käsillään viimein se käännekohta, jonka jälkeen suunta on alaspäin, kohti luopumista ja kuolemaa, kohti manan majoja? <br> <br>Klovnitriomme etsii täydellisellä matkallaan opastusta niin Lemminkäisen äidin uroteoista kuin sumerilaisen rakkauden ja sodan jumalatar Inannan manalaan laskeutumisen myytistä. Heidän ainoa vaihtoehtonsa on laulaa sisäiset tuntonsa kertakaikkisen kuuluviksi ja tanssia ruumiinsa rajat näkyviksi. Eihän heillä ole enää muuta menetettävää kuin huumori. <br> <br>Täydellinen musikaali – matka manalaan on kotimainen kantaesitys. Secret ja TikTak ovat valloittaneet yleisön jo edellisessä valaistumista tavoittelevassa Mieletön-esityksessään. <br> <br>Työryhmä <br>Ohjaus: Niina Sillanpää <br>Näyttämöllä: Amira Khalifa, Nora Raikamo ja Jussu Pöyhönen<br>Musiikki ja äänisuunnittelu: Jussu Pöyhönen<br>Valosuunnittelu: Juha Tuisku <br>Pukusuunnittelu: Noora Salmi <br>Koreografia: Kaisa Niemi <br>Tuotanto: Red Nose Company ja Kanneltalo <br> <br>Ensi-ilta Kanneltalossa to 5.2.2026 klo 18.00 <br>Muut esitykset: la 7.2. klo 15, ti 24.2. klo 18, ke 25.2. klo 18, to 26.2.2026 klo 18 <br>Kesto: 2 h (sis. väliaika)<br>Ikäsuositus: 14+</p>", "sv": "<p>Clownduon Secret (Amira Khalifa) och TikTak (Nora Raikamo) vill spränga allas medvetande på musikalfältet.</p><p>De tänker på alla ouppfyllda ungdomsdrömmar och musikalhuvudroller som de inte gjort under sin karriär, och har nu tillsammans med clownmusikern Delta Airwaves (Jussu Pöyhönen) bestämt sig för att skapa den perfekta musikalen, som de är Deltas stora dröm att komponera. <br> <br>I sin strävan mot teaterfältets himlar halkar clownerna ohjälpligt mot det jordiska stoftets begränsningar. Hur strävar man efter perfektion när benen inte längre går ner i spagat eller går att lyfta till öronhöjd? Clownerna ställs inför det obönhörliga faktum att kroppen förfaller och att livet inte fortsätter för evigt. Står de till sist vid den vändpunkt där allting börjar gå neråt, mot slutet och döden, mot de sälla jaktmarkerna? <br> <br>På sin perfekta resa söker vår clowntrio vägledning såväl i Lemminkäinens mors stordåd som i myten om den sumeriska kärleks- och krigsgudinnan Inannas resa till dödsriket. Deras enda alternativ är att sjunga fram sina inre känslor så att de kan höras och att dansa sina kroppsliga gränser synliga. De har ju inte längre någonting annat än humorn att förlora. <br> <br>Täydellinen musikaali – matka manalaan är ett inhemskt uruppförande. Secret och TikTak har charmat publiken redan med sin tidigare föreställning Mieletön, där de strävade efter upplysning. <br> <br>Arbetsgrupp <br>Regi: Niina Sillanpää <br>På scenen: Amira Khalifa, Nora Raikamo och Jussu Pöyhönen<br>Musik och ljuddesign: Jussu Pöyhönen<br>Ljusdesign: Juha Tuisku <br>Kostym: Noora Salmi<br>Koreografi: Kaisa Niemi <br>Produktion: Red Nose Company och Gamlasgården <br> <br>Premiär på gamlasgården torsdag 5.2.2026 kl. 18.00 <br>Övriga föreställningar: lördag 7.2 kl. 15, tisdag 24.2 kl. 18, onsdag 25.2 kl. 18, torsdag 26.2.2026 kl. 18 <br> <br>Åldersrekommendation: 14+</p>", "en": "<p>The clown duo Secret (Amira Khalifa) and TikTak (Nora Raikamo) want to blow everyone's minds in the musical scene.</p><p>With the unfulfilled dreams of their youth and all the musical roles they have missed out on during their careers in mind, they decide to work together with clown musician Delta Airwaves (Jussu Pöyhönen) to create the perfect musical, which is Delta's dream composition. <br> <br>As the clowns clamber towards theatre heaven, they inevitably slip towards the confines of their earthly prisons. How can you aim for perfection when your legs no longer stretch into the splits or reach your ears? The clowns are faced with the brutal fact that the body decays and life does not go on forever. Are they finally at the point where the direction is taken downwards, towards abandonment and death, towards the underworld? <br> <br>On their perfect journey, our clown trio seeks guidance from both the feats of the mother of Lemminkäinen and the myth of the Sumerian goddess of love and war, Inanna, descending into the underworld. Their only option is to sing their inner feelings out loud and dance their body's limits into view. After all, they have nothing left to lose but humour. <br> <br>‘Täydellinen musikaali – matka manalaan’ (A perfect musical – the journey to the underworld) is a Finnish premiere. Secret and TikTak have already captivated audiences with their previous enlightenment-seeking performance, ‘Mieletön’ (Mindless). <br> <br>Creative team <br>Directed by: Niina Sillanpää <br>On stage: Amira Khalifa, Nora Raikamo and Jussu Pöyhönen<br>Music and sound design: Jussu Pöyhönen<br>Light design: Juha Tuisku <br>Costume design: Noora Salmi <br>Choreography: Kaisa Niemi <br>Production: Red Nose Company and Kanneltalo <br> <br>Premiere at Kanneltalo on Thu 5 February 2026 at 18.00 <br>Other performances: Sat 7 February at 15.00, Tue 24 February at 18.00, Wed 25 February at 18.00, Thu 26 February 2026 at 18.00 <br> <br>Recommended age: 14+</p>" }, "name": { "fi": "Red Nose Company: Täydellinen musikaali - Matka manalaan", "sv": "Red Nose Company: Täydellinen musikaali – matka manalaan (Den perfekta musikalen – en resa till underjorden)", "en": "Red Nose Company: Täydellinen musikaali - Matka manalaan" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67272/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67432", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:42/?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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02", "sv": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02", "en": "https://www.lippu.fi/artist/company-kate-pasi/#calendar-start=2026-02" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493961, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T10:12:37.597333Z", "last_modified_time": "2025-12-01T10:12:37.597349Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781245.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493961/?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-01T10:12:37.447188Z", "last_modified_time": "2026-03-20T01:12:58.984870Z", "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, "short_description": { "fi": "Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi.", "sv": "Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.", "en": "A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Kulinaarikaaos_-_koko_perheen_sirkusesitys", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Kulinaarikaaos_-_en_cirkusforestallning_for_hela_familjen", "en": "http://www.malmitalo.fi/en/events/event/F936DC0DED0741379D93B6CDC03C50AE/Kate_Pasi_Culinary_Chaos_A_Circus_Show_for_the_Whole_Family" }, "description": { "fi": "<p>Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi.</p><p>Kokkien keittiössä taidokas akrobatia, jongleeraus ja hersyvä komiikka yhdistyvät esitykseksi, jossa mikään ei suju suunnitelmien mukaan – mutta kaikki on herkullista alusta loppuun.</p><p>Humoristinen ja elämäniloa pulppuava esitys tempaa yleisön mukaansa maailmaan, jossa jauhot pöllyävät ja tavarat lentävät.</p><p>Katerina Repposen ja Pasi Nousiaisen muodostama Kate & Pasi on esiintynyt 15 vuoden aikana yli 25 maassa ympäri maailmaa, aina Kanadasta Japaniin, ja heidän teoksiaan on nähty lähes sadan eri festivaalin ohjelmistossa. Suomessa he ovat tuoneet sirkusta kaikkien ulottuville esiintymällä päiväkodeissa, kouluissa ja leikkipuistoissa, Tanssiteatteri Hurjaruuthin Talvisirkuksessa ja Sirkus Finlandian ohjelmistossa.</p><p>Kate ja Pasi yhdistävät esityksissään poikkeuksellisella tavalla akrobaattisen taituruuden, vahvuuden, kauneuden ja huumorin. Heidän esityksensä ovat saaneet kansainvälistä tunnustusta ja voittaneet palkintoja arvostetuilla sirkusfestivaaleilla muun muassa Saksassa, Latviassa ja Ranskassa.</p><p>Kesto: 45 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p><b>Työryhmä</b><br>Ohjaus: Katerina Repponen ja Pasi Nousiainen<br>Esiintyjät: Katerina Repponen ja Pasi Nousiainen<br>Ohjauksellinen apu: Marc Gassot<br>Ohjauksellinen ja dramaturginen apu: Jarkko Lehmus<br>Valosuunnittelu: Jaakko Sirainen<br>Pukusuunnittelu: Riikka Manni<br>Tukijat: Cirko, Tanssiteatteri Hurjaruuth, Kallo Collective, Taiteen edistämiskeskus</p>", "sv": "<p>Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>Kate & Pasi, som består av Katerina Repponen och Pasi Nousiainen, har under 15 års tid uppträtt i över 25 länder runt om i världen, allt från Kanada till Japan, och deras verk har setts på nästan hundra olika festivalers program. I Finland har de gjort cirkusen tillgänglig för alla genom att uppträda på daghem, i skolor och lekparker, på Dansteater Hurjaruuths vintercirkus och i Sirkus Finlandias program. Kate och Pasi förenar i sina föreställningar på ett exceptionellt sätt den akrobatiska skickligheten, styrkan, skönheten och humorn. Deras föreställningar har fått internationellt erkännande och vunnit pris på ansedda cirkusfestivaler bland annat i Tyskland, Lettland och Frankrike.</p><p>Längd: 45 min.<br>Åldersrekommendation: 4+<br>Språk: ordlöst</p><p><b>Arbetsgrupp</b><br>Regi: Katerina Repponen och Pasi Nousiainen<br>På scenen: Katerina Repponen och Pasi Nousiainen<br>Hjälp med regin: Marc Gassot<br>Hjälp med regin och dramaturgin: Jarkko Lehmus<br>Ljusdesign: Jaakko Sirainen<br>Kostym: Riikka Manni<br>Stödjare: Cirko, DansteaternHurjaruuth, Kallo Collective, Centret för konstfrämjande</p>", "en": "<p>A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way.</p><p>In their kitchen, skilful acrobatics, juggling and gleeful comedy blend into a performance where nothing goes according to plan, yet everything is delicious from start to finish. This humorous and joy-filled show whisks the audience off into a world where flour and objects fly around.</p><p>Katerina Repponen and Pasi Nousiainen, the duo behind Kate & Pasi, have performed for 15 years in over 25 countries across the globe, from Canada to Japan, and their works have been seen at nearly a hundred festivals. In Finland, they have brought the circus to everyone's doorstep, performing at daycares, schools and playgrounds, as well as in Dance Theatre Hurjaruuth's Winter Circus and as part of the Sirkus Finlandia programme. Kate and Pasi combine acrobatic mastery, strength, beauty and humour in a truly unique way. Their performances have earned international acclaim and have won awards at prestigious circus festivals in countries such as Germany, Latvia and France.</p><p>Duration: 45 min<br>Recommended age: 4+<br>Language: non-verbal</p><p>Creative team<br>Directed by: Katerina Repponen and Pasi Nousiainen<br>Performers: Katerina Repponen and Pasi Nousiainen<br>Directorial assistance: Marc Gassot<br>Directorial and dramaturgical assistance: Jarkko Lehmus<br>Light design: Jaakko Sirainen<br>Costume design: Riikka Manni<br>Supported by: Cirko, Dance Theatre Hurjaruuth, Kallo Collective and Arts Promotion Centre Finland</p>" }, "name": { "fi": "Kate & Pasi: Kulinaarikaaos - koko perheen sirkusesitys", "sv": "Kate & Pasi: Kulinaarikaaos - en cirkusföreställning för hela familjen", "en": "Kate & Pasi: Culinary Chaos – A Circus Show for the Whole Family" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67432/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67712", "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": 1494032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T14:13:06.825658Z", "last_modified_time": "2025-12-03T14:13:06.825671Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780608.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T14:13:06.737472Z", "last_modified_time": "2026-03-20T01:12:58.842831Z", "date_published": null, "start_time": "2026-02-07T12: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, "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." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0641AD7B1FD8F52809AC22963C9D5E2/Wonderground_Company_Shadows_of_the_Mind", "sv": "http://www.stoa.fi/sv/evenemang/event/C0641AD7B1FD8F52809AC22963C9D5E2/Wonderground_Company_Shadows_of_the_Mind", "en": "http://www.stoa.fi/en/events/event/C0641AD7B1FD8F52809AC22963C9D5E2/Wonderground_Company_Shadows_of_the_Mind" }, "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>" }, "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, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67712/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67495", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?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": 1494281, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T09:14:17.632072Z", "last_modified_time": "2025-12-22T09:14:17.632090Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781602.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494281/?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-22T09:14:17.364626Z", "last_modified_time": "2026-03-20T01:12:58.717046Z", "date_published": null, "start_time": "2026-02-07T09:00:00Z", "end_time": "2026-02-07T12: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, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/548638D77EA3BD999B65B13DB533FA15/Annantalon_taidelauantai_Hyvan_unen_apurit", "sv": "http://www.annantalo.fi/sv/evenemang/event/548638D77EA3BD999B65B13DB533FA15/Annegardens_konstlordagar_Medhjalpare_for_god_somn", "en": "http://www.annantalo.fi/en/events/event/548638D77EA3BD999B65B13DB533FA15/Annantalo_Art_Saturdays_Good_sleep_helpers" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Hyvän unen apurit</b></p><p>Mikä avuksi, kun uni ei meinaa tulla ja mielessä pyörii askarruttavia ajatuksia? Tule Annantalon taidelauantaihin rakentamaan pieni tyynyn alle yöksi laitettava nukkekaveri. Guatemalan vuoristossa asuneiden Maya -intiaanien tarinan mukaan nuket murehtivat huolet yön aikana piiloon taaten unennäkijälle rauhalliset yöunet. Nuket tehdään puutikuista ja rautalangasta, eri värisistä langoista ja kangastilkuista. Tule tekemään oma huolinukkesi ja nuku hyvin!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Medhjälpare för god sömn</b></p><p>Vad kan hjälpa när du inte kan somna och tankarna snurrar i huvudet? Kom till Annegårdens konstlördagar och bygg en liten dockvän som du kan lägga under kudden till natten. Enligt en berättelse från mayaindianerna i bergen i Guatemala tar dockor hand om alla bekymmer under natten och garanterar en fridfull natts sömn för sovaren. Dockorna tillverkas av träpinnar, järntråd, olikfärgade garner och tygbitar. Kom och gör din egen orosdocka och sov gott!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Good sleep helpers</b><br>What can you do if you are unable to fall asleep and have things weighing on your mind? Come to Annantalo’s Art Monday to build a little doll friend that you can put under your pillow for the night. According to a Mayan legend from the mountains of Guatemala, such dolls would hide the sleeper’s worries for the night, ensuring a peaceful night’s sleep. The dolls are made from wooden sticks and wire, different coloured yarns and fabric patches. Come make your own worry doll and sleep well!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "name": { "fi": "Annantalon taidelauantai: Hyvän unen apurit", "sv": "Annegårdens konstlördagar: Medhjälpare för god sömn", "en": "Annantalo Art Saturdays: Good sleep helpers" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67495/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67824", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:613/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494200, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-12T12:13:59.379512Z", "last_modified_time": "2025-12-12T12:13:59.379534Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778838.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494200/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-12T12:13:59.197339Z", "last_modified_time": "2026-03-20T01:12:58.508804Z", "date_published": null, "start_time": "2026-02-07T09:00:00Z", "end_time": "2026-02-07T12: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, "short_description": { "fi": "Helmikuussa 2026 Annantalon valtaa taiteen perusopetuksen juhla, kun TPO-polku goes Annantalo kokoaa yhteen 11 taiteen perusopetuksen oppilaitosta ja kuusi taiteen perusopetuksen taiteenlajia saman katon alle.", "sv": "I februari 2026 förvandlas Annegården till en festplats för den grundläggande konstundervisningen. Evenemanget GRK-stigen goes Annegården samlar elva läroanstalter och sex olika konstområden under ett och samma tak.", "en": "In February 2026, Annantalo will be the centre of a lively celebration of basic arts education as the TPO Path goes to Annantalo event brings together eleven local institutions providing basic art education in six different art disciplines under one roof." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/40E03C96CD6F7C6D9A95A0E38CE8A21C/TPO-polku_goes_Annantalo", "sv": "http://www.annantalo.fi/sv/evenemang/event/40E03C96CD6F7C6D9A95A0E38CE8A21C/GRK-stigen_goes_Annegarden", "en": "http://www.annantalo.fi/en/events/event/40E03C96CD6F7C6D9A95A0E38CE8A21C/TPO_Path_goes_to_Annantalo" }, "description": { "fi": "<p>Helmikuussa 2026 Annantalon valtaa taiteen perusopetuksen juhla, kun TPO-polku goes Annantalo kokoaa yhteen 11 taiteen perusopetuksen oppilaitosta ja kuusi taiteen perusopetuksen taiteenlajia saman katon alle.</p><p>Päivän aikana päästään sukeltamaan monipuoliseen taiteen maailmaan työpajojen, esitysten ja kohtaamisten kautta.<br>Tapahtuma tarjoaa tilaisuuden tutustua siihen, miten taiteen perusopetus rakentaa luovuutta, yhteisöllisyyttä ja tulevaisuuden taitoja.</p><p>Päivän ohjelmaan kuuluu myös paneelikeskustelu, jossa ääneen pääsevät poliitikot, elinkeinoelämän toimijat ja taidekasvatuksen asiantuntijat – yhdessä he pohtivat taiteen perusopetuksen merkitystä yhteiskunnan eri tasoilla.</p><p>TPO-polku goes Annantalo on kutsuvierastapahtuma, joka kokoaa yhteen taidekasvatuksen, päätöksenteon ja elinkeinoelämän edustajat perheineen keskustelemaan taiteen tulevaisuudesta – ja ennen kaikkea juhlistamaan taiteen perusopetuksen monimuotoisuutta ja vaikuttavuutta. Tapahtuma on osa valtakunnallista Luovuutta politiikkaan -kampanjaa.</p><p>Toivomme ystävällisesti osallistujia ilmoittautumaan tapahtumaan.<br>Ilmoittautuminen Google forms -lomakkeella: https://forms.gle/NrH1CvJYfDvJUitS7</p><p>Ohjelma<br>🖌️ Klo 11-12 TAIDEPAJOJA kutsuvieraille (kuvataide, käsityö, musiikki, sanataide, tanssi ja teatteritaide)</p><p>🖌️ Klo 12-13 PANEELIKESKUSTELU<br>Musiikkiesitys Ninni Mäkipää, harppu<br>Paneelikeskustelu \"Taiteen perusopetus hyvinvoinnin ja tulevaisuuden rakentajana\", fasilitaattorina Helsingin Konservatorion rehtori-toimitusjohtaja Hanna Repo-Nikkanen<br>PANELISTIT<br>🔹 Kaarlo Hildén, Taideyliopiston rehtori<br>🔹 Mirjam Kalland, Helsingin Yliopiston varhaiskasvatuksen professori ja lastenpsykoterapeutti<br>🔹 Pirjetta Mulari, Annantalon johtaja ja lastenkulttuuripäällikkö<br>🔹 Tuomo Salonen, Promesa Consulting Oy ja International School of Music kannatusyhdistys ry:n vpj.<br>Yhteisen alustuksen ja panelistien keskustelun jälkeen aikaa on myös yleisökeskustelulle.</p><p>🖌️ Klo 13-14 TAIDEPAJOJA<br>Paneelikeskustelun aikana lasten on mahdollisuus olla Annansalin lapsiparkissa taideohjaajien ohjauksessa.</p>", "sv": "<p>I februari 2026 förvandlas Annegården till en festplats för den grundläggande konstundervisningen. Evenemanget GRK-stigen goes Annegården samlar elva läroanstalter och sex olika konstområden under ett och samma tak.</p><p>Under dagen får besökarna dyka in i konstens mångsidiga värld genom verkstäder, föreställningar och möten.<br> <br>Evenemanget ger besökarna möjlighet att upptäcka hur den grundläggande konstundervisningen främjar kreativitet, gemenskap och viktiga framtidskompetenser. Programmet innehåller också en paneldiskussion där politiker, aktörer inom näringslivet och experter inom konstpedagogik möts – tillsammans reflekterar de över den grundläggande konstundervisningens betydelse på olika samhällsnivåer.<br> <br>GRK-stigen goes Annegården är ett evenemang som bjuder in representanter för konstpedagogik och näringsliv samt beslutsfattare med familj för att diskutera konstundervisningens framtid – och framför allt för att fira mångfalden och genomslagskraften inom den grundläggande konstundervisningen. Evenemanget är en del av den riksomfattande kampanjen Kreativitet i politiken.</p><p>Vi ber vänligen deltagare att anmäla sig till evenemanget.<br>Anmälan sker via Google forms-formuläret:<br>https://forms.gle/NrH1CvJYfDvJUitS7</p><p>Program<br>🖌️ Kl. 11–12 KONSTVERKSTÄDER OCH FRAMTRÄDANDEN för inbjudna gäster<br>(bildkonst, slöjd, musik, ordkonst, dans och teater)</p><p>🖌️ Kl. 12–13 PANELDISKUSSION<br>Musikframträdande: Ninni Mäkipää, harpa<br>Paneldiskussion: ”Grundläggande konstundervisning skapar välmående och framtid”<br>Facilitator: Hanna Repo-Nikkanen, rektor och verkställande direktör vid Helsingfors Konservatorium</p><p>PANELDELTAGARE<br>🔹 Kaarlo Hildén, rektor för Konstuniversitetet<br>🔹 Mirjam Kalland, professor i småbarnspedagogik vid Helsingfors universitet och barnpsykoterapeut<br>🔹 Pirjetta Mulari, chef för Annantalo och kulturchef för barnkultur<br>🔹 Tuomo Salonen, Promesa Consulting Oy och vice ordförande i understödsföreningen för International School of Music<br>Efter den gemensamma inledningen och panelisternas diskussion finns även tid för samtal med publiken.</p><p>🖌️ Kl. 13–14 KONSTVERKSTÄDER OCH FRAMTRÄDANDEN<br>Under paneldiskussionen har barnen möjlighet att vistas i Annegårdens sal (Annansali) för barnpassning under handledning av konstpedagoger.</p>", "en": "<p>In February 2026, Annantalo will be the centre of a lively celebration of basic arts education as the TPO Path goes to Annantalo event brings together eleven local institutions providing basic art education in six different art disciplines under one roof.</p><p>Throughout the day, visitors can dive into the diverse world of music, theatre, dance, and literary and visual arts through workshops, performances, and other encounters.</p><p>The event offers an opportunity to explore how basic art education fosters creativity, a sense of community, and future skills. The day’s programme also includes a panel discussion featuring politicians, business representatives, and experts in arts education, who will together reflect on the significance of basic art education at different levels of society.</p><p>TPO Path goes to Annantalo is an invitation-only event that brings together representatives of arts education, decision-makers, and the business sector along with their families to discuss the future of art and to celebrate the diversity and impact of basic education in the arts. The event is part of the nationwide Creativity in Politics campaign.</p><p>We kindly ask participants to register for the event in advance.<br>Registration via Google Forms:<br>https://forms.gle/NrH1CvJYfDvJUitS7</p><p>Programme<br>11:00–12:00 ART WORKSHOPS for invited guests<br>(visual arts, crafts, music, literary arts, dance, and theatre)</p><p>12:00–13:00 PANEL DISCUSSION<br>Musical performance: Ninni Mäkipää, harp<br>Panel discussion:<br>“Basic Education in the Arts as a Builder of Well-being and the Future”<br>Facilitator: Hanna Repo-Nikkanen, Principal and CEO, Helsinki Conservatory<br>Panelists<br>🔹 Kaarlo Hildén, Rector, University of the Arts Helsinki<br>🔹 Mirjam Kalland, Professor of Early Childhood Education, University of Helsinki, and Child Psychotherapist<br>🔹 Pirjetta Mulari, Director of Annantalo and Head of Children’s Culture<br>🔹 Tuomo Salonen, Promesa Consulting Oy and Vice Chair of the International School of Music Support Association<br>Following the introductory remarks and panel discussion, there will be time for audience discussion.</p><p>🖌️ 13:00–14:00 ART WORKSHOPS<br>During the panel discussion, children may attend the Annansali children’s activity area, supervised by art instructors.</p>" }, "name": { "fi": "TPO-polku goes Annantalo – Taiteen perusopetuksen kutsuvierastapahtuma", "sv": "GRK-stigen goes Annegården", "en": "TPO Path goes to Annantalo" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67824/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67716", "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-4040934", "sv": "https://www.lippu.fi/eventseries/name-4040934", "en": "https://www.lippu.fi/eventseries/name-4040934" }, "description": null, "price": { "fi": "17-39 €", "sv": "17-39 €", "en": "17-39 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494098, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T16:12:56.951894Z", "last_modified_time": "2025-12-04T16:12:56.951911Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782292.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494098/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T16:12:52.869930Z", "last_modified_time": "2026-03-20T01:12:58.256868Z", "date_published": null, "start_time": "2026-02-06T18:30: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, "short_description": { "fi": "DocPoint & Savoy-teatteri esittävät: Elokuva ja konsertti – Ivo Dimchev", "sv": "DocPoint & Savoy-teatern presenterar: Film och konsert – Ivo Dimchev", "en": "DocPoint & the Savoy Theatre present: Film and concert – Ivo Dimchev" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/73AE27D008C22EBC2174655EC0C82A70/Savoy_X_DocPoint_Ivo_Dimchev_Live_Bulgaria_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/73AE27D008C22EBC2174655EC0C82A70/Savoy_X_DocPoint_Ivo_Dimchev_Live_Bulgaria_", "en": "http://www.savoyteatteri.fi/en/events/event/73AE27D008C22EBC2174655EC0C82A70/Savoy_X_DocPoint_Ivo_Dimchev_Live_Bulgaria_" }, "description": { "fi": "<p>DocPoint & Savoy-teatteri esittävät: Elokuva ja konsertti – Ivo Dimchev</p><p>Helmikuussa on luvassa ainutkertainen ilta, kun DocPoint – Helsingin dokumenttielokuvafestivaali palaa ryminällä Savoy-teatteriin. DocPoint ja Savoy yhdistävät voimansa tuodakseen Suomeen yhden Euroopan kiinnostavimmista ja provokatiivisimmista nykytaiteilijoista. Illan aikana on luvassa dokumenttielokuva ja live-konsertti: teatteria, musiikkia, aktivismia ja taidetta äärimmäisen värikkäänä sekoituksena.<br> <br>Ilta alkaa uuden musiikkidokumentin In Hell With Ivo (2024, ohj. Kristina Nikolova) Suomen ensiesityksellä. Elokuva tarjoaa vangitsevan muotokuvan bulgarialaisesta queer-taiteilijasta ja laulaja-lauluntekijästä, <b>Ivo Dimchevistä</b>, joka muuntaa henkilökohtaisen haavoittuvuuden ja yhteiskunnan asettamat vaikeudet vaikuttavaksi, provokatiiviseksi taiteeksi ja aktivismiksi. Dokumentti on väkevä todistus luovuuden parantavasta voimasta. Elokuvanäytöksen jälkeen järjestetään lyhyt Q&A -haastatteluhetki ohjaaja Kristina Nikolovan kanssa.<br> <br>Elokuvan jälkeen lavalle nousee Dimchev itse nelihenkisine yhtyeineen (Martin Bodurov, Adrian Nikolov, Aleksandar Hristov, Boil Karaneychev). Kansainvälisesti tunnustettu koreografi, performanssitaiteilija ja laulaja-lauluntekijä tarjoilee konsertin, joka yhdistelee fyysistä teatteria, tummanpuhuvaa runoutta ja musiikillista ilotulitusta. Dimchevin musiikki liikkuu niin bluesin, taidepopin kuin teknonkin rajamailla, samalla kun hänen ällistyttävä lavaolemuksensa heilahtelee rocktähden ja kabareeprimadonnan välillä. Myös balkanilaiset juuret kuuluvat vahvasti bändin musiikissa.<br> <br>Tule todistamaan, miksi New York Times kuvailee Ivo Dimcheviä elämästä ja kuolemasta laulavaksi kameleontiksi, joka saa kyynisimmänkin katsojan liikuttumaan.<br> <br><i>”Ivo Dimchev on kulttuuri-ilmiö.”</i> – BBC Radio</p><p>Pe 6.2.2026 klo 18<br>Savoy X DocPoint: In Hell with Ivo -dokumentti<br>Liput 13,80 €</p><p>Pe 6.2.2026 klo 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)<br>Liput 39/29/17 €<br> <br>Yhteislippu 45 €, sisältää sekä elokuvan että konsertin:<br>Savoy X DocPoint: Ivo Dimchev yhteislippu: elokuva & keikka</p><p>Elokuvan kesto n. 1 h 20 min<br>Konsertin kesto n. 1 h 30 min, ei väliaikaa<br> <br>HUOM! Elokuvaa ei suositella alle 12-vuotiaille.<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.<br>Numeroimaton katsomo</p>", "sv": "<p>DocPoint & Savoy-teatern presenterar: Film och konsert – Ivo Dimchev</p><p>I februari utlovas en unik kväll när dokumentärfilmfestivalen DocPoint återvänder till Savoy-teatern med buller och bång. DocPoint och Savoy samarbetar för att få en av Europas mest intressanta och provokativa samtida konstnärer till Finland. Under kvällen blir det dokumentärfilm och livekonsert: teater, musik, aktivism och konst i en extremt färggrann blandning.</p><p>Kvällen inleds med Finlandspremiären av In Hell With Ivo (2024, regi Kristina Nikolova). Filmen ger ett fängslande porträtt av den bulgariska queerkonstnären och singer-songwritern Ivo Dimchev, som omvandlar sin personliga sårbarhet och de svårigheter som samhället orsakar till kraftfull, provocerande konst och aktivism. Dokumentären är ett kraftfullt vittnesbörd om kreativitetens helande kraft.</p><p>Efter filmen går Dimchev själv upp på scenen med sitt fyrmannaband. Den internationellt hyllade koreografen, performancekonstnären och singer-songwritern bjuder på en konsert som kombinerar fysisk teater, mörk poesi och musikaliska fyrverkerier. Dimchevs musik rör sig i gränslandet mellan blues, konstpop och techno, medan hans fantastiska scennärvaro pendlar mellan rockstjärna och kabaréns primadonna. Rötterna på Balkan hörs också tydligt i bandets musik.</p><p>Kom och upplev varför New York Times beskriver Ivo Dimchev som en kameleont som sjunger om livet och döden på ett sätt som berör även den mest cyniska av åskådare.</p><p>”Ivo Dimchev är ett kulturellt fenomen.” – BBC Radio</p><p>Fre 6.2.2026 kl. 18<br>Savoy X DocPoint: Dokumentären In Hell with Ivo<br>Biljetter 13,80 €</p><p>Fre 6.2.2026 kl. 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgarien)<br>Biljetter 39/29/17 €</p><p>Kombinerad biljett 45 €, inkluderar både film och konsert:<br>Savoy X DocPoint: Ivo Dimchev kombinerad biljett: film & spelning</p><p>Filmens längd ca 1 h 20 min<br>Konsertens längd ca 1 h 30 min, ingen paus</p><p>OBS! Filmen rekommenderas inte för barn under 12 år.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.<br>Onumrerad läktare.</p>", "en": "<p>DocPoint & the Savoy Theatre present: Film and concert – Ivo Dimchev</p><p>February will bring DocPoint – Helsinki Documentary Film Festival back to the Savoy Theatre with a bang for a unique evening. DocPoint and Savoy are joining forces to bring one of Europe’s most interesting and provocative contemporary artists to Finland. The evening will include a documentary film and a live concert; a highly colourful mix of theatre, music, activism and art.</p><p>The evening will kick off with the Finnish premiere of a new music documentary film entitled In Hell with Ivo (2024, dir. Kristina Nikolova). The film paints a captivating portrait of Bulgarian queer artist and singer-songwriter Ivo Dimchev, who transforms personal vulnerability and difficulties imposed by society into powerful, provocative art and activism. The documentary is a powerful testimony to the healing power of creativity.</p><p>After the film, Dimchev himself and his four-piece band will take to the stage. The internationally acclaimed choreographer, performance artist and singer-songwriter will perform a concert that combines physical theatre, darkly tinted poetry and musical fireworks. Dimchev’s music straddles the boundaries of blues, art pop and techno, while his stunning stage presence oscillates between that of a rockstar and a cabaret prima donna. His Balkan roots are also strongly present in the band’s music.</p><p>Come witness why the New York Times describes Ivo Dimchev as a chameleon who sings about life and death in a manner that will move even the most cynical viewer.</p><p>“Ivo Dimchev is a cultural phenomenon.” – BBC Radio</p><p>Friday 6 February 2026 at 18.00<br>Savoy X DocPoint: In Hell with Ivo documentary<br>Tickets €13.80</p><p>Friday 6 February 2026 at 20.30<br>Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)<br>Tickets €39/29/17</p><p>Combined ticket €45, incl. both the film and the concert:<br>Savoy X DocPoint: Ivo Dimchev combined ticket: film and concert</p><p>Film duration: roughly 1 h 20 min<br>Concert duration: approx. 1 h 30 min, no intermission</p><p>PLEASE NOTE! The film is not recommended for those under 12.</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.<br>Unnumbered seats.</p>" }, "name": { "fi": "Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)", "sv": "Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)", "en": "Savoy X DocPoint: Ivo Dimchev Live (Bulgaria)" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri & DocPoint", "sv": "Savoy-teatern & DocPoint", "en": "Savoy Theatre & DocPoint" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67716/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67728", "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": 1494059, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T12:12:49.117082Z", "last_modified_time": "2025-12-04T12:12:49.117100Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780613.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494059/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T12:12:49.012549Z", "last_modified_time": "2026-03-20T01:12:58.143805Z", "date_published": null, "start_time": "2026-02-06T17: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, "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..." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/339E2E3814F06C59BB33102AA221176F/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential", "sv": "http://www.stoa.fi/sv/evenemang/event/339E2E3814F06C59BB33102AA221176F/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential", "en": "http://www.stoa.fi/en/events/event/339E2E3814F06C59BB33102AA221176F/The_Chronicles_of_a_Sidequest_Addict_The_Madness_of_Infinite_Potential" }, "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>" }, "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, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67728/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }